/* Webbiu · Çay Bahçesi Yazılımı */
/**
 * İNŞAAT V2 — şantiye / kalıp / kat
 * Admin renkleri layout.php üzerinden gelir.
 */

:root {
    --primary: #9A3412;
    --primary-rgb: 154, 52, 18;
    --secondary: #44403C;
    --accent: #E7E5E4;
    --header-bg: #ffffff;
    --footer-bg: #44403C;

    --ink: #F5F5F4;
    --ink-2: #FAFAF9;
    --ink-3: #E7E5E4;
    --paper: #44403C;
    --paper-soft: rgba(68, 64, 60, 0.74);
    --paper-dim: rgba(68, 64, 60, 0.52);
    --line: rgba(68, 64, 60, 0.1);
    --line-strong: rgba(68, 64, 60, 0.18);

    --white: #ffffff;
    --gray-50: #f3efe6;
    --gray-100: #e4ddd0;
    --gray-200: #cfc6b6;
    --gray-300: #a89f8e;
    --gray-400: #766f62;
    --gray-500: #766f62;
    --gray-600: #2c3340;
    --gray-700: #cfc6b6;
    --gray-800: #f3efe6;
    --gray-900: #141820;

    --success: #3dba7a;
    --warning: #e3b341;
    --danger: #e24b4b;
    --info: #4aa3d8;

    --font-display: "Sora", sans-serif;
    --font-body: "Titillium Web", sans-serif;
    --font-family: var(--font-body);
    --font-size-base: 16px;
    --line-height-base: 1.65;

    --section-padding: 64px;
    --container-width: 1280px;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-pill: 4px;

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.38);
    --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--paper);
    background: var(--ink);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--paper);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

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

/* ========== Topbar ========== */
.site-chrome {
    position: relative;
    z-index: 30;
}

body.is-home .site-chrome {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.header-topbar {
    background: rgba(255, 255, 255, 0.82);
    color: #5c5a54;
    border-bottom: 1px solid rgba(28, 29, 27, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1001;
    padding: 10px 0;
}

.header-topbar .container-fluid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 28px;
    gap: 22px;
}

.topbar_menu {
    margin-right: auto;
}

.topbar_menu .menu,
.social-list,
.topbar-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.topbar_menu .menu li a,
.topbar-info li,
.social-list li a {
    color: #5c5a54;
}

.topbar_menu .menu li a:hover {
    color: var(--primary);
}

.menu-separator {
    color: var(--line-strong);
    font-size: 10px;
}

.social-list li a {
    color: var(--paper-dim);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-list li a:hover {
    color: var(--primary);
}

.topbar-info li i {
    color: var(--primary);
    font-size: 11px;
}

/* ========== Header ========== */
.header {
    background: rgba(255, 255, 255, 0.92);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    border-bottom: 1px solid rgba(28, 29, 27, 0.06);
}

body.is-home .header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .container {
    max-width: 1400px;
}

body:not(.is-home) .header,
.header.scrolled {
    background: #fff;
    border-bottom-color: rgba(28, 29, 27, 0.08);
    box-shadow: 0 8px 22px rgba(28, 29, 27, 0.06);
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    max-height: 44px;
    width: auto;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
}

.logo-mark span {
    display: block;
    width: 8px;
    background: var(--primary);
    border-radius: 1px 1px 0 0;
}

.logo-mark span:nth-child(1),
.logo-mark span:nth-child(2),
.logo-mark span:nth-child(3) { height: 28px; width: 6px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--paper);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper-dim);
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 4px;
}

.nav-menu > li > a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1c1d1b;
    white-space: nowrap;
    padding: 10px 12px;
    position: relative;
}

.nav-menu > li > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #1c1d1b;
}

.search-trigger {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(28, 29, 27, 0.12);
    background: #fff;
    color: #1c1d1b;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 18px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
}

.nav-cta:hover {
    filter: brightness(1.06);
    color: #fff;
}

.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    width: 260px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 120;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    color: var(--paper-soft);
    font-size: 14px;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: var(--ink-3);
    color: var(--paper);
}

.dropdown-menu li a i {
    color: var(--primary);
    width: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-trigger,
.nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 16px;
    height: 1.5px;
    background: var(--paper);
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(16px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: min(680px, 100%);
    text-align: left;
}

.search-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--paper);
    font-size: 16px;
    cursor: pointer;
}

.search-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.search-form-overlay {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--line-strong);
    margin-top: 10px;
}

.search-form-overlay input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 56px 16px 0;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: var(--font-display);
    color: var(--paper);
    outline: none;
}

.search-form-overlay input::placeholder {
    color: var(--paper-dim);
}

.search-form-overlay button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.search-text {
    margin-top: 16px;
    color: var(--paper-dim);
    font-size: 13px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.btn-sm { padding: 11px 18px; font-size: 11px; }
.btn-lg { padding: 18px 30px; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border-color: var(--line-strong);
    color: var(--paper);
}

.btn-outline:hover {
    border-color: var(--paper);
    color: var(--paper);
}

.btn-light {
    background: var(--paper);
    color: var(--ink);
}

.btn-light:hover {
    background: #fff;
    color: var(--ink);
}

/* ========== Hero ========== */
.hero-slider,
.hero-section {
    position: relative;
    min-height: 88vh;
    background: var(--ink);
    overflow: hidden;
}

.hero-section {
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-slide {
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 20, 0.25) 0%, rgba(17, 17, 20, 0.78) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.hero-kicker,
.subtitle,
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-kicker::before,
.sec-kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--primary);
}

.hero-content h1,
.hero-static h1 {
    font-size: clamp(2.6rem, 6.2vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: var(--paper);
    max-width: 14ch;
    margin-bottom: 22px;
}

.hero-content p,
.hero-copy {
    font-size: 1.08rem;
    color: var(--paper-soft);
    max-width: 46ch;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-static .hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.72fr;
    gap: 56px;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--line-strong);
    padding: 8px;
}

.hero-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 440px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
}

.hero-frame::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 56px;
    height: 56px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    pointer-events: none;
}

.main-slider {
    overflow: hidden;
    padding-bottom: 8px;
}

.main-slider .swiper-slide {
    opacity: 0 !important;
}

.main-slider .swiper-slide-active {
    opacity: 1 !important;
}

.main-slider .hero-wrapper {
    min-height: auto;
    padding: 8px 0 64px;
}

.main-slider .swiper-pagination {
    bottom: 10px !important;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: var(--paper) !important;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    top: auto;
    bottom: 4px;
    margin: 0;
    background: rgba(17, 17, 20, 0.55);
}

.main-slider .swiper-button-prev { left: 0; }
.main-slider .swiper-button-next { right: 0; }

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 14px;
}

.hero-watermark {
    position: absolute;
    right: -2%;
    top: 18%;
    font-family: var(--font-display);
    font-size: 16vw;
    font-weight: 700;
    color: rgba(28, 29, 27, 0.05);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-transform: uppercase;
}

.swiper-pagination-bullet {
    background: var(--paper) !important;
    opacity: 0.35 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--paper) !important;
}

/* ========== Sections ========== */
.section,
.sec {
    padding: var(--section-padding) 0;
    background: var(--ink);
}

.sec-paper {
    background: var(--paper);
    color: var(--ink);
}

.sec-paper h2,
.sec-paper h3,
.sec-paper h4,
.sec-paper .sec-title {
    color: var(--ink);
}

.sec-paper p,
.sec-paper .sec-desc {
    color: #4a473f;
}

.sec-muted {
    background: var(--ink-2);
}

.section-header,
.sec-head {
    max-width: 720px;
    margin-bottom: 32px;
}

.sec-head.is-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sec-head h2,
.section-header h2,
.sec-title {
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.sec-desc,
.section-header p {
    color: var(--paper-soft);
    font-size: 1.05rem;
}

.sec-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
}

/* ========== Services ========== */
.svc-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.svc-card,
.service-card {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--line);
    min-height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.svc-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.svc-media {
    height: 190px;
    background: var(--ink-3);
    overflow: hidden;
    position: relative;
}

.svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.svc-card:hover .svc-media img {
    transform: scale(1.06);
}

.svc-media-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 42px;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), transparent 55%),
        var(--ink-3);
}

.svc-body,
.service-card {
    padding: 22px 22px 24px;
}

.service-card {
    min-height: 280px;
}

.service-icon,
.svc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 16px;
}

.svc-card:has(.svc-media img) .svc-icon {
    display: none;
}

.svc-card h3,
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.svc-card p,
.service-card p {
    color: var(--paper-dim);
    font-size: 14px;
    margin-bottom: 18px;
    flex: 1;
}

.service-link,
.svc-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* ========== Work / gallery ========== */
.work-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.work-card,
.gallery-item-card {
    position: relative;
    overflow: hidden;
    display: block;
    grid-column: span 4;
    aspect-ratio: 4/3;
    background: var(--ink-3);
    border-radius: 20px;
}

.work-card.is-feature {
    grid-column: span 8;
    aspect-ratio: 16/10;
}

.work-card img,
.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: saturate(0.85);
}

.work-card:hover img,
.gallery-item-card:hover img {
    transform: scale(1.06);
    filter: saturate(1);
}

.work-overlay,
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 12, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--paper);
    opacity: 0;
    transition: opacity var(--transition);
}

.work-card:hover .work-overlay,
.gallery-item-card:hover .gallery-overlay {
    opacity: 1;
}

.work-overlay span,
.gallery-overlay span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
}

.work-overlay h4,
.gallery-overlay h4 {
    color: var(--paper);
    font-size: 1.25rem;
    margin-top: 6px;
}

.zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 13px;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--paper-soft);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-item-card.hidden,
.work-card.hidden {
    display: none !important;
}

body.header-light:not(.is-home) .header,
body.header-light .header.scrolled {
    border-bottom-color: rgba(17, 17, 20, 0.08);
}

body.header-light:not(.is-home) .logo-text,
body.header-light .header.scrolled .logo-text,
body.header-light:not(.is-home) .nav-menu > li > a,
body.header-light .header.scrolled .nav-menu > li > a {
    color: #16161a;
}

body.header-light:not(.is-home) .logo-text small,
body.header-light .header.scrolled .logo-text small {
    color: #5c574e;
}

body.header-light:not(.is-home) .search-trigger,
body.header-light .header.scrolled .search-trigger,
body.header-light:not(.is-home) .nav-toggle span,
body.header-light .header.scrolled .nav-toggle span {
    color: #16161a;
    border-color: rgba(17, 17, 20, 0.15);
}

body.header-light:not(.is-home) .nav-toggle span,
body.header-light .header.scrolled .nav-toggle span {
    background: #16161a;
}

/* ========== About + stats ========== */
.about-sec {
    padding-bottom: 0;
}

.about-content,
.about-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px 72px;
    align-items: center;
}

.about-image {
    position: relative;
    align-self: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    max-height: 560px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 72px;
    height: 72px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    pointer-events: none;
}

.about-text h2 {
    font-size: clamp(2.05rem, 3.6vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 16ch;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--paper-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 46ch;
    margin-bottom: 22px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 28px;
}

.about-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.02);
}

.about-feature i {
    color: var(--primary);
    font-size: 11px;
}

.about-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: var(--ink);
    border: 1px solid var(--line-strong);
    color: var(--paper);
    padding: 16px 18px;
    min-width: 118px;
}

