/* ===== Modern Reklam Afişi Tasarımı ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0a2463;
    --navy-dark: #051433;
    --navy-light: #1e3a8a;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --gold: #fbbf24;
    --red: #dc2626;
    --blue: #2563eb;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --shadow: 0 8px 32px rgba(10, 36, 99, 0.10);
    --shadow-lg: 0 20px 60px rgba(10, 36, 99, 0.18);
    --shadow-orange: 0 8px 30px rgba(249, 115, 22, 0.35);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(249,115,22,0.06) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(10,36,99,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main, .site-header, .disclaimer-bar, .legal-notice, .site-footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Açıklama metinleri (h1 başlık sonrası paragraf) ===== */
.aciklama {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--gray-600);
}

.aciklama strong { font-weight: 700; color: var(--navy); }

/* ===== Disclaimer ===== */
.disclaimer-bar {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-bottom: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disclaimer-bar i { color: var(--orange); }

.disclaimer-highlight {
    background: var(--orange);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== Header ===== */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(10,36,99,0.08);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 2px solid rgba(249,115,22,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 0.05em;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.logo-ozel { color: var(--navy); }
.logo-servis { color: var(--orange); }

.main-nav {
    display: flex;
    gap: 6px;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 50px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.main-nav a i { color: var(--orange); font-size: 0.8rem; }

.main-nav a:hover {
    background: var(--navy);
    color: var(--white);
}

.main-nav a:hover i { color: var(--orange-light); }

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: all 0.25s;
    flex-shrink: 0;
}

.header-phone > i { font-size: 1.15rem; animation: ring 2s ease infinite; }

.header-phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-phone:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(249,115,22,0.45);
}

.phone-label {
    font-size: 0.65rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.phone-number { font-weight: 800; font-size: 1rem; letter-spacing: 0.02em; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.02em;
    max-width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(249,115,22,0.5);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* ===== Hero Billboard ===== */
.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: stretch;
}

.hero-poster img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(5,20,51,0.95) 0%, rgba(5,20,51,0.75) 45%, rgba(5,20,51,0.2) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 48px 40px;
    max-width: 620px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: var(--shadow-orange);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span { color: var(--orange); }

.hero-content .aciklama {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 480px;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    letter-spacing: 0.04em;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.78rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ===== Page Hero ===== */
.page-hero {
    background:
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    position: relative;
}

.page-hero .aciklama.subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
}

.page-hero .badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.badge-orange {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

/* ===== Trust Strip ===== */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    box-shadow: var(--shadow);
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.trust-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== Sections ===== */
.section {
    padding: 72px 0;
    position: relative;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    box-shadow: var(--shadow-orange);
}

.section-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.section-header .aciklama {
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.02rem;
    font-weight: 400;
}

/* ===== Poster Cards ===== */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.poster-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-100);
    position: relative;
}

.poster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    z-index: 2;
}

.poster-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249,115,22,0.3);
}

.poster-card-img {
    position: relative;
    overflow: hidden;
}

.poster-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s;
}

.poster-card:hover img { transform: scale(1.05); }

.poster-ribbon {
    position: absolute;
    top: 16px;
    left: -8px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 20px 6px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
    box-shadow: var(--shadow-orange);
    z-index: 3;
}

.poster-card-body {
    padding: 24px 26px 28px;
}

.poster-card-body h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
}

.poster-card-body h1 i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.poster-card-body .aciklama {
    font-size: 0.93rem;
    margin-bottom: 18px;
    color: var(--gray-600);
}

.poster-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.poster-tags span {
    background: var(--gray-50);
    color: var(--navy);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.poster-tags span i { color: var(--orange); font-size: 0.68rem; }

.poster-card:hover .poster-tags span {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.06);
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249,115,22,0.2);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-card h1 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.feature-card .aciklama {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* ===== CTA Billboard ===== */
.cta-banner {
    background:
        linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, #c2410c 100%);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container { position: relative; }

.cta-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cta-banner .aciklama {
    opacity: 0.95;
    margin-bottom: 28px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}

.cta-phone {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.15);
    padding: 12px 32px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
}

.cta-phone:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.03);
}

/* ===== Regions ===== */
.region-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
    transition: border-color 0.25s;
}

.region-block:hover { border-color: rgba(249,115,22,0.25); }

.region-title {
    color: var(--navy);
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
}

.region-title a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.region-title a:hover { color: var(--orange); }

