/* ================================================
   BURSA MOBİL LASTİKÇİ — style.css
   Mobile-first, no framework, no runtime JS
   ================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
    --c-primary: #000000;
    --c-primary-dark: #0d1d4a;
    --c-accent: #FFC107;
    --c-accent-dark: #e5ad06;
    --c-dark: #111111;
    --c-dark-light: #1c1c1c;
    --c-danger: #c82333;
    --c-danger-dark: #a71d2a;
    --c-success: #22C55E;
    --c-whatsapp: #25D366;
    --c-whatsapp-dk: #1ea952;
    --c-text: #ffffff;
    --c-text-soft: #e5e7eb;
    --c-text-muted: #9ca3af;
    --c-text-dim: #6b7280;
    --c-border: #1f2937;
    --c-border-md: #374151;
    --header-h: 56px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --shadow-call: 0 6px 28px rgba(200, 35, 51, .40);
    --shadow-wa: 0 6px 28px rgba(37, 211, 102, .35);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--c-dark);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

input,
textarea {
    font-family: inherit;
}

details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

/* ── TYPOGRAPHY ── */
h1 {
    font-size: clamp(1.9rem, 7.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.12;
}

h2 {
    font-size: clamp(1.45rem, 5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.18;
}

h3 {
    font-size: clamp(1.05rem, 3vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.35;
}

p {
    line-height: 1.65;
}

strong {
    font-weight: 700;
}

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
}

.container--md {
    max-width: 900px;
}

.container--sm {
    max-width: 720px;
}

.container--xs {
    max-width: 620px;
}

/* ── UTILITY ── */
.text-accent {
    color: var(--c-accent);
}

.text-danger {
    color: var(--c-danger);
}

.text-success {
    color: var(--c-success);
}

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

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.font-black {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

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

/* ────────────────────────────────────────
   HEADER
──────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--header-h);
    background: var(--c-primary);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: .875rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: .5625rem;
    flex-shrink: 0;
    min-width: 0;
}

.header-logo img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    /* kare/dikdörtgen — yuvarlak değil */
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .22);
    flex-shrink: 0;
}

.logo-text {
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.2;
    display: none;
}

@media (min-width: 380px) {
    .logo-text {
        display: block;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .375rem;
    flex-shrink: 0;
}

.btn-hdr-call {
    display: inline-flex;
    align-items: center;
    gap: .3125rem;
    background: var(--c-danger);
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    padding: .46875rem .8125rem;
    border-radius: var(--r-sm);
    transition: background .15s;
    white-space: nowrap;
    line-height: 1;
}

.btn-hdr-call:hover {
    background: var(--c-danger-dark);
}

.btn-hdr-call svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-hdr-wa {
    display: inline-flex;
    align-items: center;
    gap: .3125rem;
    background: var(--c-whatsapp);
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    padding: .46875rem .6875rem;
    border-radius: var(--r-sm);
    transition: background .15s;
    white-space: nowrap;
    line-height: 1;
}

.btn-hdr-wa:hover {
    background: var(--c-whatsapp-dk);
}

.btn-hdr-wa svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-hdr-wa .s {
    display: none;
}

/* short label */
.btn-hdr-wa .l {
    display: inline;
}

/* long label */
@media (max-width: 460px) {
    .btn-hdr-wa .l {
        display: none;
    }

    .btn-hdr-wa .s {
        display: inline;
    }
}

/* ────────────────────────────────────────
   BREADCRUMB
──────────────────────────────────────── */
.breadcrumb {
    padding-top: calc(var(--header-h) + .75rem);
    padding-bottom: .375rem;
    padding-inline: 1rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: .4375rem;
    font-size: .75rem;
    color: var(--c-text-dim);
    max-width: 960px;
    margin-inline: auto;
}

.breadcrumb a {
    transition: color .15s;
}

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

.breadcrumb .cur {
    color: var(--c-danger);
    font-weight: 600;
}

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-h);
}

.hero--sub {
    min-height: 68svh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .74);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 3.5rem 1rem 2.5rem;
    margin-inline: auto;
}

/* Animated status pill */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    padding: .4375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.dot-wrap {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.dot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--c-success);
    opacity: .75;
    animation: ping 1.5s ease-in-out infinite;
}

.dot-core {
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: var(--c-success);
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: .75;
    }

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Rating row in hero */
.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--c-text-soft);
    margin-bottom: .875rem;
    flex-wrap: wrap;
}

.hero-stars {
    color: var(--c-accent);
    font-size: 1rem;
    letter-spacing: .075em;
}

