/* Yılmaz Isı - Modern Design System */
:root {
    --color-primary: #0c4a6e;
    --color-primary-dark: #082f49;
    --color-primary-light: #0ea5e9;
    --color-accent: #f97316;
    --color-accent-dark: #ea580c;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--color-bg-dark); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 800px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
    border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
    font-family: var(--font-body); text-decoration: none;
}
.btn--primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn--primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: #fff; color: var(--color-primary); }
.btn--white { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn--white:hover { background: var(--color-bg-alt); color: var(--color-primary-dark); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* Top Bar */
.top-bar { background: var(--color-primary-dark); color: rgba(255,255,255,0.85); font-size: 0.8125rem; padding: 0.5rem 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar__left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 0.4rem; }
.top-bar a:hover { color: #fff; }
@media (max-width: 768px) {
    .top-bar__right { display: none; }
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); gap: 1rem; }
.logo { flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.main-nav { flex: 1; justify-content: flex-end; }

@media (min-width: 769px) {
    .logo { order: 1; }
    .main-nav { order: 2; }
    .header-actions { order: 3; }
    .nav-toggle { display: none !important; }
    .header-action-btn__label { display: none !important; }
    .header-action-btn { width: 40px; height: 40px; border-radius: 50%; padding: 0; flex-direction: row; }
    .mobile-nav__head { display: none; }
    .mobile-nav-backdrop { display: none !important; }
    .mobile-nav__body { display: contents; }
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-list { display: flex; list-style: none; gap: 0.15rem; }
.nav-link {
    display: flex; align-items: center; gap: 0.25rem;
    padding: 0.5rem 0.85rem; font-weight: 500; font-size: 0.9rem;
    color: var(--color-text); border-radius: 8px; transition: all var(--transition);
}
.nav-link:hover, .nav-link.is-active { color: var(--color-primary); background: var(--color-bg-alt); }
.nav-chevron { transition: transform var(--transition); }
.nav-item { position: relative; }
.nav-item.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 0.5rem; list-style: none; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all var(--transition);
    border: 1px solid var(--color-border);
}
.nav-item.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block; padding: 0.6rem 1rem; color: var(--color-text);
    border-radius: 8px; font-size: 0.875rem;
}
.dropdown a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.submenu { list-style: none; padding-left: 1rem; margin-top: 0.25rem; }
.submenu a { font-size: 0.8125rem; color: var(--color-text-muted); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
    flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); transition: all var(--transition); border-radius: 2px; }
.nav-cta { margin-left: 0.75rem; }

/* Header action buttons */
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-action-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    text-decoration: none; transition: transform var(--transition);
}
.header-action-btn__label { display: none; }
.header-action-btn--search,
.header-action-btn--phone {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff; box-shadow: 0 4px 14px rgba(12, 74, 110, 0.3);
}
.header-action-btn:hover { transform: scale(1.08); color: #fff; }
.header-action-btn:active { transform: scale(0.95); }

/* Search overlay */
.search-overlay {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 6rem 1.25rem 2rem; opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__backdrop {
    position: absolute; inset: 0; background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
}
.search-overlay__panel {
    position: relative; width: 100%; max-width: 560px;
    background: #fff; border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow-lg); transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.search-overlay.is-open .search-overlay__panel { transform: translateY(0); }
.search-overlay__panel h2 { font-size: 1.35rem; margin-bottom: 1.25rem; }
.search-overlay__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px; border: none; background: var(--color-bg-alt);
    border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--color-text-muted);
}
.search-overlay__input-wrap {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.85rem 1.25rem; border: 2px solid var(--color-border);
    border-radius: 999px; transition: border-color var(--transition);
}
.search-overlay__input-wrap:focus-within {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}
.search-overlay__input-wrap svg { color: var(--color-text-muted); flex-shrink: 0; }
.search-overlay__input-wrap input {
    flex: 1; border: none; outline: none; font-size: 1rem;
    font-family: var(--font-body); background: transparent;
}
.search-results { list-style: none; margin-top: 1.25rem; max-height: 320px; overflow-y: auto; }
.search-results li { border-bottom: 1px solid var(--color-border); }
.search-results li:last-child { border-bottom: none; }
.search-results a {
    display: block; padding: 0.85rem 0.5rem; color: var(--color-text);
    font-weight: 500; transition: all var(--transition);
}
.search-results a:hover { color: var(--color-primary); padding-left: 1rem; }
.search-results .result-type {
    display: block; font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--color-accent); margin-bottom: 0.15rem;
}
.search-results .empty { padding: 1rem 0.5rem; color: var(--color-text-muted); text-align: center; }