.region-title i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.district-grid a {
    background: var(--gray-50);
    padding: 11px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--gray-200);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
}

.district-grid a i { color: var(--orange); font-size: 0.7rem; }

.district-grid a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.district-grid a:hover i { color: var(--orange-light); }

/* ===== Brands ===== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 10px;
}

.brand-grid a {
    background: transparent;
    padding: 13px 12px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(10, 36, 99, 0.32);
    border: 1px solid rgba(10, 36, 99, 0.08);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brand-grid a i { color: rgba(249, 115, 22, 0.28); font-size: 0.65rem; }

.brand-grid a:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.brand-grid a:hover i { color: var(--orange-light); }

/* ===== Article ===== */
.article-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.article-content {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--navy), var(--orange), var(--gold));
}

.article-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 2px dashed var(--gray-200);
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--navy);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.article-header .aciklama.article-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-600);
    font-weight: 400;
}

.article-block h1 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 800;
}

.article-block .aciklama {
    font-size: 0.96rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 400;
}

.article-services {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 36px 0;
    color: var(--white);
}

.article-services h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
}

.article-services h1 i { color: var(--orange); }

.article-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.article-services li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.article-services li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.article-faq { margin: 36px 0; }

.article-faq h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
}

.article-faq h1 i { color: var(--orange); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--orange); }

.faq-item summary {
    padding: 18px 22px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.faq-icon { color: var(--orange); font-size: 0.75rem; transition: transform 0.2s; }
.faq-item[open] .faq-icon { transform: rotate(90deg); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item .aciklama {
    padding: 0 22px 18px;
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 0.94rem;
    font-weight: 400;
}

.article-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin: 36px 0 24px;
    box-shadow: var(--shadow-orange);
}

.article-cta h1 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}

.article-cta h1 i { flex-shrink: 0; }

.article-cta .aciklama {
    font-size: 1.05rem;
    margin-bottom: 22px;
    line-height: 1.7;
    color: var(--white);
    font-weight: 400;
}

.article-cta .aciklama i { flex-shrink: 0; margin-top: 4px; }

.aciklama.article-disclaimer {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.65;
    padding: 18px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
}

.aciklama.article-disclaimer i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: 1rem; }

/* ===== Legal & Footer ===== */
.legal-notice {
    padding: 48px 0;
    background: var(--gray-100);
}

.legal-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.legal-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--orange), var(--gold));
}

.legal-box h1 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-box h1 i { color: var(--orange); }

.legal-box .aciklama {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 400;
}

.site-footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #020c1f 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 56px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas:
        "brand contact"
        "links links";
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand { grid-area: brand; }
.footer-contact { grid-area: contact; }
.footer-links { grid-area: links; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
}
.footer-logo .logo-ozel, .footer-logo .logo-servis { color: var(--white); }
.footer-logo .logo-servis { color: var(--orange); }

.footer-brand .aciklama {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.aciklama.footer-disclaimer {
    color: var(--orange) !important;
    font-weight: 700;
    font-size: 0.85rem !important;
}

.footer-links h1, .footer-contact h1 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h1 i, .footer-contact h1 i { color: var(--orange); }

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 0;
}
.footer-links li { margin-bottom: 8px; min-width: 0; }
.footer-links a {
    font-size: 0.88rem;
    opacity: 0.85;
    transition: all 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--orange);
}

.footer-links a:hover { opacity: 1; color: var(--orange); padding-left: 4px; }

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--orange);
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.footer-phone:hover { transform: scale(1.03); }

.footer-contact .aciklama {
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.footer-contact .aciklama i { color: var(--orange); }

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 36px 0 28px;
    margin-top: 8px;
}

.footer-legal h1 {
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}

.footer-legal h1 i { color: var(--orange); font-size: 0.95rem; }

.footer-legal-text {
    font-size: 0.78rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.62);
    font-weight: 400;
    text-align: left;
    max-width: none;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255, 0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 0.84rem;
    opacity: 0.6;
}

/* ===== Snippet Odaklı Alanlar ===== */
.snippet-section {
    background:
        linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 64px 0;
    border-bottom: 1px solid var(--gray-200);
}

.snippet-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.snippet-answer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.snippet-answer::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.snippet-answer-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.45);
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.snippet-question {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 14px;
    color: var(--white);
}

.snippet-answer .aciklama.snippet-answer-text {
    color: rgba(255,255,255,0.92);
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: left;
}