.about-badge h3 {
    color: var(--paper);
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -0.03em;
}

.about-badge p {
    color: var(--paper-dim);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 4px 0 0;
}

.stat-band {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: var(--ink-2);
}

.stats-section,
.stat-row {
    padding: 0;
}

.stats-grid,
.stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.stat-item {
    flex: 0 1 200px;
    max-width: 240px;
    padding: 36px 28px 34px;
    text-align: center;
    border-right: 1px solid var(--line);
}

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

.stat-item h3 {
    font-size: clamp(2.2rem, 3vw, 3.1rem);
    color: var(--paper);
    margin-bottom: 8px;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.stat-item p {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper-dim);
    font-weight: 600;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
    background: rgba(107, 13, 13, 0.08);
    border-radius: 50%;
}

/* ========== Logos + quotes ========== */
.logo-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 42px;
    align-items: center;
    justify-content: center;
}

.logo-rail img {
    max-height: 42px;
    width: auto;
    filter: grayscale(1) invert(1);
    opacity: 0.55;
    transition: var(--transition);
}

.logo-rail img:hover {
    opacity: 1;
    filter: none;
}

.logo-rail span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--paper-dim);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quote-card,
.testimonial-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: 32px 28px 28px;
    position: relative;
}

.quote-card::before,
.testimonial-card::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    opacity: 0.85;
}

.quote-card p,
.testimonial-card p {
    color: var(--paper-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.quote-card h5,
.testimonial-author h5 {
    font-size: 15px;
    margin-bottom: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img,
.avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-author span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--paper-dim);
}

/* ========== Certs ========== */
.cert-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cert-card {
    border: 1px solid var(--line);
    background: var(--ink-2);
    padding: 22px;
    text-align: left;
}

.cert-card img,
.cert-fallback {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
    background: var(--ink-3);
}

.cert-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
}

.cert-card strong {
    display: block;
    font-family: var(--font-display);
    margin-bottom: 6px;
}

.cert-card span {
    color: var(--paper-dim);
    font-size: 13px;
}

.trust-certs {
    padding: 56px 0;
}

/* ========== Blog ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.blog-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    height: 210px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--paper-dim);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--paper-dim);
    font-size: 14px;
    margin-bottom: 16px;
}

.read-more {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ========== CTA ========== */
.cta-section,
.cta-band {
    position: relative;
    padding: 110px 0;
    background: var(--secondary);
    overflow: hidden;
    text-align: left;
}

.cta-section::before,
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.45));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    color: var(--paper);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--paper-soft);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* ========== Page header ========== */
.page-header {
    position: relative;
    min-height: 340px;
    padding: 168px 0 72px;
    display: flex;
    align-items: flex-end;
    background-color: var(--ink-2);
    background-size: cover;
    background-position: center;
    border-bottom: 0;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: var(--paper);
    margin-bottom: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--paper-dim);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--paper-soft);
}

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

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.contact-list {
    margin-top: 28px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list .icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-list h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-form {
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: 36px;
}

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

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

.form-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper-soft);
}

.form-control {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line-strong);
    background: var(--ink);
    color: var(--paper);
    font-family: inherit;
    font-size: 15px;
    border-radius: var(--radius-sm);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control { min-height: 130px; resize: vertical; }

.input-group {
    display: flex;
    gap: 8px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--ink-3);
    border: 1px solid var(--line-strong);
    font-weight: 800;
}

.map-container iframe {
    width: 100% !important;
    height: 400px !important;
    border: 0 !important;
    filter: grayscale(1) contrast(1.1);
}

/* ========== Footer ========== */
.footer {
    background: var(--footer-bg);
    color: var(--paper-dim);
    padding: 80px 0 28px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr 1.3fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--paper);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-logo i { color: var(--primary); }

.footer-col p { margin-bottom: 18px; line-height: 1.7; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a:hover { color: var(--primary); }

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info i { color: var(--primary); margin-top: 4px; }

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper-soft);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-newsletter-form .field {
    position: relative;
    border: 1px solid var(--line-strong);
    padding: 5px;
}

.footer-newsletter-form input {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--paper);
    padding: 10px 48px 10px 12px;
    outline: none;
}

.footer-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    text-align: left;
    font-size: 13px;
}

/* ========== Inner layouts ========== */
.page-container { padding: 80px 0; }

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.content-card,
.sidebar-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
}

.content-body { padding: 36px; }

.content-body h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.sidebar-sticky { position: sticky; top: 100px; }

.sidebar-card { padding: 24px; margin-bottom: 20px; }

.sidebar-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.sidebar-menu li { margin-bottom: 10px; }

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--paper-dim);
    font-weight: 600;
}

.sidebar-menu a:hover,
.sidebar-menu a.active { color: var(--primary); }

.other-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.other-list li + li {
    border-top: 1px solid var(--line);
}

.other-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--paper-soft);
}

.other-list a:hover {
    color: var(--paper);
}

.other-ico {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    color: var(--primary);
    font-size: 12px;
}

.other-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.other-go {
    font-size: 10px;
    color: var(--paper-dim);
    transition: transform var(--transition), color var(--transition);
}

.other-list a:hover .other-go {
    color: var(--primary);
    transform: translateX(3px);
}

.other-list a:hover .other-ico {
    border-color: var(--primary);
}

.help-card {
    background: var(--primary);
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.help-card h4,
.help-card p { color: #fff; position: relative; z-index: 1; }

.help-card p { opacity: 0.9; margin: 10px 0 18px; }

.help-card i.bg-icon {
    position: absolute;
    right: -16px;
    bottom: -16px;
    font-size: 110px;
    opacity: 0.15;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
}

.feature-box {
    margin-top: 32px;
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--ink-2);
}

.feature-box ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.team-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
    overflow: hidden;
}

.member-image { height: 280px; overflow: hidden; }

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info { padding: 18px; }

.member-info span { color: var(--primary); font-size: 13px; font-weight: 700; }

.member-socials { display: flex; gap: 10px; margin-top: 10px; }

.faq-accordion { max-width: 860px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--line);
    background: var(--ink-2);
    margin-bottom: 10px;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--paper);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-trigger h4 { font-size: 16px; color: var(--paper); }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-content-inner {
    padding: 0 20px 20px;
    color: var(--paper-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-item {
    border-top: 2px solid var(--primary);
    padding-top: 18px;
}

.process-item .num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

/* Blog article */
.article-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 18px 0 28px;
    color: var(--paper-dim);
    font-size: 13px;
}

.share-row { display: flex; gap: 8px; margin-top: 28px; }

.share-row a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.share-li { background: #0077b5; }
.share-wa { background: #25d366; }

.detail-main {
    min-width: 0;
}

.detail-cover {
    margin-bottom: 0;
    border: 1px solid var(--line);
    overflow: hidden;
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.detail-panel {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-top: none;
    padding: 36px 36px 40px;
}

.detail-cover + .detail-panel {
    border-top: none;
}

.detail-main > .detail-panel:first-child {
    border-top: 1px solid var(--line);
}

.detail-intro {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.detail-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    color: var(--primary);
    font-size: 20px;
}

.detail-intro h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin: 6px 0 10px;
}

.detail-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--paper);
    margin: 0 0 28px;
    max-width: 52ch;
}

.page-body-content {
    color: var(--paper-soft);
    line-height: 1.85;
    font-size: 1.05rem;
}

.page-body-content > p:first-child {
    font-size: 1.12rem;
    color: var(--paper-soft);
}

.page-body-content p { margin-bottom: 18px; }

.page-body-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-body-content h2,
.page-body-content h3,
.page-body-content h4 {
    margin: 32px 0 14px;
    color: var(--paper);
}

.page-body-content h2 {
    font-size: 1.6rem;
    padding-left: 14px;
    border-left: 2px solid var(--primary);
}

.page-body-content ul,
.page-body-content ol {
    margin: 0 0 20px;
    padding-left: 0;
}

.page-body-content ul li,
.page-body-content ol li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.page-body-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1px;
    background: var(--primary);
}

.page-body-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.03);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.45;
}

.page-body-content img {
    margin: 24px 0;
    max-width: 100%;
    border: 1px solid var(--line);
}

.feature-box {
    margin-top: 36px;
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--ink);
}

.feature-box h4 {
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.feature-box ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.feature-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--paper-soft);
    font-size: 14px;
}

.feature-box li i {
    color: var(--primary);
    margin-top: 3px;
}

.share-block {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.share-block h5 {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .detail-panel { padding: 24px 18px 28px; }
    .detail-intro { flex-direction: column; }
    .feature-box ul { grid-template-columns: 1fr; }
}

/* Search */
.search-empty-state { text-align: center; padding: 70px 16px; }

.search-results-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.search-section { margin-bottom: 48px; }

.search-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    margin-bottom: 18px;
}

.search-count {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ink-3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.search-grid { display: grid; gap: 12px; }

.search-grid--blog {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.search-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--ink-2);
    align-items: center;
}

.search-card--blog { flex-direction: column; align-items: stretch; }

.search-card__icon,
.search-card__image--placeholder {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    color: var(--primary);
    flex-shrink: 0;
}

.search-card__image { width: 100%; height: 160px; overflow: hidden; }

.search-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-card__title { font-size: 1.05rem; margin-bottom: 6px; }

.search-card__desc { color: var(--paper-dim); font-size: 14px; }

/* Floating + popup + cookie + preloader */
.api-sidebar {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.api-item a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.api-item.telefon a { background: var(--primary); }
.api-item.telegram a { background: #0088cc; }
.api-item.whatsapp a { background: #25d366; }
.api-item.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285aeb 90%);
}

.tooltiptext {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink-2);
    color: var(--paper);
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid var(--line);
}

.api-item { position: relative; }

.api-item:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.45s ease;
}

.preloader.fade-out { opacity: 0; visibility: hidden; }

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

.preloader-logo { font-size: 42px; color: var(--primary); margin-bottom: 16px; }

.preloader-cirlce {
    width: 42px;
    height: 42px;
    border: 2px solid var(--line);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 12px;
    animation: spin 0.8s linear infinite;
}

.preloader-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

@keyframes spin { to { transform: rotate(360deg); } }

.cookie-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 340px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--primary);
    padding: 22px;
    z-index: 9998;
    transform: translateY(140%);
    transition: transform 0.45s ease;
}

.cookie-popup.active { transform: none; }

.cookie-popup h3 { font-size: 16px; margin-bottom: 8px; }

.cookie-popup p { font-size: 13px; color: var(--paper-soft); margin-bottom: 14px; }

.marketing-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.marketing-popup.show { opacity: 1; visibility: visible; }

.marketing-popup-content {
    background: var(--ink-2);
    width: min(500px, 92vw);
    position: relative;
    border: 1px solid var(--line);
}

.close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--ink);
    color: var(--paper);
    cursor: pointer;
    z-index: 2;
}

.popup-image img { width: 100%; }

.popup-body { padding: 28px; text-align: left; }

.popup-body h3 { margin-bottom: 10px; }

.popup-body p { color: var(--paper-soft); margin-bottom: 18px; }