/* Ticker */
.ticker { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); padding: 0.6rem 0; overflow: hidden; }
.ticker__inner { display: flex; align-items: center; }
.ticker__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent); white-space: nowrap; margin-right: 1rem; }
.ticker__tags { display: none; }
.tag {
    display: inline-block; padding: 0.25rem 0.75rem; background: #fff;
    border: 1px solid var(--color-border); border-radius: 999px;
    font-size: 0.75rem; color: var(--color-text-muted); transition: all var(--transition);
}
.tag:hover { border-color: var(--color-primary-light); color: var(--color-primary); background: #fff; }
.ticker__news { flex: 1; overflow: hidden; display: flex; align-items: center; gap: 1rem; }
.ticker__scroll { overflow: hidden; flex: 1; }
.ticker__track { display: flex; gap: 2rem; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--color-text); white-space: nowrap; }
.ticker__item img { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Hero */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero--with-brands {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.hero--with-brands .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.75rem;
    padding-bottom: 1.2rem;
    z-index: 2;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,47,73,0.92) 0%, rgba(12,74,110,0.75) 50%, rgba(15,23,42,0.6) 100%);
}
.hero__content { position: relative; z-index: 1; padding-top: 2rem; padding-bottom: 1.4rem; max-width: 720px; color: #fff; }
.hero__badge {
    display: inline-block; padding: 0.4rem 1rem; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.hero__title { font-size: clamp(2rem, 5vw, 3.25rem); color: #fff; margin-bottom: 1rem; }
.hero__subtitle { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 0; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--color-accent); }
.stat span { font-size: 0.8125rem; opacity: 0.75; }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section__header { margin-bottom: 3rem; position: relative; }
.section__header--center { text-align: center; }
.section__eyebrow { display: block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 0.5rem; }
.section__header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.section__header p { color: var(--color-text-muted); max-width: 560px; }
.section__header--center p { margin: 0 auto; }
.section__link { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-weight: 600; font-size: 0.9rem; }
.section__title-sm { font-size: 1.5rem; margin-bottom: 2rem; }

/* Hizmetlerimiz — daha kompakt */
.services-preview {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}
.services-preview .section__header {
    margin-bottom: 1.5rem;
}
.services-preview .section__header h2 {
    margin-bottom: 0.4rem;
}
.services-preview .section__header p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.services-preview .card-grid {
    gap: 1.15rem;
}
.services-preview .card__body {
    padding: 1rem 1.1rem 1.1rem;
}
.services-preview .card__body h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}
.services-preview .card__body p {
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.45;
}
.services-preview .card__link {
    margin-top: 0.55rem;
}

/* Cards */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.card {
    display: flex; flex-direction: column; background: #fff;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--color-border); transition: all var(--transition);
    color: var(--color-text); text-decoration: none;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--color-text); }