.snippet-call-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-orange);
    transition: transform 0.2s;
}

.snippet-call-link:hover { transform: scale(1.03); }

.snippet-facts {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow);
}

.snippet-facts > h1 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.snippet-facts > h1 i { color: var(--orange); }

.snippet-fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.snippet-fact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.snippet-fact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.snippet-fact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.snippet-fact-body strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
}

.snippet-fact-body span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.snippet-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.snippet-steps,
.snippet-list-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    box-shadow: var(--shadow);
}

.snippet-steps > h1,
.snippet-list-box > h1,
.snippet-cards > h1 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.snippet-steps > h1 i,
.snippet-list-box > h1 i,
.snippet-cards > h1 i { color: var(--orange); }

.snippet-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.snippet-step-list > li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.snippet-step-no {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.snippet-step-body h1 {
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.snippet-step-body .aciklama {
    font-size: 0.88rem;
    line-height: 1.65;
}

.snippet-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.snippet-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-left: 3px solid var(--orange);
}

.snippet-bullet-list li i {
    color: var(--orange);
    margin-top: 3px;
    font-size: 0.75rem;
}

.snippet-cards {
    margin-bottom: 28px;
}

.snippet-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.snippet-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: var(--shadow);
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.snippet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
}

.snippet-card:hover {
    border-color: rgba(249,115,22,0.35);
    transform: translateY(-2px);
}

.snippet-card-q {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
}

.snippet-card .aciklama.snippet-card-a {
    font-size: 0.86rem;
    line-height: 1.7;
}

/* ===== İletişim Bilgileri Tablosu ===== */
.iletisim-table-wrap {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    box-shadow: var(--shadow);
    margin-top: 28px;
}

.iletisim-table-wrap > h1 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.iletisim-table-wrap > h1 i { color: var(--orange); }

.iletisim-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.iletisim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.iletisim-table th,
.iletisim-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}

.iletisim-table th {
    width: 42%;
    font-weight: 700;
    color: var(--navy);
    background: var(--gray-50);
    white-space: nowrap;
}

.iletisim-table th i {
    color: var(--orange);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.iletisim-table td {
    color: var(--gray-800);
    line-height: 1.6;
}

.iletisim-table tbody tr:last-child th,
.iletisim-table tbody tr:last-child td {
    border-bottom: none;
}

.iletisim-table tbody tr:hover td,
.iletisim-table tbody tr:hover th {
    background: rgba(249, 115, 22, 0.04);
}

.iletisim-table a {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.iletisim-table a:hover { color: var(--orange-dark); }

.iletisim-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 700;
    color: var(--navy);
}

.iletisim-rating .fa-star {
    color: var(--gold);
    font-size: 0.9rem;
}

.iletisim-rating-count {
    font-weight: 500;
    color: var(--gray-600);
    font-size: 0.88rem;
}

@media (max-width: 992px) {
    .snippet-grid,
    .snippet-row,
    .snippet-card-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Floating Call ===== */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(249,115,22,0.55);
    z-index: 300;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    border: 3px solid rgba(255,255,255,0.3);
}

/* ===== Özel servis beyanı penceresi (yalnızca masaüstü) ===== */
.beyan-gate {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(5, 20, 51, 0.88);
    display: none;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
}
.beyan-gate-panel {
    width: min(640px, 100%);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border-top: 4px solid var(--orange);
}
.beyan-gate-body { padding: 28px 30px 30px; }
.beyan-kicker {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.beyan-gate-body h2 {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}
.beyan-gate-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}
.beyan-gate-body p strong { color: var(--navy); }
.beyan-gate-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.beyan-gate-list li {
    position: relative;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--gray-50);
}
.beyan-gate-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 14px;
    top: 13px;
    color: var(--orange);
    font-size: 0.85rem;
}
.beyan-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