.alert {
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.alert-success { border-color: var(--success); color: #b8f0d0; }
.alert-danger { border-color: var(--danger); color: #ffc1c1; }

.text-center { text-align: center; }
.mt-6 { margin-top: 2.5rem; }
.w-100 { width: 100%; }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .svc-grid,
    .services-grid,
    .quote-grid,
    .testimonials-grid,
    .blog-grid,
    .cert-row { grid-template-columns: 1fr 1fr; }

    .work-card,
    .gallery-item-card,
    .work-card.is-feature { grid-column: span 6; }

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

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

@media (max-width: 991px) {
    .header-topbar,
    .top-bar { display: none !important; }

    .nav-toggle { display: flex; z-index: 1001; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--ink-2);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active { right: 0; }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--line);
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
        border: none;
        padding: 8px 0 0;
    }

    .dropdown-container:hover .dropdown-menu,
    .dropdown-container:focus-within .dropdown-menu { display: block; }

    .hero-static .hero-wrapper,
    .about-content,
    .about-split,
    .contact-grid,
    .page-wrapper,
    .service-detail-grid,
    .article-wrap { grid-template-columns: 1fr; }

    .hero-section { padding: 100px 0 60px; }

    .hero-image {
        order: -1;
        justify-content: center;
    }

    .hero-frame {
        max-width: 280px;
    }

    .stats-grid,
    .stat-grid,
    .process-grid { grid-template-columns: 1fr 1fr; }

    .stat-item {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .logo-text { font-size: 15px; }

    .search-grid--blog { grid-template-columns: 1fr 1fr; }

    .nav-actions .btn { display: none; }
    .nav-actions .nx-btn { display: none; }
}

@media (max-width: 768px) {
    .blog-card[style*="flex-direction: row"],
    .blog-list-card {
        flex-direction: column !important;
    }

    .blog-card[style*="flex-direction: row"] .blog-card-image,
    .blog-list-card .blog-card-image {
        width: 100% !important;
        min-height: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 640px) {
    .svc-grid,
    .services-grid,
    .quote-grid,
    .testimonials-grid,
    .blog-grid,
    .cert-row,
    .footer-grid,
    .team-grid,
    .form-row,
    .search-grid--blog,
    .feature-box ul,
    .stats-grid,
    .stat-grid,
    .process-grid { grid-template-columns: 1fr; }

    .work-card,
    .gallery-item-card,
    .work-card.is-feature { grid-column: span 12; }

    .api-sidebar { display: none; }

    .cookie-popup {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 12px;
    }

    .sec-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Light industrial: dark surfaces keep light type */
.page-header h1,
.page-header .breadcrumb,
.page-header .breadcrumb a,
.page-header .sec-kicker,
.help-card h4,
.help-card p {
    color: #f4f2ec;
}

.page-header .sec-kicker,
.page-header .breadcrumb a:hover {
    color: var(--primary);
}

.footer {
    background: var(--footer-bg);
    color: #2B2A26;
    border-top: 1px solid var(--line);
}

.footer-col h4,
.footer-logo {
    color: #2B2A26;
}

.footer-col p,
.footer-col ul li a,
.footer-bottom,
.contact-info li,
.contact-info a {
    color: rgba(43, 42, 38, 0.7);
}

.footer-col ul li a:hover { color: #d4b56a; }
.footer-bottom { border-top-color: rgba(255,255,255,0.1); }

.footer-newsletter-form input { color: #f7f1e8; }
.footer-newsletter-form .field { border-color: rgba(255,255,255,0.18); background: rgba(0,0,0,0.15); }

.cta-band {
    background: #f3efe6;
    color: #1c1d1b;
}

.cta-band::before { display: none; }

.cta-band .cta-content h2,
.cta-band .cta-content p {
    color: #1c1d1b;
}

.cta-buttons .btn-outline {
    color: #1c1d1b !important;
    border-color: #1c1d1b !important;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: #1c1d1b;
    color: #f7f1e8 !important;
}

.search-overlay {
    background: rgba(16, 16, 18, 0.92);
    backdrop-filter: blur(16px);
}

.search-overlay .sec-kicker,
.search-form-overlay input,
.search-close {
    color: #f4f2ec;
}

.search-close {
    border-color: rgba(244, 242, 236, 0.28);
}

.search-form-overlay {
    border-bottom-color: rgba(244, 242, 236, 0.22);
}

.search-form-overlay input::placeholder,
.search-text {
    color: rgba(244, 242, 236, 0.5);
}

.cta-buttons .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.preloader { background: var(--ink); }

.logo-rail img {
    filter: grayscale(1);
    opacity: 0.55;
}

.sec-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.slide-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--paper);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slide-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.svc-swiper,
.work-swiper {
    overflow: hidden;
    padding: 8px 4px 20px;
}

.svc-slide,
.work-tile {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(28, 29, 27, 0.07);
    height: 100%;
    color: inherit;
}

.svc-slide .svc-media,
.work-tile-media {
    height: 220px;
    overflow: hidden;
    background: var(--ink-3);
}

.svc-slide .svc-media img,
.work-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-slide:hover .svc-media img,
.work-tile:hover .work-tile-media img {
    transform: scale(1.06);
}

.svc-slide-body,
.work-tile-body {
    padding: 20px 20px 22px;
}

.svc-slide-body h3,
.work-tile-body h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--paper);
}

.svc-slide-body p,
.work-tile-body p {
    color: var(--paper-dim);
    font-size: 14px;
    margin-bottom: 14px;
    min-height: 3.2em;
}

.svc-slide-body .svc-link,
.work-tile-body span {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.svc-media-fallback {
    background: linear-gradient(135deg, #2a2a28, #4a4038);
    color: #fff;
}

.hero-cinematic {
    position: relative;
    min-height: 640px;
    padding-bottom: 72px;
    background: #1c1d1b;
}

.hero-full,
.hero-full-slide,
.hero-full .swiper-wrapper,
.hero-full .swiper-slide {
    min-height: 640px;
}

.hero-full,
.hero-full-slide,
.hero-full-slide.is-static {
    position: relative;
    background: #1c1d1b;
    background-size: cover;
    background-position: center;
    min-height: 640px;
}

.hero-full-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-full-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.18) 62%, rgba(12, 12, 12, 0.08) 100%);
}

.hero-full-inner {
    position: relative;
    z-index: 2;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 110px 0 90px;
}

.hero-dock {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    transform: translateY(42%);
}

.hero-dock-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.dock-card {
    background: #fff;
    border: 1px solid rgba(28, 29, 27, 0.06);
    box-shadow: 0 14px 34px rgba(28, 29, 27, 0.1);
    min-height: 92px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    color: #1c1d1b;
    font-weight: 700;
    font-size: 14px;
}

.dock-card i {
    color: var(--primary);
    font-size: 12px;
    transition: transform var(--transition);
}

.dock-card:hover {
    transform: translateY(-3px);
    color: #1c1d1b;
}

.dock-card:hover i {
    transform: translateX(3px);
}

.hero-cinematic + .sec {
    padding-top: 150px;
}

@media (max-width: 1100px) {
    .hero-dock-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-dock { transform: translateY(28%); }
}

@media (max-width: 640px) {
    .hero-dock-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-cinematic { padding-bottom: 40px; }
    .hero-cinematic + .sec { padding-top: 220px; }
    .hero-nums { display: none; }
    .hero-full-inner { padding: 118px 0 72px !important; }
    .hero-full-copy { max-width: 100%; padding-right: 4px; }
    .hero-full-copy h1 {
        font-size: clamp(1.7rem, 7.6vw, 2.1rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .hero-full-copy p {
        max-width: 100%;
        padding-right: 12px;
        font-size: 0.95rem;
    }
}

.hero-full-copy {
    max-width: 720px;
}

.hero-cinematic:has(.hero-nums) .hero-full-copy {
    padding-left: 90px;
}

@media (max-width: 640px) {
    .hero-cinematic:has(.hero-nums) .hero-full-copy {
        padding-left: 0;
    }
}

.hero-full-copy h1 {
    font-size: clamp(2.8rem, 6.4vw, 5.4rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    margin: 0 0 18px;
}

.hero-full-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    max-width: 46ch;
    margin-bottom: 28px;
}

.hero-kicker.is-on-photo {
    color: #fff;
}

.hero-kicker.is-on-photo::before {
    background: #fff;
}

.hero-nums {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-num {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.38);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: left;
    padding: 2px 0;
}

.hero-num.is-active {
    color: #fff;
    font-size: 34px;
}

@media (max-width: 768px) {
    .hero-nums { left: 14px; }
    .hero-full-inner { padding: 120px 0 64px 42px; }
}

.header {
    border-bottom: 1px solid transparent;
}

body:not(.is-home) .header,
.header.scrolled {
    background: #fff;
    box-shadow: 0 8px 24px rgba(28, 29, 27, 0.06);
}

.reveal {
    animation: rise 0.7s ease both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.dock-card,
.nav-cta,
.btn,
.slide-btn { border-radius: 18px; }

.about-collage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.collage {
    position: relative;
    min-height: 460px;
}

.collage-main {
    width: 78%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(43, 42, 38, 0.12);
}

.collage-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.collage-float {
    position: absolute;
    width: 42%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
    box-shadow: 0 14px 30px rgba(43, 42, 38, 0.14);
}

.collage-float:nth-of-type(2) {
    top: 18px;
    right: 0;
}

.collage-float:nth-of-type(3) {
    bottom: 10px;
    right: 12%;
    width: 36%;
}

.collage-float img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.about-lead {
    font-weight: 800;
    color: #2B2A26;
    margin-bottom: 12px;
}

.about-checks {
    list-style: none;
    margin: 20px 0 28px;
    padding: 0;
}

.about-checks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #2B2A26;
}

.about-checks i { color: var(--primary); margin-top: 4px; }

.svc-strip {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 12px 28px rgba(43, 42, 38, 0.08);
    color: inherit;
}

.svc-strip-copy {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.svc-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-strip-copy h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #2B2A26;
}

.svc-strip-copy p {
    color: rgba(43, 42, 38, 0.65);
    font-size: 14px;
    flex: 1;
}

.svc-go {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFF6EE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-top: 16px;
}

.svc-strip-media img,
.svc-strip-media .svc-media-fallback {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.stat-showcase {
    padding: 40px 0 80px;
    background: #fff;
    text-align: center;
}

.stat-word {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 0.9;
    font-weight: 700;
    background: url('https://images.unsplash.com/photo-1587654780291-39c9404d746b?auto=format&fit=crop&w=1600&q=80') center/cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(43, 42, 38, 0.12);
}

.stat-word-label {
    margin: 8px 0 28px;
    font-weight: 800;
    color: #2B2A26;
}

.stat-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.stat-pill {
    min-width: 180px;
    background: #f4f1ea;
    border-radius: 999px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: #2B2A26;
}

.stat-pill i { color: var(--primary); font-size: 22px; }

.cta-rich {
    background: #2B2A26;
    border-radius: 0;
    padding: 72px 0;
    position: relative;
}

.cta-rich::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 18, 16, 0.72), rgba(20, 18, 16, 0.38));
    pointer-events: none;
}

.cta-rich .container { position: relative; z-index: 1; }

.cta-rich-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.cta-rich .cta-content h2,
.cta-rich .cta-content p,
.cta-rich .sec-kicker { color: #fff; }

.cta-chips { display: flex; flex-direction: column; gap: 12px; }

.cta-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: none;
    border-radius: 18px;
    padding: 16px 18px;
    color: #2B2A26;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cta-chip:hover { color: #2B2A26; transform: translateY(-2px); }

.cta-chip small { display: block; opacity: 0.55; font-size: 11px; font-weight: 700; }
.cta-chip i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 139, 61, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-band .cta-buttons .btn-outline,
.cta-band .btn-outline {
    color: #2B2A26 !important;
    border-color: #2B2A26 !important;
}

@media (max-width: 991px) {
    .about-collage,
    .cta-rich-grid,
    .svc-strip { grid-template-columns: 1fr; }
    .collage { min-height: 0; }
    .collage-float { position: static; width: 48%; display: inline-block; margin-top: 10px; }
}

/* ========== Dolu sahne + hareket ========== */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .container { position: relative; z-index: 1; }

.stage-word {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 16vw, 11rem);
    line-height: 0.8;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(43, 42, 38, 0.07);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    animation: blob-float 9s ease-in-out infinite;
}
.blob.b-a {
    width: 180px;
    height: 180px;
    background: rgba(45, 90, 39, 0.16);
    top: 40px;
    right: 6%;
}
.blob.b-b {
    width: 140px;
    height: 140px;
    background: rgba(212, 175, 55, 0.28);
    bottom: 40px;
    left: 4%;
    animation-delay: -3s;
}
.blob.b-c {
    width: 220px;
    height: 220px;
    background: rgba(45, 90, 39, 0.1);
    top: 20%;
    left: -40px;
    animation-delay: -5s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(14px, -22px) scale(1.08); }
}

.hero-floaters { position: absolute; inset: 0; z-index: 8; pointer-events: none; overflow: hidden; }
.floater {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: floater 7s ease-in-out infinite;
}
.floater.f1 { width: 26px; height: 26px; top: 22%; right: 12%; background: rgba(255, 139, 61, 0.45); }
.floater.f2 { width: 14px; height: 14px; top: 38%; right: 22%; animation-delay: -2s; background: #fff; }
.floater.f3 { width: 40px; height: 40px; bottom: 28%; left: 10%; animation-delay: -4s; border-style: dashed; }

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

.hero-full-slide {
    background-size: 112% 112%;
    animation: ken-bg 18s ease-in-out infinite alternate;
}
.hero-full-slide.is-static { animation-duration: 22s; }

@keyframes ken-bg {
    from { background-position: 38% 50%; }
    to { background-position: 62% 48%; }
}

.hero-full-copy .hero-kicker { animation: rise 0.7s 0.15s both; }
.hero-full-copy h1 { animation: rise 0.85s 0.28s both; }
.hero-full-copy p { animation: rise 0.85s 0.42s both; }
.hero-full-copy .hero-buttons { animation: rise 0.85s 0.55s both; }

.hero-dock-grid .dock-card {
    animation: rise 0.7s both;
}
.hero-dock-grid .dock-card:nth-child(1) { animation-delay: 0.45s; }
.hero-dock-grid .dock-card:nth-child(2) { animation-delay: 0.55s; }
.hero-dock-grid .dock-card:nth-child(3) { animation-delay: 0.65s; }
.hero-dock-grid .dock-card:nth-child(4) { animation-delay: 0.75s; }
.hero-dock-grid .dock-card:nth-child(5) { animation-delay: 0.85s; }
.hero-dock-grid .dock-card:nth-child(6) { animation-delay: 0.95s; }

.collage-float:nth-of-type(2) { animation: floaty 5.4s ease-in-out infinite; }
.collage-float:nth-of-type(3) { animation: floaty 6.6s ease-in-out infinite reverse; }

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

.svc-strip {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.svc-strip:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(43, 42, 38, 0.14);
}
.svc-strip-media img {
    transition: transform 0.8s ease;
}
.svc-strip:hover .svc-strip-media img {
    transform: scale(1.08);
}
.svc-go {
    transition: transform 0.35s ease, background 0.35s ease;
}
.svc-strip:hover .svc-go {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.work-tile {
    transition: transform 0.4s ease;
}
.work-tile:hover { transform: translateY(-6px); }

.stat-pill {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(43, 42, 38, 0.08);
}

.quote-grid,
.testimonials-grid,
.blog-grid,
.cert-row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Blog dergi sahnesi */
.blog-stage { padding-bottom: 110px; }

.blog-stage-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr;
    gap: 22px;
    align-items: stretch;
}

.blog-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(43, 42, 38, 0.08);
}

.blog-feature-media {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
}
.blog-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}
.blog-feature:hover .blog-feature-media img { transform: scale(1.07); }