.hero-rating strong {
    color: #fff;
}

.hero-rating .rc {
    color: var(--c-text-muted);
}

.hero-content h1 {
    margin-bottom: .625rem;
}

.hero-sub1 {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: .3125rem;
    line-height: 1.55;
}

.hero-sub2 {
    font-size: .9375rem;
    color: #d1d5db;
    margin-bottom: 1.75rem;
}

/* Hero CTA row */
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: .6875rem;
    align-items: stretch;
    margin-bottom: 1.125rem;
}

@media (min-width: 520px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    .hero-btns .btn-hero {
        min-width: 210px;
    }
}

/* Trust micro-badges below hero CTAs */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    font-size: .8125rem;
    color: #d1d5db;
    margin-bottom: .875rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: .3125rem;
}

.hero-phone {
    display: inline-block;
    font-size: clamp(1.375rem, 5vw, 1.875rem);
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: .03em;
    transition: color .15s;
}

.hero-phone:hover {
    color: #fff;
}

/* ────────────────────────────────────────
   BUTTONS (CTA scale)
──────────────────────────────────────── */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5625rem;
    font-weight: 900;
    font-size: 1.0625rem;
    padding: 1.0625rem 1.625rem;
    border-radius: var(--r-xl);
    transition: background .15s, transform .1s;
    cursor: pointer;
    position: relative;
    width: 100%;
    line-height: 1.1;
}

.btn-hero:active {
    transform: scale(.96);
}

.btn-hero svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-hero--call {
    background: var(--c-danger);
    color: #fff;
    box-shadow: var(--shadow-call);
}

.btn-hero--call:hover {
    background: var(--c-danger-dark);
}

.btn-hero--wa {
    background: var(--c-whatsapp);
    color: #fff;
    box-shadow: var(--shadow-wa);
}

.btn-hero--wa:hover {
    background: var(--c-whatsapp-dk);
}

/* Pulse ring around call button */
.btn-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--c-danger);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.94);
        opacity: 1;
    }

    80%,
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* Standard inline CTA button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c-danger);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .875rem 1.75rem;
    border-radius: var(--r-lg);
    transition: background .15s;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--c-danger-dark);
}

.btn-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-cta--xl {
    font-size: 1.1875rem;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: var(--r-lg);
}

/* ────────────────────────────────────────
   TRUST BAR (stats row)
──────────────────────────────────────── */
.trust-bar {
    background: var(--c-primary);
    padding: 1.125rem 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .875rem;
    text-align: center;
}

@media (min-width: 440px) {
    .trust-bar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tstat-num {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
}

.tstat-num sup,
.tstat-num sub {
    font-size: 1rem;
}

.tstat-lbl {
    font-size: .6875rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .2rem;
}

/* ────────────────────────────────────────
   SECTION WRAPPERS
──────────────────────────────────────── */
.section {
    padding: 3.5rem 0;
}

.section--dark {
    background: var(--c-dark);
}

.section--card {
    background: var(--c-dark-light);
}

.section-head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.section-head h2 {
    margin-bottom: .5625rem;
}

.section-head p {
    color: var(--c-text-muted);
    max-width: 560px;
    margin-inline: auto;
    font-size: .9375rem;
}

/* ────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 820px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.svc-card {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.125rem;
    transition: border-color .2s, transform .2s;
}

.svc-card:hover {
    border-color: rgba(255, 193, 7, .35);
    transform: translateY(-2px);
}

.svc-card-icon {
    font-size: 1.5rem;
    margin-bottom: .625rem;
}

.svc-card h3 {
    font-size: .9375rem;
    margin-bottom: .4375rem;
}

.svc-card p {
    font-size: .8375rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* ────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.625rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 2.875rem;
    height: 2.875rem;
    background: var(--c-accent);
    color: var(--c-primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.step-body h3 {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.step-body p {
    font-size: .9rem;
    color: var(--c-text-muted);
}

/* ────────────────────────────────────────
   AREA MAP + TAGS
──────────────────────────────────────── */
.area-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    margin-bottom: 1.125rem;
}

.area-map iframe {
    display: block;
    width: 100%;
    height: 250px;
}

@media (min-width: 600px) {
    .area-map iframe {
        height: 310px;
    }
}

.area-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4375rem;
}