@media (min-width: 1024px) {
    .beyan-bekliyor .beyan-gate { display: grid; }
    .beyan-bekliyor body { overflow: hidden; }
    .beyan-bekliyor .floating-call { visibility: hidden; }
}

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(249,115,22,0.55); }
    50% { box-shadow: 0 8px 45px rgba(249,115,22,0.85); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0); }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        border-top: 2px solid var(--orange);
        z-index: 210;
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 14px 18px;
        border-radius: var(--radius);
    }

    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    .header-phone .header-phone-text { display: none; }

    .header-phone { padding: 12px 14px; border-radius: 12px; }

    .logo { font-size: 1.55rem; }

    .hero-content { padding: 32px 24px; max-width: 100%; }

    .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .section { padding: 44px 0; }

    .container { padding: 0 16px; }

    .header-inner { padding: 10px 4px; gap: 8px; }

    .logo { font-size: 1.4rem; gap: 8px; }

    .logo-icon { width: 36px; height: 36px; font-size: 0.95rem; }

    .menu-toggle { width: 42px; height: 42px; }

    .hero-poster { min-height: 0; display: block; }

    .hero-poster img { display: none; }

    .hero-overlay {
        position: relative;
        inset: auto;
        background: linear-gradient(180deg, rgba(5,20,51,0.98) 0%, rgba(5,20,51,0.94) 100%);
    }

    .hero-content { padding: 28px 0 32px; }

    .hero-content h1 { font-size: clamp(2.15rem, 11vw, 3rem); }

    .hero-content .aciklama { font-size: 0.95rem; max-width: none; }

    .hero-badge {
        font-size: 0.68rem;
        padding: 7px 12px;
        letter-spacing: 0.04em;
        white-space: normal;
        line-height: 1.35;
        text-align: center;
    }

    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }

    .hero-actions .btn { width: 100%; }

    .hero-stats { gap: 10px; margin-top: 22px; justify-content: space-between; }

    .hero-stat strong { font-size: 1.45rem; }

    .hero-stat span { font-size: 0.68rem; }

    .iletisim-table-wrap { padding: 18px 14px; }

    .iletisim-table,
    .iletisim-table tbody,
    .iletisim-table tr,
    .iletisim-table th,
    .iletisim-table td {
        display: block;
        width: 100%;
    }

    .iletisim-table th {
        white-space: normal;
        width: auto;
        border-bottom: none;
        padding: 12px 12px 4px;
        border-radius: 8px 8px 0 0;
    }

    .iletisim-table td {
        padding: 0 12px 14px;
        border-bottom: 1px solid var(--gray-200);
    }

    .trust-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
        justify-items: start;
    }

    .trust-item { font-size: 0.78rem; }

    .trust-item i { width: 32px; height: 32px; font-size: 0.75rem; }

    .section-header { margin-bottom: 28px; }

    .region-block { padding: 18px 14px; }

    .region-title { font-size: 1.28rem; }

    .region-title i { width: 30px; height: 30px; font-size: 0.75rem; }

    .district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .district-grid a {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .poster-grid { grid-template-columns: 1fr; }

    .article-content { padding: 22px 16px; }

    .disclaimer-bar { font-size: 0.7rem; padding: 8px 12px; }

    .cta-banner { padding: 40px 0 48px; }

    .cta-banner h1 { flex-direction: column; gap: 8px; font-size: clamp(1.6rem, 8vw, 2.2rem); }

    .cta-banner .aciklama { font-size: 1rem; }

    .cta-phone {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
        padding: 10px 16px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .cta-banner .btn { width: 100%; }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "links"
            "contact";
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-links a { font-size: 0.84rem; }

    .footer-links ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
    }

    .footer-phone { font-size: 1.28rem; }

    .footer-logo { font-size: 1.55rem; }

    .floating-call {
        width: 56px;
        height: 56px;
        bottom: max(16px, env(safe-area-inset-bottom, 16px));
        right: max(16px, env(safe-area-inset-right, 16px));
        font-size: 1.3rem;
    }

    .footer-bottom {
        padding: 18px 0 max(72px, calc(env(safe-area-inset-bottom, 0px) + 64px));
    }

    .page-hero { padding: 36px 0; }

    .page-hero .badge-row { justify-content: center; }

    .snippet-section { padding: 40px 0; }

    .snippet-answer { padding: 22px 18px; }

    .snippet-steps,
    .snippet-list-box { padding: 18px 16px; }

    .snippet-question { font-size: 1.08rem; }

    .btn { padding: 14px 18px; font-size: 0.95rem; }
}

@media (max-width: 380px) {
    .logo { font-size: 1.22rem; }

    .logo-icon { width: 32px; height: 32px; }

    .header-phone { padding: 10px 11px; }

    .hero-content h1 { font-size: 2rem; }

    .hero-stats { gap: 8px; }

    .district-grid a,
    .brand-grid a { font-size: 0.75rem; }
}