.card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__image img { transform: scale(1.05); }
.card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.card__category {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem; background: var(--color-accent); color: #fff;
    font-size: 0.7rem; font-weight: 700; border-radius: 999px; text-transform: uppercase;
}
.card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card__body time { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.card__body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.card__body p { font-size: 0.875rem; color: var(--color-text-muted); flex: 1; }
.card__link { font-size: 0.875rem; font-weight: 600; color: var(--color-accent); margin-top: 0.75rem; }

/* About */
.about-preview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-preview__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-preview__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-preview__badge {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    background: var(--color-accent); color: #fff; padding: 1rem 1.5rem;
    border-radius: var(--radius); text-align: center;
}
.about-preview__badge strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about-preview__badge span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item--large { grid-row: span 2; grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid--page { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
.gallery-grid--page .gallery-item { aspect-ratio: 4/3; }

/* Markalar — hero altı marquee */
.brands-marquee {
    position: relative;
    padding: 2.75rem 0 3rem;
    background:
        radial-gradient(ellipse 80% 120% at 10% 0%, rgba(14, 165, 233, 0.10), transparent 55%),
        radial-gradient(ellipse 70% 100% at 90% 100%, rgba(249, 115, 22, 0.08), transparent 50%),
        linear-gradient(180deg, #f1f5f9 0%, #ffffff 55%, #f8fafc 100%);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}
.brands-marquee--on-hero {
    position: relative;
    z-index: 3;
    margin-top: 0;
    flex-shrink: 0;
    padding: 1.15rem 0 1.35rem;
    background: linear-gradient(180deg, rgba(8, 47, 73, 0.88) 0%, rgba(8, 47, 73, 0.55) 70%, transparent 100%);
    border-bottom: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.brands-marquee--on-hero .brands-marquee__title {
    color: #fff;
    margin-bottom: 1.1rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.brands-marquee--on-hero .brands-marquee__title::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.2), var(--color-accent), rgba(255,255,255,0.2));
    width: 64px;
}
.brands-marquee--on-hero .brands-marquee__fade--left {
    background: linear-gradient(90deg, rgba(8, 47, 73, 0.85), transparent);
}
.brands-marquee--on-hero .brands-marquee__fade--right {
    background: linear-gradient(270deg, rgba(8, 47, 73, 0.85), transparent);
}
.brands-marquee--on-hero .brand-slide {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.brands-marquee--on-hero .brand-slide:hover {
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(249, 115, 22, 0.25);
}
.brands-marquee__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
    margin: 0 0 1.75rem;
    position: relative;
}
.brands-marquee__title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
}
.brands-marquee__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.brands-marquee__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.brands-marquee__fade--left {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.9), transparent);
}
.brands-marquee__fade--right {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 250, 252, 0.9), transparent);
}
.brands-marquee__track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: brands-scroll 45s linear infinite;
    will-change: transform;
}
.brands-marquee__viewport:hover .brands-marquee__track,
.brands-marquee__track.is-paused {
    animation-play-state: paused;
}
.brands-marquee__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 1.25rem;
    padding-right: 1.25rem;
}
.brand-slide {
    position: relative;
    flex: 0 0 auto;
    width: 200px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 74, 110, 0.08);
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
    overflow: hidden;
}
.brand-slide__glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.18), transparent 60%);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.brand-slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 148px;
    max-height: 58px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.15) contrast(1.05);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.brand-slide:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow:
        0 18px 40px rgba(12, 74, 110, 0.14),
        0 0 0 1px rgba(249, 115, 22, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}
.brand-slide:hover .brand-slide__glow {
    opacity: 1;
    transform: scale(1);
}
.brand-slide:hover img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.08);
}
@keyframes brands-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .brands-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: center;
        gap: 1rem;
        padding: 0 1.25rem;
    }
    .brands-marquee__group:last-child { display: none; }
    .brands-marquee__group {
        padding-right: 0;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    .brands-marquee__group .brand-slide:nth-child(n+11) { display: none; }
}

/* Intro */
.intro-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg); padding: 3rem; color: #fff;
}
.intro-card .prose { color: rgba(255,255,255,0.9); }
.intro-card .prose h1, .intro-card .prose h2, .intro-card .prose h3 { color: #fff; }
.intro-card .prose strong { color: #fff; }
.intro-card .prose li::marker { color: var(--color-accent); }

/* CTA */
.cta-section { background: var(--color-primary-dark); padding: 4rem 0; }
.cta-section__inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-section p { color: rgba(255,255,255,0.75); }
.cta-section__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0; color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero--404 h1 { font-size: 6rem; opacity: 0.3; }
.page-hero--404 .btn { margin-top: 1.5rem; }

/* Single Post */
.single-hero { position: relative; height: 52vh; min-height: 380px; overflow: hidden; }
.single-hero img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.35) 55%, rgba(15,23,42,0.15) 100%); }
.single-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 3rem; color: #fff; }
.single-hero__content h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.85rem); max-width: 900px; line-height: 1.15; }
.single-hero__badge {
    display: inline-block; margin-bottom: 0.75rem; padding: 0.35rem 0.85rem;
    background: rgba(249,115,22,0.9); color: #fff; border-radius: 999px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.page-hero--article { text-align: left; padding: 3.5rem 0 3rem; }
.page-hero--article h1 { text-align: left; margin-left: 0; max-width: 900px; }
.single-meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.single-meta--center { justify-content: center; }
.single-meta time { font-size: 0.875rem; opacity: 0.85; }
.back-link { display: inline-block; color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 1rem; }
.back-link:hover { color: #fff; }
.back-link--dark { color: var(--color-text-muted); }
.back-link--dark:hover { color: var(--color-primary); }
.back-link--inline { color: var(--color-primary); font-weight: 600; margin-bottom: 0; }
.back-link--inline:hover { color: var(--color-primary-dark); }

.breadcrumb {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0.45rem;
    font-size: 0.8rem; margin-bottom: 1rem; opacity: 0.85;
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb--light, .breadcrumb--light a { color: rgba(255,255,255,0.75); }
.breadcrumb--light a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }

.single-body { padding-top: 2.5rem; margin-top: -2rem; position: relative; z-index: 2; }
.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}
.single-main { min-width: 0; }
.article-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.article-card__top {
    padding: 1.75rem 2rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}
.article-lead {
    margin: 1rem 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 500;
}
.article-prose { padding: 2rem; }
.article-footer {
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
    flex-wrap: wrap; padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}
.article-footer__label {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 0.5rem;
}
.article-footer__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.article-cta {
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
    flex-wrap: wrap; margin-top: 1.5rem; padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg); color: #fff;
}
.article-cta h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.35rem; }
.article-cta p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }

.single-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: calc(var(--header-height) + 1.5rem); }
.sidebar-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
}
.sidebar-card--accent {
    background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: transparent; color: #fff;
}
.sidebar-card--accent h3, .sidebar-card--accent p { color: #fff; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.sidebar-card p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.sidebar-phone {
    display: block; font-family: var(--font-display); font-size: 1.35rem;
    font-weight: 700; color: #fff; margin-bottom: 1rem;
}
.sidebar-phone:hover { color: var(--color-accent); }
.sidebar-muted { font-size: 0.82rem !important; line-height: 1.5; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--color-border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    display: block; padding: 0.65rem 0; font-size: 0.875rem; font-weight: 500;
    color: var(--color-text); line-height: 1.4;
}
.sidebar-links a:hover { color: var(--color-primary); }
.btn--block { display: block; width: 100%; text-align: center; }

.tag--light {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff;
}
.tag--light:hover { background: #fff; color: var(--color-primary); }

/* Prose / WP Content */
.prose { line-height: 1.85; color: var(--color-text); }
.prose p { margin-bottom: 1.15rem; }
.prose h2 {
    font-family: var(--font-display); font-size: 1.65rem; margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-border);
    color: var(--color-primary-dark);
}
.prose h3 {
    font-family: var(--font-display); font-size: 1.3rem; margin: 2rem 0 0.75rem;
    color: var(--color-primary);
}
.prose h4 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.55rem; }
.prose li::marker { color: var(--color-accent); }
.prose img {
    border-radius: var(--radius-lg); margin: 1.75rem auto;
    box-shadow: var(--shadow); max-width: 100%; height: auto;
}
.prose blockquote {
    margin: 2rem 0; padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--color-text-muted);
}
.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--color-accent); }
.prose strong { color: var(--color-primary-dark); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.prose th, .prose td { border: 1px solid var(--color-border); padding: 0.65rem 0.85rem; text-align: left; }
.prose th { background: var(--color-bg-alt); font-weight: 600; }
.prose--large { font-size: 1.05rem; }
.article-prose .aligncenter { display: block; margin-left: auto; margin-right: auto; text-align: center; }
.article-prose .alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.article-prose .alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-content .elementor-section { margin-bottom: 2rem; }
.wp-content .elementor-heading-title { font-family: var(--font-display); margin-bottom: 1rem; color: var(--color-primary-dark); }
.wp-content .elementor-widget-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.wp-content .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.wp-content .gallery img { border-radius: var(--radius); width: 100%; height: 200px; object-fit: cover; }

/* About Page */
.about-page__intro { margin-bottom: 2rem; }
.about-page__image { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.about-page__image img { width: 100%; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-card {
    display: flex; gap: 1rem; padding: 1.25rem;
    background: var(--color-bg-alt); border-radius: var(--radius); margin-bottom: 1rem;
}
.contact-card__icon {
    width: 48px; height: 48px; background: var(--color-primary); color: #fff;
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card h3 { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.25rem; font-weight: 500; }
.contact-card a, .contact-card p { font-weight: 600; color: var(--color-text); font-size: 0.95rem; }
.contact-areas { margin-top: 2rem; }
.contact-areas h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.contact-form-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border);
    border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary-light); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.map-section { background: var(--color-bg-alt); padding: 3rem 0; }
.contact-map-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}
.contact-map-card h2 { margin-bottom: 1rem; font-family: var(--font-display); }
.contact-map-card p { margin-bottom: 0.75rem; color: var(--color-text-muted); }
.contact-map-card a { color: var(--color-primary); }

/* Footer */
.site-footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.75); }
.footer__top { padding: 4rem 0 3rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__logo { margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand p { font-size: 0.9rem; line-height: 1.6; }
.footer__since { margin-top: 1rem; font-weight: 700; color: var(--color-accent); }
.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; }
.footer__contact svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--color-accent); }