.blog-date-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #fff;
    color: #2B2A26;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.blog-feature-copy {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.blog-feature-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.blog-feature-copy h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.2;
    margin: 10px 0 14px;
}
.blog-feature-copy h3 a:hover { color: var(--primary); }
.blog-feature-copy p {
    color: rgba(43, 42, 38, 0.68);
    margin-bottom: 24px;
}

.blog-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}
.blog-rail-note {
    margin-top: auto;
    background: #fff6ee;
    border-radius: 20px;
    padding: 18px 18px 16px;
    color: #2B2A26;
}
.blog-rail-note i { color: var(--primary); margin-bottom: 8px; display: block; }
.blog-rail-note p { font-size: 14px; line-height: 1.55; margin: 0; }

.blog-rail-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 18px;
    padding: 16px 16px;
    color: #2B2A26;
    box-shadow: 0 10px 22px rgba(43, 42, 38, 0.06);
    transition: transform 0.35s ease;
}
.blog-rail-cta:hover { transform: translateX(4px); color: #2B2A26; }
.blog-rail-cta.is-soft { background: #fff6ee; }
.blog-rail-cta i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 139, 61, 0.16);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-rail-cta small { display: block; font-size: 11px; font-weight: 800; opacity: 0.5; }

.blog-rail-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    background: #2B2A26;
    border-radius: 20px;
    padding: 14px;
    flex: 1;
    align-content: center;
}
.blog-rail-links a {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}
.blog-rail-links a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.blog-rail-links i { color: var(--primary); }

.blog-mini {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    color: #2B2A26;
    box-shadow: 0 8px 18px rgba(43, 42, 38, 0.05);
}
.blog-mini img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}
.blog-mini small { display: block; font-size: 11px; color: var(--paper-dim); margin-bottom: 4px; }
.blog-mini strong { font-size: 14px; line-height: 1.3; }
.blog-mini:hover { color: var(--primary); }

/* Kaydırınca belirme */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal="up"] { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-in,
.js-reveal.is-in {
    opacity: 1;
    transform: none;
}
.footer-col[data-reveal] {
    opacity: 0;
    transform: translateX(-36px);
}
.footer-col[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

.js-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 991px) {
    .blog-stage-grid,
    .blog-feature { grid-template-columns: 1fr; }
    .blog-feature-media { min-height: 240px; }
    .stage-word { top: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-full-slide,
    .blob,
    .floater,
    .collage-float,
    .hero-full-copy .hero-kicker,
    .hero-full-copy h1,
    .hero-full-copy p,
    .hero-full-copy .hero-buttons,
    .hero-dock-grid .dock-card,
    .spin-ring,
    .icon-dock-ico,
    .prog-card img {
        animation: none !important;
    }
    [data-reveal],
    .js-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========== Dolu kreş sahnesi ========== */
.hero-cinematic { padding-bottom: 110px; }

.floater.f4 {
    width: 18px;
    height: 18px;
    top: 18%;
    left: 18%;
    background: rgba(255, 255, 255, 0.55);
    animation-delay: -1.4s;
}

.spin-ring {
    position: absolute;
    width: 86px;
    height: 86px;
    border: 2px dashed rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    right: 8%;
    bottom: 26%;
    animation: spin 14s linear infinite;
}
.spin-ring.light {
    position: absolute;
    right: 8%;
    top: 18%;
    border-color: rgba(255, 255, 255, 0.55);
}

.icon-dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.icon-dock-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px 18px 20px;
    box-shadow: 0 18px 36px rgba(43, 42, 38, 0.12);
    color: #2B2A26;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.icon-dock-card:hover {
    transform: translateY(-8px);
    color: #2B2A26;
    box-shadow: 0 24px 44px rgba(43, 42, 38, 0.16);
}
.icon-dock-ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 139, 61, 0.14);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    animation: bob 3.2s ease-in-out infinite;
}
.icon-dock-card:nth-child(2) .icon-dock-ico { animation-delay: 0.4s; background: #fff3d6; color: #e39b12; }
.icon-dock-card:nth-child(3) .icon-dock-ico { animation-delay: 0.8s; background: #e8f6ee; color: #2f9d5c; }
.icon-dock-card:nth-child(4) .icon-dock-ico { animation-delay: 1.2s; background: #ece8ff; color: #6b5cd6; }
.icon-dock-card strong { font-family: var(--font-display); font-size: 1.15rem; }
.icon-dock-card small { color: rgba(43, 42, 38, 0.58); font-size: 13px; line-height: 1.4; }

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

.fact-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 36px;
}
.fact-tile {
    background: #fff;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 24px rgba(43, 42, 38, 0.06);
    color: inherit;
    display: block;
}
a.fact-tile:hover { color: inherit; transform: translateY(-4px); }
.fact-tile i {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
    animation: bob 3.6s ease-in-out infinite;
}
.fact-tile h4 { font-size: 1.05rem; margin-bottom: 6px; }
.fact-tile p { font-size: 13px; color: rgba(43, 42, 38, 0.62); margin: 0; }

.prog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.prog-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    color: inherit;
    box-shadow: 0 16px 34px rgba(43, 42, 38, 0.08);
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 280px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.prog-card:hover {
    transform: translateY(-8px);
    color: inherit;
    box-shadow: 0 24px 42px rgba(43, 42, 38, 0.14);
}
.prog-media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}
.prog-media img,
.prog-media .svc-media-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}
.prog-card:hover .prog-media img { transform: scale(1.08); }
.prog-num {
    position: absolute;
    left: 14px;
    top: 14px;
    background: #fff;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 14px;
}
.prog-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
}
.prog-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.prog-body p { color: rgba(43, 42, 38, 0.64); flex: 1; }
.prog-go {
    margin-top: 16px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.prog-go i { transition: transform 0.3s ease; }
.prog-card:hover .prog-go i { transform: translateX(5px); }

.mid-cta {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.mid-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 18, 16, 0.72), rgba(20, 18, 16, 0.35));
}
.mid-cta .container { position: relative; z-index: 1; }
.mid-cta-box { max-width: 640px; }
.mid-cta-box h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 10px 0 14px;
}
.mid-cta-box p { color: rgba(255, 255, 255, 0.86); margin-bottom: 24px; }

.photo-bento {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}
.bento-cell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
}
.bento-cell.is-lg {
    grid-row: 1 / 3;
}
.bento-cell:nth-child(4) { grid-column: 1; }
.bento-cell:nth-child(n+4) {
    min-height: 180px;
}
.bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.bento-cell:hover img { transform: scale(1.08); }
.bento-cell span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #fff;
    color: #2B2A26;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
}