@media (min-width: 380px) {
    .area-tags {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) {
    .area-tags {
        grid-template-columns: repeat(4, 1fr);
    }
}

.area-tag {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: .5625rem .4375rem;
    text-align: center;
    font-size: .78rem;
    font-weight: 500;
}

/* ────────────────────────────────────────
   DISTRICT / MAHALLE SEO
──────────────────────────────────────── */
.district-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 680px) {
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.district-entry {
    margin-bottom: 1.125rem;
}

.district-entry h3 {
    font-size: .9375rem;
    color: var(--c-accent);
    margin-bottom: .375rem;
}

.district-entry p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.mahalle-cloud {
    background: var(--c-dark-light);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.125rem;
    margin-top: 2rem;
}

.mahalle-cloud h3 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: .5rem;
    letter-spacing: .03em;
}

.mahalle-cloud p {
    font-size: .75rem;
    color: var(--c-text-dim);
    text-align: center;
    line-height: 2.1;
}

/* ────────────────────────────────────────
   FAQ (details/summary)
──────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .5625rem;
}

.faq-item {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.0625rem 1.0625rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9375rem;
    gap: .75rem;
    line-height: 1.4;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--c-accent);
    transition: transform .22s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-ans {
    padding: 0 1.0625rem 1.0625rem;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

/* ────────────────────────────────────────
   CTA BLOCK
──────────────────────────────────────── */
.cta-block {
    background: var(--c-primary);
    border: 1px solid #1a2a50;
    border-radius: var(--r-xl);
    padding: 2rem 1.375rem;
    text-align: center;
}

.cta-block--danger {
    background: rgba(200, 35, 51, .1);
    border-color: rgba(200, 35, 51, .3);
}

.cta-block h3 {
    margin-bottom: .5625rem;
}

.cta-block p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1.375rem;
    font-size: .9375rem;
}

/* ────────────────────────────────────────
   TRUST CHECKLIST
──────────────────────────────────────── */
.trust-list {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6875rem;
    font-size: .9375rem;
    color: var(--c-text-soft);
}

.trust-item .chk {
    color: var(--c-success);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ────────────────────────────────────────
   SITUATION CARDS (acil page)
──────────────────────────────────────── */
.situation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6875rem;
    margin-bottom: 2rem;
}