.footer__partners { border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; }
.footer__partners-label { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.partner-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
.partner-badge {
    padding: 0.4rem 1rem; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px; font-size: 0.8rem; color: rgba(255,255,255,0.6);
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0 1rem; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,0.5); }
.footer__links a:hover { color: #fff; }
.footer__credit {
    padding: 0.75rem 0 0.25rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 1rem;
}
.footer__credit a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.footer__credit a:hover { color: var(--color-accent); }

/* WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; background: #25d366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition);
}
.whatsapp-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: #25d366; animation: wa-pulse 2s ease-out infinite; z-index: -1;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

.empty-state { text-align: center; color: var(--color-text-muted); padding: 3rem; }

/* Responsive */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about-preview__grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item--large { grid-row: auto; grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .single-layout { grid-template-columns: 1fr; }
    .single-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
    .header__inner { height: auto; min-height: var(--header-height); padding: 0.5rem 0; }
    .header-actions { gap: 0.65rem; position: relative; z-index: 1002; }
    .header-action-btn {
        width: auto; min-width: 52px; height: 52px;
        flex-direction: column; gap: 2px; padding: 0.5rem 0.65rem;
        border-radius: 14px;
    }
    .header-action-btn__label {
        display: block; font-size: 0.6rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 0.03em; line-height: 1;
    }
    .header-action-btn--search,
    .header-action-btn--phone {
        box-shadow: 0 4px 14px rgba(12, 74, 110, 0.3);
    }
    .header-action-btn svg { width: 24px; height: 24px; }
    .nav-toggle {
        display: flex; width: 52px; height: 52px;
        align-items: center; justify-content: center;
        background: var(--color-primary-dark); border-radius: 14px;
        border: none; position: relative; z-index: 1002;
    }
    .nav-toggle span { background: #fff; }
    .nav-toggle.is-active { background: var(--color-accent); }
    .nav-toggle.is-active span { background: #fff; }

    /* Mobil menü — mavi arka plan, gölge/overlay yok */
    .mobile-nav-backdrop {
        display: none !important;
        pointer-events: none;
        opacity: 0 !important;
        visibility: hidden !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .main-nav {
        position: fixed; inset: 0; z-index: 1999;
        width: 100%; max-width: 100%; height: 100%;
        background: var(--color-primary);
        flex-direction: column; align-items: stretch;
        padding: 0; margin: 0;
        box-shadow: none !important;
        filter: none;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }
    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        box-shadow: none !important;
    }

    .mobile-nav__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        position: relative;
        padding: 1.5rem 1.5rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        flex-shrink: 0;
        text-align: center;
    }
    .mobile-nav__logo {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 3rem;
    }
    .mobile-nav__logo img {
        height: 48px; width: auto;
        filter: brightness(0) invert(1);
        opacity: 1;
        margin: 0 auto;
    }
    .mobile-nav__social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
    }
    .mobile-nav__social-link {
        width: 44px; height: 44px;
        display: flex; align-items: center; justify-content: center;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        transition: background var(--transition), transform var(--transition);
    }
    .mobile-nav__social-link:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
        transform: translateY(-1px);
    }
    .mobile-nav__close {
        position: absolute;
        top: 1rem; right: 1rem;
        width: 44px; height: 44px;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px; color: #fff; cursor: pointer;
        transition: background var(--transition);
        z-index: 2;
    }
    .mobile-nav__close:hover { background: rgba(255, 255, 255, 0.22); }

    .mobile-nav__body {
        flex: 1; overflow-y: auto;
        padding: 1rem 1.5rem 2rem;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list { flex-direction: column; gap: 0.25rem; }
    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
        border-bottom: none;
    }
    .nav-link:hover,
    .nav-link.is-active {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-chevron { color: rgba(255, 255, 255, 0.5); }

    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none;
        padding: 0.25rem 0 0.5rem 0.75rem;
        display: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px; margin: 0.25rem 0 0.5rem;
    }
    .nav-item.is-open > .dropdown { display: block; }
    .dropdown a {
        color: rgba(255, 255, 255, 0.75);
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    .dropdown a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
    }
    .submenu a { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

    .nav-cta {
        margin: 1.5rem 0 0;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .mobile-nav__head { display: flex; flex-direction: column; align-items: center; }

    .whatsapp-float {
        width: 64px; height: 64px; bottom: 1.25rem; right: 1.25rem;
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
        animation: mobile-float-bounce 2s ease-in-out infinite;
    }
    .whatsapp-float svg { width: 32px; height: 32px; }

    .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .ticker { display: none; }

    /* Genel yatay nefes — header logo + hero yazıları */
    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .hero {
        min-height: auto;
        align-items: stretch;
    }
    .hero--with-brands { align-items: stretch; }
    .hero--with-brands .hero__content {
        justify-content: flex-start;
        flex: 0 1 auto;
        padding-top: 0.5rem;
        padding-bottom: 0.3rem;
    }
    .hero .hero__content {
        padding-top: 1.25rem;
        padding-bottom: 0.3rem;
        padding-left: calc(1.75rem + 1.25rem);
        padding-right: 1.75rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero--with-brands .hero__content {
        padding-top: 0.35rem;
        padding-bottom: 0.3rem;
    }
    .hero__title {
        font-size: clamp(1.65rem, 5.5vw, 2.25rem);
        line-height: 1.3;
        margin-bottom: 0.85rem;
    }
    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    .hero__actions {
        gap: 0.75rem;
        margin-bottom: 1.1rem;
    }
    .hero__actions .btn--lg {
        flex: 1 1 auto;
        min-width: calc(50% - 0.375rem);
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }
    .hero__stats {
        gap: 1.25rem 2rem;
    }
    .stat strong { font-size: 1.65rem; }

    .logo img { margin-left: 0.15rem; }

    .section { padding: 3rem 0; }
    .services-preview {
        padding-top: 1.35rem;
        padding-bottom: 1.35rem;
    }
    .services-preview .section__header {
        margin-bottom: 0.85rem;
    }
    .services-preview .section__eyebrow {
        margin-bottom: 0.25rem;
        font-size: 0.75rem;
    }
    .services-preview .section__header h2 {
        font-size: 1.45rem;
        margin-bottom: 0.25rem;
    }
    .services-preview .section__header p {
        font-size: 0.875rem;
        line-height: 1.45;
    }
    .services-preview .card-grid {
        gap: 0.85rem;
    }
    .services-preview .card__image {
        aspect-ratio: 16 / 8;
        max-height: 38vw;
    }
    .services-preview .card__body {
        padding: 0.75rem 0.9rem 0.85rem;
    }
    .services-preview .card__body h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    .services-preview .card__body p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.78rem;
        line-height: 1.4;
    }
    .services-preview .card__link {
        margin-top: 0.4rem;
        font-size: 0.8rem;
    }
    .section__link { position: static; transform: none; display: block; margin-top: 1rem; }
    .cta-section__inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: auto; }
    .intro-card { padding: 2rem 1.5rem; }
    .brands-marquee { padding: 2.25rem 0 2.5rem; }
    .brands-marquee--on-hero { padding: 0.85rem 0 1.15rem; }
    .brands-marquee__title { margin-bottom: 1.35rem; }
    .brands-marquee--on-hero .brands-marquee__title { margin-bottom: 0.75rem; }
    .brand-slide {
        width: 156px;
        height: 88px;
        padding: 0.9rem 1.1rem;
        border-radius: 14px;
    }
    .brand-slide img {
        max-width: 118px;
        max-height: 48px;
    }
    .brands-marquee__track { animation-duration: 36s; }
    .brands-marquee__group { gap: 0.85rem; padding-right: 0.85rem; }
    .single-sidebar { grid-template-columns: 1fr; }
    .single-body { margin-top: 0; padding-top: 2rem; }
    .single-hero { height: auto; min-height: 280px; }
    .article-card__top, .article-prose, .article-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .article-prose { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .article-cta { padding: 1.25rem; flex-direction: column; text-align: center; }
    .article-footer { flex-direction: column; align-items: stretch; }
    .article-footer__actions { justify-content: center; }
    .breadcrumb { font-size: 0.72rem; }
}

@keyframes mobile-float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