.kres-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.kres-member {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 28px rgba(43, 42, 38, 0.07);
    transition: transform 0.4s ease;
}
.kres-member:hover { transform: translateY(-8px); }
.kres-member-photo { height: 250px; overflow: hidden; }
.kres-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.kres-member:hover .kres-member-photo img { transform: scale(1.06); }
.kres-member h4 { margin: 16px 16px 4px; }
.kres-member span {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.stat-photo {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
}
.stat-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.62);
}
.stat-photo .container { position: relative; z-index: 1; }
.stat-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.stat-photo-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.stat-photo-card i { color: var(--primary); font-size: 22px; animation: bob 3s ease-in-out infinite; }
.stat-photo-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin: 8px 0 4px;
    color: #2B2A26;
}
.stat-photo-card span { color: rgba(43, 42, 38, 0.6); font-size: 13px; font-weight: 700; }

.quote-grid-rich .quote-card {
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(43, 42, 38, 0.06);
}

.page-header { position: relative; overflow: hidden; }
.page-header::after { display: none; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { animation: rise 0.75s 0.12s both; }
.page-header .sec-kicker,
.page-header .breadcrumb { animation: rise 0.7s 0.24s both; }

.blog-list { display: flex; flex-direction: column; gap: 18px; }
.blog-list-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(43, 42, 38, 0.07);
}
.blog-list-card .blog-card-image {
    width: 42%;
    min-height: 220px;
    height: auto;
}

.contact-form {
    background: #fff;
    border-radius: 4px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(20, 22, 20, 0.08);
    border-top: 3px solid var(--accent);
}
.contact-list li {
    background: #fff;
    border-radius: 4px;
    padding: 14px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary);
}
.contact-list a {
    color: var(--paper);
    font-weight: 600;
}
.contact-list p {
    color: var(--paper-dim);
}
.contact-info .social-links a {
    color: var(--paper);
    border: 1px solid var(--line-strong);
    background: #fff;
}

.faq-item { border-radius: 16px; overflow: hidden; }

.work-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.work-grid .work-card,
.work-grid .work-card.is-feature {
    grid-column: auto;
    aspect-ratio: 4 / 3;
}

.detail-cover img,
.detail-panel {
    border-radius: 22px;
}

.team-card,
.svc-card,
.process-item,
.contact-form,
.contact-list li {
    transition: transform 0.4s ease;
}
.team-card:hover,
.svc-card:hover { transform: translateY(-6px); }

@media (max-width: 1100px) {
    .icon-dock,
    .fact-tiles { grid-template-columns: 1fr 1fr; }
    .photo-bento { grid-template-rows: 160px 160px; }
}
@media (max-width: 768px) {
    .icon-dock { grid-template-columns: 1fr 1fr; }
    .prog-grid,
    .prog-card,
    .fact-tiles,
    .kres-team,
    .stat-photo-grid { grid-template-columns: 1fr; }
    .prog-media { min-height: 200px; }
    .photo-bento { grid-template-columns: 1fr; grid-template-rows: none; }
    .bento-cell.is-lg { grid-row: auto; }
    .bento-cell { min-height: 200px; }
}

/* ========== Nöbet yüzü: rozet + lacivert ========== */
.btn-primary,
.btn-primary:hover {
    color: #fff !important;
}

.rule-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 80%);
}