@media (min-width: 460px) {
    .situation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.situation-card {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: .9375rem;
}

.situation-card .si {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: .0625rem;
}

.situation-card h4 {
    font-size: .875rem;
    margin-bottom: .1875rem;
}

.situation-card p {
    font-size: .8125rem;
    color: var(--c-text-muted);
    line-height: 1.45;
}

/* ────────────────────────────────────────
   REPAIR CARDS
──────────────────────────────────────── */
.repair-list {
    display: flex;
    flex-direction: column;
    gap: .6875rem;
    margin-bottom: 2rem;
}

.repair-card {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.0625rem;
}

.repair-card .ri {
    font-size: 1.375rem;
    flex-shrink: 0;
    margin-top: .0625rem;
}

.repair-card h4 {
    margin-bottom: .25rem;
}

.repair-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* Repair vs. replace table */
.repair-table {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.repair-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 460px) {
    .repair-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.repair-col h4 {
    margin-bottom: .6875rem;
    font-size: .9375rem;
}

.repair-col li {
    font-size: .875rem;
    color: var(--c-text-muted);
    margin-bottom: .4375rem;
}

/* ────────────────────────────────────────
   ROAD SERVICE CARDS
──────────────────────────────────────── */
.road-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6875rem;
    margin-bottom: 2rem;
}

@media (min-width: 460px) {
    .road-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.road-card {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.0625rem;
}

.road-card h4 {
    margin-bottom: .4375rem;
    font-size: .9375rem;
}

.road-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* Otoban emergency steps */
.otoban-steps {
    display: flex;
    flex-direction: column;
    gap: .5625rem;
    margin-bottom: 2rem;
}

.otoban-step {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: .875rem 1rem;
}

.otoban-num {
    font-weight: 900;
    font-size: 1.0625rem;
    color: var(--c-accent);
    flex-shrink: 0;
    min-width: 1.375rem;
}

.otoban-step p {
    font-size: .875rem;
    color: var(--c-text-soft);
    line-height: 1.55;
}

/* ────────────────────────────────────────
   CONTENT PROSE (hizmet sayfaları)
──────────────────────────────────────── */
.prose p {
    color: #d1d5db;
    margin-bottom: 1.125rem;
    font-size: .9375rem;
    line-height: 1.7;
}

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

.prose h2 {
    margin-bottom: 1.375rem;
}

.prose h3 {
    margin-bottom: .875rem;
    color: var(--c-accent);
    font-size: 1.125rem;
}

.prose h4 {
    margin-bottom: .3125rem;
}

.prose .accent-h {
    color: var(--c-accent);
}

.prose .danger-h {
    color: var(--c-danger);
}

/* ────────────────────────────────────────
   INTERNAL LINKS GRID
──────────────────────────────────────── */
.int-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5625rem;
}

@media (min-width: 440px) {
    .int-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 680px) {
    .int-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.int-link {
    display: block;
    background: var(--c-dark-light);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: .875rem .625rem;
    text-align: center;
    transition: border-color .17s, transform .17s;
}

.int-link:hover {
    border-color: rgba(255, 193, 7, .38);
    transform: translateY(-2px);
}

.int-link .il-icon {
    display: block;
    font-size: 1.25rem;
    margin-bottom: .3125rem;
}

.int-link p {
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.35;
}

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.site-footer {
    background: var(--c-dark-light);
    border-top: 1px solid var(--c-border);
    padding: 2.5rem 0 7.5rem;
    /* extra for sticky bar */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid var(--c-accent);
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: .6875rem;
    margin-bottom: .6875rem;
}

.footer-brand-name {
    font-size: .9375rem;
    font-weight: 900;
}

.footer-brand p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.footer-col h3 {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: .06em;
    margin-bottom: .6875rem;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-nav a {
    font-size: .875rem;
    color: var(--c-text-muted);
    transition: color .15s;
}

.footer-nav a:hover {
    color: var(--c-accent);
}

.footer-nav a.active {
    color: var(--c-accent);
    font-weight: 600;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: .6875rem;
}

.footer-contacts a {
    font-size: .875rem;
    color: var(--c-text-muted);
    transition: color .15s;
}

.footer-contacts a:hover {
    color: var(--c-accent);
}

.footer-network {
    border-top: 1px solid var(--c-border-md);
    padding: 1.125rem 0 1rem;
    text-align: center;
}

.footer-network p {
    font-size: .6875rem;
    color: var(--c-text-dim);
    margin-bottom: .625rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-network-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .375rem .75rem;
}

.footer-network-links a {
    font-size: .75rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-network-links a:hover {
    color: var(--c-accent);
}

.footer-bottom {
    border-top: 1px solid var(--c-border-md);
    padding-top: 1.125rem;
    text-align: center;
    font-size: .75rem;
    color: var(--c-text-dim);
}

/* ────────────────────────────────────────
   STICKY BOTTOM BAR (mobile CTA)
──────────────────────────────────────── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 199;
    background: var(--c-dark);
    border-top: 1px solid var(--c-border-md);
    padding: .625rem .75rem;
    display: flex;
    gap: .5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    /* Always visible on mobile — hide on wider screens */
}

@media (min-width: 640px) {
    .sticky-bar {
        display: none;
    }
}

.sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4375rem;
    font-weight: 700;
    font-size: .875rem;
    padding: .8125rem .5rem;
    border-radius: var(--r-lg);
    color: #fff;
    transition: opacity .1s;
    -webkit-tap-highlight-color: transparent;
}

.sticky-bar a:active {
    opacity: .82;
    transform: scale(.97);
}

.sticky-bar .s-call {
    background: var(--c-danger);
    box-shadow: var(--shadow-call);
}

.sticky-bar .s-wa {
    background: var(--c-whatsapp);
    box-shadow: var(--shadow-wa);
}

.sticky-bar svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* ────────────────────────────────────────
   HERO BADGE PILLS
──────────────────────────────────────── */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4375rem;
    margin-bottom: 1.375rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3125rem;
    font-size: .78rem;
    font-weight: 600;
    padding: .3125rem .75rem;
    border-radius: 100px;
    border: 1px solid;
}

.badge--danger {
    background: rgba(200, 35, 51, .2);
    border-color: rgba(200, 35, 51, .4);
    color: #fff;
}

.badge--neutral {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.badge--success {
    background: rgba(34, 197, 94, .2);
    border-color: rgba(34, 197, 94, .3);
    color: #fff;
}

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp .5s ease-out forwards;
}

.fade-d1 {
    animation-delay: .10s;
    opacity: 0;
}

.fade-d2 {
    animation-delay: .20s;
    opacity: 0;
}

.fade-d3 {
    animation-delay: .32s;
    opacity: 0;
}

/* ────────────────────────────────────────
   PRINT
──────────────────────────────────────── */
@media print {

    .sticky-bar,
    .site-header,
    .hero-overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}