.hero-full-copy h1,
.sec-title,
.about-text h2 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}
.hero-full-copy p { max-width: 38rem; }
.hero-full-slide,
.hero-full-slide.is-static {
    animation: none;
    background-size: cover;
    background-position: center 62%;
}
.floater.f1 { background: rgba(212, 160, 23, 0.45); }
@media (max-width: 640px) {
    .hero-full-copy { max-width: calc(100vw - 48px); }
    .hero-full-copy p {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.icon-dock-card {
    border-radius: 4px;
    border-left: 3px solid var(--primary);
    min-height: 170px;
}
.icon-dock-ico {
    border-radius: 50%;
    background: rgba(107, 62, 31, 0.14);
    color: var(--primary);
}

.prog-card {
    border-radius: 4px;
    border-top: 3px solid var(--primary);
}

.footer-newsletter-form .nl-field {
    position: relative;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 5px;
}
.footer-newsletter-form .nl-field input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 48px 10px 14px;
    outline: none;
}

body.footer-dark .footer,
body.footer-dark .footer a,
body.footer-dark .footer h4,
body.footer-dark .footer p,
body.footer-dark .footer span,
body.footer-dark .footer li,
body.footer-dark .footer-bottom p,
body.footer-dark .footer-logo,
body.footer-dark .footer-col ul li a,
body.footer-dark .footer .contact-info span,
body.footer-dark .footer .contact-info a {
    color: rgba(247, 245, 240, 0.9);
}
body.footer-dark .footer h4,
body.footer-dark .footer-logo,
body.footer-dark .footer-logo span { color: #f7f5f0; }
body.footer-dark .footer a:hover { color: var(--primary); }
body.footer-dark .footer .social-links a {
    color: #f7f5f0;
    border-color: rgba(255, 255, 255, 0.22);
}
body.footer-dark .nl-field {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}
body.footer-dark .nl-field input,
body.footer-dark .nl-field input::placeholder { color: #f7f5f0; }

body.footer-light .footer,
body.footer-light .footer a,
body.footer-light .footer h4,
body.footer-light .footer p,
body.footer-light .footer-bottom p { color: #1B1E24; }
body.footer-light .footer a:hover { color: #0284c7; }

/* Anasayfa hizmet */
.brick-svc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-top: 22px; }
.brick-card { color: var(--paper); display: flex; flex-direction: column; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.brick-card:hover, .brick-card:focus-visible { transform: translateY(-5px); color: var(--paper); }
.brick-course { position: relative; height: 224px; background: #44403C; overflow: hidden; box-shadow: inset 0 -10px 0 #9A3412; }
.brick-num { position: absolute; z-index: 5; top: 12px; left: 12px; min-width: 36px; height: 22px; padding: 0 8px; background: #E7E5E4; color: #44403C; font-family: var(--font-display); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.brick-media { position: absolute; inset: 0; overflow: hidden; }
.brick-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brick-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #E7E5E4; font-size: 32px; background: #9A3412; }
.brick-joint { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.brick-joint i { position: absolute; background: #E7E5E4; opacity: .7; }
.brick-body { padding: 14px 2px 0; }
.brick-body h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 8px; color: #9A3412; }
.brick-body p { font-size: 13px; color: var(--paper-dim); margin: 0 0 12px; }
.brick-go { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #9A3412; }
.brick-go i { color: #E7E5E4; }
@media (max-width: 991px) { .brick-svc { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .brick-svc { grid-template-columns: 1fr; } }

/* Blog + iç sayfa şeridi — açık kart, bakır payanda */
.cast-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .78fr); gap: 48px; align-items: start; }
.cast-list, .cast-article, .cast-side, .cast-card, .cast-body { min-width: 0; }
.cast-side { position: sticky; top: 108px; }
.job-grid .cast-side { position: sticky; top: 108px; }
.cast-list { display: flex; flex-direction: column; gap: 22px; }
.cast-card { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); overflow: hidden; background: #fff; border: 1px solid #E8E4DC; }
.cast-cover, .cast-hero { position: relative; display: block; height: 220px; min-height: 220px; overflow: hidden; background: #44403C; }
.cast-cover img, .cast-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-body { padding: 20px 22px; }
.cast-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 22px 0 10px; color: #8A8478; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cast-body h3, .cast-body h3 a { font-family: var(--font-display); color: #1c1d1b; margin: 0 0 10px; overflow-wrap: anywhere; }
.cast-body p { color: var(--paper); margin: 0 0 14px; overflow-wrap: anywhere; }
.cast-cta { display: inline-block; padding: 7px 14px; background: #9A3412; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cast-article { overflow: hidden; background: transparent; border: 0; }
.cast-hero { height: 420px; min-height: 420px; margin: 0; }
.cast-article .cast-meta, .cast-copy, .cast-share { padding-left: 0; padding-right: 0; }
.cast-copy, .cast-copy p { color: var(--paper); font-size: 17px; line-height: 1.9; overflow-wrap: anywhere; }
.cast-copy p { margin: 0 0 16px; }
.cast-copy a { color: #9A3412; }
.cast-share { margin-top: 32px; padding-top: 22px; padding-bottom: 8px; border-top: 1px solid #E8E4DC; }
.cast-share h5 { font-family: var(--font-display); color: #1c1d1b; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.cast-share div { display: flex; gap: 8px; }
.cast-share a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: transparent; color: var(--primary); border: 1px solid #E8E4DC; border-radius: 50%; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.cast-share a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cast-search { display: flex; position: relative; margin-bottom: 18px; background: #fff; color: var(--paper); border: 1px solid #E8E4DC; }
.cast-search input { flex: 1; width: 100%; padding: 14px 16px; border: 0; background: transparent; color: #1c1d1b; font: inherit; outline: none; min-width: 0; }
.cast-search input::placeholder { color: #9A9488; }
.cast-search button { position: static; transform: none; width: 52px; flex-shrink: 0; border: 0; background: var(--primary); color: #fff; cursor: pointer; }
.cast-search button:hover { background: #7c2d12; }
.cast-widget { position: relative; padding: 26px 24px 22px; margin-bottom: 18px; background: #fff; color: var(--paper); border: 1px solid #E8E4DC; }
.cast-widget::before { content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; background: var(--primary); }
.cast-widget h4 { margin: 0 0 16px; padding: 0 0 12px; border-bottom: 1px solid #E8E4DC; font-family: var(--font-display); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: #1c1d1b; }
.cast-widget p { color: #6B6459; font-size: 14px; line-height: 1.7; margin: 0 0 4px; }
.cast-widget ul { list-style: none; margin: 0; padding: 0; }
.cast-widget a { color: inherit; }
.cast-widget .nx-btn { color: #fff; }
.cast-widget ul:not(.cast-recent):not(.cast-contact) > li + li { border-top: 1px solid #F0EBE3; }
.cast-widget ul:not(.cast-recent):not(.cast-contact) > li > a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 13px 0; color: #3a3834; font-size: 15px; font-weight: 600; }
.cast-widget ul:not(.cast-recent):not(.cast-contact) > li > a:hover,
.cast-widget a.is-on { color: var(--primary); }
.cast-widget em, .cast-widget small { font-style: normal; color: #9A9488; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.cast-pager { padding-top: 36px; display: flex; justify-content: center; }
@media (max-width: 900px) {
    .cast-grid, .cast-card { grid-template-columns: minmax(0, 1fr); }
    .cast-cover, .cast-hero { height: 200px; min-height: 200px; }
    .cast-side, .job-grid .cast-side { position: static; }
}

.brick-joint i:nth-child(1) { top: 20%; left: 0; width: 40%; height: 3px; }
.brick-joint i:nth-child(2) { top: 50%; right: 0; width: 55%; height: 3px; }
.brick-joint i:nth-child(3) { bottom: 18%; left: 15%; width: 70%; height: 3px; }

/* Core UI: KAPASİTE rakamları (Bozgeyik stat-board) + hizmet detay */
.ops-kicker,
.stat-board .sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 800;
    text-transform: uppercase;
}
.ops-kicker::before,
.stat-board .sec-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

.stat-board {
    background: var(--ink);
    padding: 72px 0 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat-board-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--line-strong);
}
.stat-board-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--paper);
    margin: 6px 0 0;
}
.stat-board-head p {
    max-width: 28rem;
    margin: 0 0 6px;
    color: var(--paper-dim);
    font-size: 0.95rem;
}
.stat-board-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat-metric {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 28px 8px 0;
    border-right: 1px solid var(--line);
    min-width: 0;
}
.stat-metric:last-child { border-right: 0; padding-right: 0; }
.stat-metric:first-child { padding-left: 0; }
.stat-metric + .stat-metric { padding-left: 28px; }
.stat-metric-ico {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    font-size: 15px;
}
.stat-metric-ico i {
    color: #fff;
    font-size: 15px;
    line-height: 1;
}
.stat-metric-copy strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
}
.stat-metric-copy span {
    display: block;
    margin-top: 10px;
    color: var(--paper-dim);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.job-crumb {
    background: var(--secondary);
    color: #fff;
    padding: 14px 0;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.job-crumb a { color: rgba(255, 255, 255, 0.72); }
.job-crumb a:hover { color: #fff; }
.job-crumb span { margin: 0 8px; opacity: 0.45; }
.job-sec { background: #fff; padding: 72px 0 90px; }
.job-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.78fr);
    gap: 40px;
    align-items: start;
}
.job-main, .job-side, .job-copy { min-width: 0; }
.job-side { position: sticky; top: 108px; }
.job-hero {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: 0;
}
.job-hero:not(:has(.job-photo)) {
    grid-template-columns: minmax(0, 1fr);
}
.job-photo {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: var(--secondary);
    margin-bottom: 22px;
}
.job-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.job-head h2 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}
.job-lead {
    color: var(--paper);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.job-copy, .job-copy p {
    color: var(--paper-soft);
    font-size: 16px;
    line-height: 1.85;
}
.job-copy p { margin: 0 0 14px; }
.job-pack {
    margin-top: 36px;
    border: 1px solid var(--line);
    background: var(--ink-2);
    padding: 24px;
}
.job-pack h4 {
    margin: 0 0 16px;
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.job-pack ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.job-pack li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--paper);
    font-size: 14px;
    line-height: 1.4;
}
.job-pack li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 13px;
}
.job-cta {
    background: var(--primary);
    color: #fff;
    padding: 26px 24px 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.job-cta h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}
.job-cta p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 18px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.job-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--secondary);
    color: #fff !important;
    border: 0;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.job-cta-btn:hover { filter: brightness(1.08); color: #fff !important; }
.job-phone {
    display: block;
    margin-top: 16px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.job-phone:hover { color: #fff; opacity: 0.88; }
.job-others {
    background: var(--ink-2);
    padding: 20px 20px 12px;
    color: var(--paper);
}
.job-others h4 {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--paper);
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.job-others ul { list-style: none; margin: 0; padding: 0; }
.job-others li + li { border-top: 1px solid var(--line); }
.job-others a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--paper);
    font-size: 14px;
    font-weight: 600;
}
.job-others a:hover { color: var(--primary); }
.job-others .job-ico {
    width: 18px;
    color: var(--accent);
    flex-shrink: 0;
}
.job-others .job-go {
    margin-left: auto;
    font-size: 12px;
    color: var(--paper-dim);
}
@media (max-width: 991px) {
    .stat-board-head { flex-direction: column; align-items: flex-start; }
    .stat-board-row { grid-template-columns: 1fr; }
    .stat-metric,
    .stat-metric + .stat-metric {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 22px 0;
    }
    .stat-metric:last-child { border-bottom: 0; }
    .job-grid,
    .job-pack ul { grid-template-columns: minmax(0, 1fr); }
    .job-photo { max-width: none; height: 240px; }
    .job-side, .cast-side { position: static; }
}

/* ========== Partner / Referans Şeridi ========== */
.partner-strip-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.partner-logo {
    background: var(--ink-2);
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter var(--transition), opacity var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo-word {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--paper-dim);
    text-align: center;
    text-transform: uppercase;
    transition: color var(--transition);
}

.partner-logo:hover .partner-logo-word {
    color: var(--paper);
}

/* =====================================================================
   NX — insaatv11 referans klonu
   Ölçüler referanstan alındı: h2 Sora 700 50px/60px, ayraç 90x4 #A6611C,
   buton 10px 30px r5 14px/600 uppercase, gövde Titillium Web 16px #777
   ===================================================================== */

.nx-sec {
    padding: 70px 0;
    background: #fff;
}

.nx-sec-muted { background: #F8F8F8; }

.nx-title {
    font-family: "Sora", sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 10px;
}

.nx-title-bar {
    display: block;
    width: 90px;
    height: 4px;
    background: var(--primary);
    margin: 0 0 10px;
}

.nx-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.nx-head-desc {
    max-width: 52rem;
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: normal;
    padding: 10px 30px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background .3s ease;
}

.nx-btn:hover { background: #8a4f14; color: #fff; }
.nx-btn-sm { flex-shrink: 0; }

/* --- Hero --- */
.nx-hero { position: relative; background: #1c1d1b; }

.nx-hero-slider,
.nx-hero-slider .swiper-wrapper,
.nx-hero-slide { min-height: 700px; }

.nx-hero-slide {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.nx-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,14,12,.72) 0%, rgba(15,14,12,.35) 55%, rgba(15,14,12,.08) 100%);
}

.nx-hero-inner { position: relative; z-index: 2; padding: 120px 0; }
.nx-hero-copy { max-width: 660px; }

.nx-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.nx-hero-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--primary);
}

.nx-hero-copy h1 {
    font-family: "Sora", sans-serif;
    font-size: 56px;
    line-height: 66px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    margin: 0 0 18px;
}

.nx-hero-copy p {
    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 0 28px;
}

.nx-hero-nums {
    position: absolute;
    right: 46px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nx-hero-num {
    background: none;
    border: none;
    color: rgba(255,255,255,.45);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 0;
}

.nx-hero-num.is-active { color: #fff; font-size: 26px; }

/* --- Hakkımızda: metin sol, görsel sağda tam taşan --- */
.nx-about-sec { padding: 70px 0 0; overflow: hidden; }

.nx-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nx-about-copy p {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.nx-about-copy .nx-btn { margin-top: 12px; }

.nx-about-media {
    position: relative;
    margin-right: calc((100vw - var(--container-width)) / -2 - 15px);
}

.nx-about-media img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

/* --- Projeler --- */
.nx-proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nx-proj {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.nx-proj img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.nx-proj:hover img { transform: scale(1.06); }

.nx-proj-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.82) 65%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.nx-proj-body h3 {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
}

.nx-proj-more {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --- Hizmetler: 5 kart, kenardan kenara --- */
.nx-svc-sec { padding: 100px 0 80px; }

.nx-svc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 40px;
}

.nx-svc {
    display: block;
    background: #fff;
    border-right: 1px solid #EDEDED;
}

.nx-svc:last-child { border-right: 0; }

.nx-svc-media {
    height: 210px;
    background: #F1EEE9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nx-svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.nx-svc:hover .nx-svc-media img { transform: scale(1.06); }

.nx-svc-ico,
.nx-svc-ico i {
    color: var(--primary);
    font-size: 46px;
    line-height: 1;
}

.nx-svc-body { padding: 26px 26px 32px; }

.nx-svc-body h3 {
    font-family: "Sora", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 12px;
}

.nx-svc-body p {
    color: #777;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* --- Rakamlar --- */
.nx-stats { background: #1F1E1C; padding: 55px 0; }

.nx-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nx-stat { text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.12); }
.nx-stat:last-child { border-right: 0; }

.nx-stat i { color: var(--primary); font-size: 26px; margin-bottom: 12px; display: block; }

.nx-stat strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.nx-stat span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

/* --- Müşteri görüşleri --- */
.nx-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nx-quote {
    position: relative;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    padding: 26px 26px 28px;
    overflow: hidden;
}

.nx-quote::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(166, 97, 28, .06);
}

.nx-quote-by {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.nx-quote-by img,
span.nx-quote-ava {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

span.nx-quote-ava {
    box-sizing: border-box;
    background: #EFEDEA;
    color: #6B6459;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 0;
}

.nx-quote-by h5 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 3px;
}

.nx-quote-role { display: block; font-size: 13px; color: #8A8478; line-height: 1.5; }

.nx-quote p {
    position: relative;
    z-index: 1;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* --- Belgeler --- */
.nx-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nx-cert {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    padding: 30px 24px;
    text-align: center;
}

.nx-cert img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 14px; display: block; }

.nx-cert-ico,
.nx-cert-ico i { color: var(--primary) !important; font-size: 34px; line-height: 1; }
.nx-cert-ico { display: block; margin-bottom: 14px; }

.nx-cert strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 8px;
}

.nx-cert span { display: block; color: #777; font-size: 14px; line-height: 1.7; }

/* --- Haberler --- */
.nx-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nx-news {
    display: block;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.nx-news:hover { box-shadow: 0 14px 30px rgba(0,0,0,.08); }

.nx-news-media { overflow: hidden; }

.nx-news-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.nx-news:hover .nx-news-media img { transform: scale(1.06); }

.nx-news-body { padding: 24px 24px 26px; }

.nx-news-body h3 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 12px;
}

.nx-news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8A8478;
    font-size: 13px;
    margin-bottom: 12px;
}

.nx-news-date i { color: var(--primary); }

.nx-news-body p { color: #777; font-size: 15px; line-height: 1.75; margin: 0 0 18px; }

.nx-news-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.nx-news-more i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- CTA --- */
.nx-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    text-align: center;
}

.nx-cta-veil { position: absolute; inset: 0; background: rgba(15,14,12,.76); }
.nx-cta-inner { position: relative; z-index: 2; }

.nx-cta-inner h2 {
    font-family: "Sora", sans-serif;
    font-size: 44px;
    line-height: 54px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 14px;
}

.nx-cta-inner p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 42rem; margin: 0 auto 28px; }

/* --- Ekip --- */
.nx-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nx-member {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 24px;
}

.nx-member-photo { overflow: hidden; }

.nx-member-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.nx-member:hover .nx-member-photo img { transform: scale(1.06); }

.nx-member h4 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    margin: 20px 0 6px;
}

.nx-member span {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* --- Referanslar --- */
.nx-ref-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.nx-ref {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: box-shadow .3s ease;
}

.nx-ref:hover { box-shadow: 0 10px 24px rgba(0,0,0,.07); }

.nx-ref a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.nx-ref img {
    max-width: 100%;
    max-height: 46px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .6;
    transition: filter .3s ease, opacity .3s ease;
}

.nx-ref:hover img { filter: grayscale(0); opacity: 1; }

.nx-ref-word {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    color: #9C958A;
    text-align: center;
    text-transform: none;
    transition: color .3s ease;
}

.nx-ref:hover .nx-ref-word { color: #000; }

/* --- Responsive --- */
@media (max-width: 1330px) {
    .nx-about-media { margin-right: -15px; }
}

@media (max-width: 1200px) {
    .nx-title { font-size: 40px; line-height: 48px; }
    .nx-hero-copy h1 { font-size: 44px; line-height: 54px; }
    .nx-svc-grid { grid-template-columns: repeat(3, 1fr); }
    .nx-svc { border-bottom: 1px solid #EDEDED; }
    .nx-ref-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .nx-about { grid-template-columns: 1fr; gap: 34px; }
    .nx-about-media { margin-right: 0; }
    .nx-about-media img { height: 340px; }
    .nx-proj-grid, .nx-quote-grid, .nx-news-grid { grid-template-columns: repeat(2, 1fr); }
    .nx-cert-grid, .nx-team-grid { grid-template-columns: repeat(2, 1fr); }
    .nx-head { flex-direction: column; align-items: flex-start; gap: 18px; }
    .nx-stats-row { grid-template-columns: repeat(2, 1fr); }
    .nx-stat:nth-child(2n) { border-right: 0; }
}

@media (max-width: 640px) {
    .nx-sec, .nx-about-sec, .nx-svc-sec { padding: 48px 0; }
    .nx-title { font-size: 32px; line-height: 40px; }
    .nx-hero-copy h1 { font-size: 32px; line-height: 40px; }
    .nx-hero-slider, .nx-hero-slider .swiper-wrapper, .nx-hero-slide { min-height: 520px; }
    .nx-hero-inner { padding: 90px 0; }
    .nx-hero-nums { display: none; }
    .nx-proj-grid, .nx-svc-grid, .nx-quote-grid,
    .nx-news-grid, .nx-cert-grid, .nx-team-grid, .nx-ref-row { grid-template-columns: 1fr; }
    .nx-stats-row { grid-template-columns: repeat(2, 1fr); }
    .nx-stat { border-right: 0; }
    .nx-cta-inner h2 { font-size: 30px; line-height: 38px; }
}

/* =====================================================================
   NX doluluk düzeltmeleri — referans yoğunluğuna hizalama
   ===================================================================== */

/* Proje kartı: overlay içinde başlık + açıklama (referanstaki gibi) */
.nx-proj img { height: 360px; }

.nx-proj-body { padding: 30px 26px 26px; }

.nx-proj-txt { min-width: 0; }

.nx-proj-txt h3 { margin: 0 0 6px; }

.nx-proj-txt p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hakkımızda: görsel sağ kenardan gerçekten taşsın + daha uzun */
.nx-about-sec { padding: 80px 0; }

.nx-about { gap: 70px; }

.nx-about-media {
    /* Sag kenara tam dayansin: container kenari ile viewport kenari arasindaki bosluk kadar tas */
    margin-right: min(0px, calc((100vw - var(--container-width)) / -2 - 24px));
    width: auto;
}

.nx-about-media img { height: 540px; }

/* Hizmet kartı gövdesi daha dolu */
.nx-svc-media { height: 230px; }
.nx-svc-body { padding: 28px 26px 34px; }
.nx-svc-body p { font-size: 15px; line-height: 1.8; }

/* Yorum kartı: metin uzadı, kart nefes alsın */
.nx-quote { padding: 30px 28px 32px; }
.nx-quote p { font-size: 15px; line-height: 1.85; }

/* Haber kartı */
.nx-news-body { padding: 26px 26px 30px; }
.nx-news-body p { line-height: 1.8; }

/* Referans kutuları büyüsün (referanstaki logo kutuları gibi) */
.nx-ref { min-height: 130px; padding: 24px; }
.nx-ref-word { font-size: 15px; line-height: 1.5; }

/* Footer öncesi tam genişlik görsel bandı (referansta var) */
.nx-band {
    height: 340px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    .nx-about-media { margin-right: 0; }
    .nx-about-media img { height: 360px; }
    .nx-proj img { height: 280px; }
    .nx-band { height: 220px; background-attachment: scroll; }
}

/* ---- Büyük alanlar: slayt, kolaj, proje şeridi ---- */
.nx-sec { padding: 100px 0; }
.nx-about-sec { padding: 100px 0 80px; }
.nx-svc-sec { padding: 100px 0 90px; }

.nav-actions .nx-btn {
    height: 46px;
    padding: 0 22px;
    font-size: 13px;
}

.nx-hero {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #1c1d1b;
}
.nx-hero-slider.main-slider {
    padding-bottom: 0;
    border-radius: 0;
}
.nx-hero-slider,
.nx-hero-slider .swiper-wrapper,
.nx-hero-slide {
    min-height: calc(100vh - 128px);
    height: calc(100vh - 128px);
    border-radius: 0 !important;
    max-width: none;
}
.nx-hero-inner {
    padding: 140px 0 100px 88px;
}
.nx-hero-copy { max-width: 720px; }
.nx-hero-copy h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 1.12;
    margin-bottom: 22px;
}
.nx-hero-copy p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 46ch;
}

.nx-hero-slab {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 6;
    background: linear-gradient(180deg, rgba(166, 97, 28, 0.96) 0%, rgba(139, 58, 26, 0.92) 100%);
    clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #fff;
    pointer-events: none;
}
.nx-hero-idx {
    font-family: "Sora", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}
.nx-hero-arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}
.nx-hero-prev,
.nx-hero-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-hero-prev:hover,
.nx-hero-next:hover { background: rgba(255,255,255,.12); }
.nx-hero-nums { display: none; }

.nx-about {
    gap: 72px;
    align-items: center;
}
.nx-about-copy p {
    font-size: 17px;
    line-height: 1.9;
}
.nx-about-media {
    position: relative;
    min-height: 580px;
    margin-right: calc((100vw - min(100vw, var(--container-width, 1280px))) / -2 - 24px);
    padding: 0 0 48px 48px;
}
.nx-about-main {
    width: 100%;
    height: 580px !important;
    object-fit: cover;
    display: block;
}
.nx-about-pin {
    position: absolute;
    object-fit: cover;
    background: #fff;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(28, 29, 27, 0.18);
}
.nx-about-pin-a {
    left: 0;
    bottom: 24px;
    width: 240px;
    height: 180px;
}
.nx-about-pin-b {
    right: 10%;
    bottom: 0;
    width: 220px;
    height: 168px;
}

.nx-proj-swiper {
    overflow: hidden;
    padding: 12px 0 56px;
}
.nx-proj-swiper .swiper-slide {
    opacity: 0.42;
    transform: scale(0.88);
    filter: grayscale(0.35);
    transition: opacity .4s ease, transform .4s ease, filter .4s ease;
}
.nx-proj-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    z-index: 2;
}
.nx-proj-swiper .nx-proj {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.nx-proj-swiper .nx-proj img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.nx-proj-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.nx-proj-prev,
.nx-proj-next {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    background: #fff;
    color: #1c1d1b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-proj-prev:hover,
.nx-proj-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.nx-svc-media { height: 280px !important; }
.nx-svc-body { padding: 28px 24px 36px; }
.nx-svc-body h3 { font-size: 22px; }
.nx-svc-body p { font-size: 15px; line-height: 1.75; }

.nx-news-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.nx-cta { padding: 140px 0; }
.nx-band { height: 480px; }

@media (max-width: 991px) {
    .nx-hero-slider,
    .nx-hero-slider .swiper-wrapper,
    .nx-hero-slide {
        min-height: calc(100vh - 72px);
        height: calc(100vh - 72px);
    }
    .nx-hero-inner { padding: 110px 20px 64px; }
    .nx-hero-slab { display: none; }
    .nx-about-media { padding: 0; margin-right: 0; min-height: 0; }
    .nx-about-main { height: 380px !important; }
    .nx-about-pin { display: none; }
    .nx-proj-swiper .nx-proj img { height: 360px; }
    .nx-svc-media { height: 200px !important; }
    .nx-band { height: 240px; }
    .nx-cta { padding: 80px 0; }
}

/* ---- Yakın / büyük: navbar, yazı, kart ---- */
:root { --container-width: 1500px; }

.header-topbar {
    background: #f6f4f0 !important;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}
.nx-top {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 42px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nx-top-left,
.nx-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}
.nx-top a,
.nx-top span {
    color: #5c584f;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.nx-top i { color: var(--primary); font-size: 12px; }

.header { padding: 0 !important; }
.header .nav { min-height: 92px; gap: 18px; }
.logo-text {
    font-size: 22px !important;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-text small { font-size: 11px; letter-spacing: 0.12em; }
.nav-menu > li > a {
    font-size: 15px !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 12px 14px !important;
}
.nav-actions .nx-btn {
    height: 50px;
    padding: 0 26px;
    font-size: 13px;
    letter-spacing: 0.08em;
}
.search-trigger {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: #f3eee7;
    border: 0;
    color: var(--primary);
}

.nx-hero-slab { display: none !important; }
.nx-hero-inner { padding: 80px 0 90px 24px !important; }
.nx-hero-copy { max-width: 760px; }
.nx-hero-copy h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.6rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
}
.nx-hero-copy p {
    font-size: 18px !important;
    line-height: 1.85;
    max-width: 52ch !important;
}
.nx-hero-nums {
    display: flex !important;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    flex-direction: column;
    gap: 6px;
}
.nx-hero-num {
    background: none;
    border: 0;
    color: rgba(255,255,255,.42);
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    padding: 2px 0;
}
.nx-hero-num.is-active {
    color: #fff;
    font-size: 38px;
}

.nx-title {
    font-size: 56px !important;
    line-height: 1.12 !important;
    font-weight: 800;
}
.nx-head-desc,
.nx-about-copy p {
    font-size: 17px !important;
    line-height: 1.9;
    color: #666;
}
.nx-btn {
    min-height: 50px;
    padding: 12px 32px !important;
    font-size: 14px !important;
}

.nx-proj-swiper .swiper-slide {
    opacity: 0.5;
    transform: none;
    filter: none;
}
.nx-proj-swiper .swiper-slide-active {
    opacity: 1;
    transform: none;
    filter: none;
}
.nx-proj-swiper .nx-proj img { height: 560px; }

.nx-svc:hover .nx-svc-body,
.nx-svc:focus-visible .nx-svc-body {
    background: var(--primary);
}
.nx-svc:hover .nx-svc-body h3,
.nx-svc:hover .nx-svc-body p,
.nx-svc:focus-visible .nx-svc-body h3,
.nx-svc:focus-visible .nx-svc-body p {
    color: #fff;
}
.nx-svc-media { height: 300px !important; }
.nx-svc-body h3 { font-size: 22px; }
.nx-news-media img { height: 260px; }
.nx-quote { padding: 32px 30px 36px; }
.nx-quote p { font-size: 16px; line-height: 1.85; }

.footer-col h4 { font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col p,
.footer-col a,
.footer-col li { font-size: 15px; line-height: 1.8; }

.nx-svc-sec { padding: 100px 0 90px !important; }
.nx-stat-board {
    background: #F8F8F8;
    padding: 90px 0 100px;
    border-top: 0;
    border-bottom: 0;
    margin-top: 0;
}
.nx-stat-board .stat-board-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}
.nx-stat-board .stat-metric {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 28px 24px;
    gap: 16px;
    align-items: center;
}
.nx-stat-board .stat-metric + .stat-metric { padding-left: 24px; }
.nx-stat-board .stat-metric-copy strong {
    font-family: "Sora", sans-serif;
    font-size: 40px;
    color: #1c1d1b;
}
.nx-stat-board .stat-metric-copy span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A8478;
}
@media (max-width: 991px) {
    .nx-stat-board .stat-board-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nx-stat-board .stat-board-row { grid-template-columns: 1fr; }
}

/* ---- İç sayfalar: bant, hizmet ızgarası, iletişim, galeri ---- */
.page-header .container { text-align: center; width: 100%; }
.page-header .breadcrumb { justify-content: center; }
.page-header h1 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nx-head-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

.nx-btn-line {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.nx-btn-line:hover { background: var(--primary); color: #fff; }

.nx-svc-page { padding: 80px 0 90px !important; }
.nx-svc-page .nx-svc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
}
.nx-svc-page .nx-svc {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.nx-svc-page .nx-svc:last-child { border-right: 1px solid #EAEAEA; }
.nx-svc-page .nx-svc:hover { box-shadow: 0 16px 36px rgba(28, 29, 27, .08); }
.nx-svc-page .nx-svc:hover .nx-svc-body,
.nx-svc-page .nx-svc:focus-visible .nx-svc-body { background: #fff; }
.nx-svc-page .nx-svc:hover .nx-svc-body h3,
.nx-svc-page .nx-svc:hover .nx-svc-body h3 a,
.nx-svc-page .nx-svc:hover .nx-svc-body p,
.nx-svc-page .nx-svc:focus-visible .nx-svc-body h3,
.nx-svc-page .nx-svc:focus-visible .nx-svc-body h3 a,
.nx-svc-page .nx-svc:focus-visible .nx-svc-body p { color: inherit; }
.nx-svc-page .nx-svc-media { display: block; }
.nx-svc-page .nx-svc-body h3 a { color: #1c1d1b; }
.nx-svc-page .nx-svc-body h3 a:hover { color: var(--primary); }
.nx-svc-acts { display: flex; gap: 10px; margin-top: 20px; }
.nx-svc-acts .nx-btn {
    flex: 1;
    min-height: 44px;
    padding: 10px 14px !important;
    font-size: 12px !important;
    letter-spacing: .08em;
}

.nx-fact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.nx-fact {
    background: #fff;
    border: 1px solid #EAEAEA;
    padding: 32px 28px;
}
.nx-fact i { color: var(--primary); font-size: 22px; margin-bottom: 14px; display: block; }
.nx-fact h4 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    margin: 0 0 10px;
    color: #1c1d1b;
}
.nx-fact p { margin: 0; color: #6B6459; font-size: 15px; line-height: 1.7; }

.nx-reach-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}
.nx-reach-card {
    background: #fff;
    border: 1px solid #EAEAEA;
    padding: 26px 22px;
    min-width: 0;
}
.nx-reach-card i { color: var(--primary); font-size: 20px; margin-bottom: 12px; display: block; }
.nx-reach-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    margin: 0 0 8px;
    color: #1c1d1b;
}
.nx-reach-card p,
.nx-reach-card a { margin: 0; color: #6B6459; font-size: 15px; line-height: 1.6; overflow-wrap: anywhere; }
.nx-reach-card a:hover { color: var(--primary); }

.nx-reach-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}
.nx-reach-form {
    background: #fff;
    border: 1px solid #EAEAEA;
    padding: 32px 28px;
    min-width: 0;
}
.nx-reach-form h3 {
    font-family: "Sora", sans-serif;
    font-size: 22px;
    margin: 0 0 6px;
    color: #1c1d1b;
}
.nx-reach-form > p { color: #6B6459; margin: 0 0 22px; }
.nx-reach-form .form-control {
    background: #F8F8F8;
    color: #1c1d1b;
    border-color: #EAEAEA;
}
.nx-reach-form .form-label { color: #6B6459; }
.nx-reach-social { margin-top: 24px; }
.nx-reach-social > span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: #8A8478;
}
.nx-reach-map,
.nx-reach-map .map-container,
.nx-reach-map-empty {
    min-height: 100%;
    min-width: 0;
    background: #F1EEE9;
    border: 1px solid #EAEAEA;
}
.nx-reach-map .map-container,
.nx-reach-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.nx-reach-map-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8A8478;
    min-height: 460px;
    gap: 10px;
}
.nx-reach-map-empty i { font-size: 32px; color: var(--primary); }

.nx-shot-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.nx-shot-btn {
    background: #fff;
    border: 1px solid #EAEAEA;
    color: #6B6459;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}
.nx-shot-btn.is-on,
.nx-shot-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.nx-shot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.nx-shot {
    position: relative;
    display: block;
    overflow: hidden;
    background: #44403C;
    min-width: 0;
}
.nx-shot img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.nx-shot:hover img { transform: scale(1.06); }
.nx-shot-veil {
    position: absolute;
    inset: auto 0 0;
    padding: 18px 16px;
    background: linear-gradient(transparent, rgba(28,29,27,.78));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nx-shot-veil em { font-style: normal; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: .8; }
.nx-shot-veil strong { font-family: "Sora", sans-serif; font-size: 16px; }
.nx-shot.is-off { display: none; }

.cast-article .cast-copy { padding-top: 8px; padding-bottom: 8px; }

@media (max-width: 1100px) {
    .nx-svc-page .nx-svc-grid,
    .nx-reach-cards,
    .nx-fact-row,
    .nx-shot-grid,
    .job-bit-grid,
    .cast-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nx-reach-split { grid-template-columns: minmax(0, 1fr); }
    .job-run ol { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
    .nx-svc-page .nx-svc-grid,
    .nx-reach-cards,
    .nx-fact-row,
    .nx-shot-grid,
    .job-bit-grid,
    .cast-more-grid { grid-template-columns: minmax(0, 1fr); }
    .page-header { min-height: 240px; padding: 120px 0 48px; }
    .nx-shot img { height: 220px; }
}

.job-head { margin-bottom: 22px; }
.job-bits, .job-run { margin-top: 36px; }
.job-bits h4, .job-run h4, .cast-more h4, .cast-album h4 {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c1d1b;
    margin: 0 0 18px;
}
.job-bit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.job-bit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #F8F8F8;
    border: 1px solid #EAEAEA;
    padding: 18px 16px;
    min-width: 0;
}
.job-bit-ico {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    font-size: 16px;
}
.job-bit p {
    margin: 0;
    color: var(--paper);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}
.job-run ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.job-run li {
    background: #fff;
    border: 1px solid #EAEAEA;
    padding: 22px 18px 20px;
    min-width: 0;
}
.job-run em {
    display: block;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}
.job-run strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
    color: #1c1d1b;
}
.job-run p { margin: 0; color: #6B6459; font-size: 14px; line-height: 1.6; }
.job-touch {
    background: #F4EFE6;
    border: 1px solid #C9B69A;
    padding: 22px 20px;
    margin-top: 18px;
    color: var(--paper);
}
.job-touch h4 {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c1d1b;
}
.job-touch a, .job-touch p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--paper);
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
}
.job-touch a:hover { color: var(--primary); }
.job-touch i { color: var(--primary); margin-top: 3px; width: 16px; flex-shrink: 0; }

.cast-article .cast-hero { height: 420px; min-height: 420px; }
.cast-kicker {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    color: #1c1d1b;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 18px;
}
.cast-widget-btn {
    display: flex !important;
    width: 100%;
    margin-top: 18px;
    min-height: 46px;
    padding: 12px 16px !important;
    font-size: 12px !important;
    letter-spacing: .1em;
}
.cast-recent { list-style: none; margin: 0; padding: 0; }
.cast-recent > li + li { border-top: 1px solid #F0EBE3; }
.cast-recent a {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    color: inherit;
}
.cast-recent img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
    background: #1c1d1b;
}
.cast-recent span { min-width: 0; }
.cast-recent b {
    display: block;
    font-weight: 700;
    line-height: 1.35;
    color: #1c1d1b;
    overflow-wrap: anywhere;
}
.cast-recent small {
    display: block;
    margin: 0 0 4px;
    color: #9A9488;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.cast-recent a:hover b { color: var(--primary); }
.cast-contact > li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid #F0EBE3;
}
.cast-contact > li:first-child { border-top: 0; padding-top: 0; }
.cast-contact i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
}
.cast-contact div { min-width: 0; }
.cast-contact strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9A9488;
    margin-bottom: 3px;
}
.cast-contact a,
.cast-contact span {
    display: block;
    color: #1c1d1b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.cast-contact a:hover { color: var(--primary); }
.cast-album, .cast-more { padding: 28px 0 8px; }
.cast-album-grid, .cast-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.cast-album-grid a { display: block; overflow: hidden; background: #44403C; min-width: 0; }
.cast-album-grid img { width: 100%; height: 160px; object-fit: cover; display: block; }
.cast-more-card {
    display: block;
    background: #fff;
    border: 1px solid #E8E4DC;
    overflow: hidden;
    min-width: 0;
    color: inherit;
}
.cast-more-media { display: block; overflow: hidden; height: 160px; background: #44403C; }
.cast-more-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-more-body { display: block; padding: 14px 16px 16px; }
.cast-more-body small { display: block; color: #8A8478; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.cast-more-body strong { display: block; font-family: "Sora", sans-serif; font-size: 15px; color: #1c1d1b; line-height: 1.35; }
.cast-more-card:hover { box-shadow: 0 12px 28px rgba(28, 29, 27, .06); }
.cast-more-card:hover .cast-more-body strong { color: var(--primary); }
@media (max-width: 640px) {
    .cast-article .cast-hero { height: 240px; min-height: 240px; }
    .job-photo { height: 240px; }
}

.cast-search,
.cast-widget {
    box-shadow: 0 10px 28px rgba(28, 29, 27, 0.04);
}
.cast-pager .pagination {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.cast-pager .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #E8E4DC;
    color: #1c1d1b;
    font-weight: 700;
}
.cast-pager .page-item.active .page-link,
.cast-pager .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.api-sidebar {
    right: 18px !important;
    left: auto !important;
}

.nx-about-page {
    padding: 100px 0 90px !important;
    overflow: hidden;
}
.nx-about-page .nx-about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}
.nx-about-page .nx-about-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.nx-about-page .nx-about-copy .nx-title {
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.12;
}
.nx-about-page .nx-about-media {
    position: relative;
    margin: 0 !important;
    min-height: 0 !important;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px 0 36px !important;
    overflow: visible;
}
.nx-about-page .nx-about-media::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 30px;
    width: 64px;
    height: 64px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    z-index: 3;
    pointer-events: none;
}
.nx-about-page .nx-about-main {
    width: 100% !important;
    max-width: 100%;
    height: 420px !important;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    clip-path: none;
}
.nx-about-page .nx-about-pin-a {
    left: 18px;
    top: auto;
    bottom: 8px;
    width: 132px;
    height: 168px;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0 16px 36px rgba(28, 29, 27, 0.2), 0 0 0 3px var(--primary);
}
.nx-about-page .nx-about-pin-b {
    right: 18px;
    left: auto;
    bottom: -18px;
    width: 180px;
    height: 118px;
    z-index: 2;
    border: 6px solid #fff;
}
.nx-about-notes {
    display: grid;
    gap: 16px;
    margin: 8px 0 22px;
}
.nx-about-notes div {
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}
.nx-about-notes strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1c1d1b;
    margin-bottom: 4px;
}
.nx-about-notes p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #6B6459 !important;
}
@media (max-width: 991px) {
    .nx-about-page .nx-about-media::before { display: none; }
    .nx-about-page .nx-about-main { height: 280px !important; }
    .nx-about-page .nx-about-pin { display: none; }
}


