/* ==========================================================================
   NETİŞ Soğutma — Ana Stil (2026 tasarımı)
   Marka: logo mavisi #00a0e0 + logo kırmızısı #e04040, lacivert zemin, Poppins
   ========================================================================== */

:root {
    --brand: #00a0e0;
    --brand-dark: #0083b8;
    --brand-darker: #005f86;
    --brand-light: #e6f6fd;
    --brand-glow: #33bdf2;
    --red: #e04040;
    --red-dark: #c42f2f;
    --navy: #0b1d36;
    --navy-2: #102a4c;
    --navy-3: #16365f;
    --ink: #17202e;
    --ink-soft: #5b6779;
    --ink-mute: #8b94a5;
    --line: #e4e9f0;
    --line-strong: #cfd7e2;
    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --bg-ice: #eef5fb;
    --white: #ffffff;
    --success: #25a664;
    --wa: #25d366;
    --danger: #d8443c;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(11, 29, 54, .08);
    --shadow: 0 10px 30px rgba(11, 29, 54, .10);
    --shadow-lg: 0 24px 60px rgba(11, 29, 54, .18);
    --container: 1240px;
    --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --header-h: 82px;
    --topbar-h: 38px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--ink); margin: 0 0 .55em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
button { font-family: inherit; }
svg { flex: none; }
::selection { background: var(--brand); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 20px; }
.container--wide { max-width: 1400px; }
.section { padding-block: 72px; }
.section--sm { padding-block: 48px; }
.section--soft { background: var(--bg-soft); }
.section--ice { background: var(--bg-ice); }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Section heads --------------------------------------------------------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.sec-head__title { font-size: clamp(1.25rem, 2.2vw, 1.6rem); text-transform: uppercase; letter-spacing: .02em; margin: 0; }
.sec-head__eyebrow { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.sec-head__desc { color: var(--ink-soft); margin: 8px 0 0; max-width: 640px; }
.sec-head--center { flex-direction: column; align-items: center; text-align: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--brand); white-space: nowrap; }
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Buttons --------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 22px; border-radius: var(--radius-xs); font-weight: 600; font-size: .92rem;
    border: 2px solid transparent; cursor: pointer; line-height: 1.2; transition: all .2s var(--ease);
    white-space: nowrap; text-decoration: none;
}
.btn svg { transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(224, 64, 64, .28); }
.btn--red:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(0, 160, 224, .25); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--brand-light); color: var(--navy); }
.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1fb457; color: #fff; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: .82rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; }

/* Topbar ---------------------------------------------------------------- */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .78); font-size: .78rem; height: var(--topbar-h); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.topbar__text { font-weight: 500; letter-spacing: .01em; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__links { display: flex; gap: 18px; }
.topbar__links a { color: rgba(255, 255, 255, .78); font-weight: 500; }
.topbar__links a:hover { color: #fff; }
.topbar__social { display: flex; gap: 6px; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .14); }
.topbar__social a, .topbar__search { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; color: rgba(255, 255, 255, .8); background: transparent; border: 0; cursor: pointer; transition: all .2s; }
.topbar__social a:hover, .topbar__search:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.topbar__search { margin-left: 4px; }

/* Header ---------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.header.is-scrolled { box-shadow: 0 8px 28px rgba(11, 29, 54, .10); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { width: auto; height: 56px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
    display: inline-flex; align-items: center; gap: 4px; padding: 10px 9px; font-size: .76rem; font-weight: 700; white-space: nowrap;
    letter-spacing: .03em; text-transform: uppercase; color: var(--ink); border-radius: var(--radius-xs); position: relative;
}
.nav__link::after { content: ''; position: absolute; left: 9px; right: 9px; bottom: 4px; height: 2px; background: var(--brand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease); }
.nav__link:hover { color: var(--brand); }
.nav__link.is-active { color: var(--brand); }
.nav__link.is-active::after, .nav__item:hover > .nav__link::after { transform: scaleX(1); }
.nav__caret { opacity: .55; transition: transform .2s; }
.nav__item:hover > .nav__link .nav__caret { transform: rotate(180deg); }
.nav__sub {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; background: #fff; border-radius: 10px;
    box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all .22s var(--ease); z-index: 10; border-top: 3px solid var(--brand);
}
.nav__sub::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__item:hover > .nav__sub, .nav__item.is-open > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 6px; font-size: .86rem; font-weight: 500; color: var(--ink); }
.nav__sub a:hover { background: var(--brand-light); color: var(--brand-dark); }
.nav__sub a svg { color: var(--brand); }
.nav__sub--cols { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; }
.nav__item:hover > .nav__sub--cols { display: grid; }
.header__cta { display: flex; align-items: center; gap: 18px; flex: none; }
.header__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 700; font-size: .92rem; }
.header__phone svg { color: var(--brand); }
.header__phone:hover { color: var(--brand); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; color: var(--navy); }

/* Mobile nav (off-canvas) */
.mnav { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.mnav.is-open { visibility: visible; }
.mnav__backdrop { position: absolute; inset: 0; background: rgba(11, 29, 54, .55); opacity: 0; transition: opacity .25s; }
.mnav.is-open .mnav__backdrop { opacity: 1; }
.mnav__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 92vw); background: #fff; transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mnav.is-open .mnav__panel { transform: translateX(0); }
.mnav__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.mnav__head img { height: 40px; width: auto; }
.mnav__close { width: 40px; height: 40px; border: 0; background: var(--bg-soft); border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.mnav__list { list-style: none; margin: 0; padding: 8px 0; }
.mnav__list > li { border-bottom: 1px solid var(--line); }
.mnav__link { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.mnav__link.is-active { color: var(--brand); }
.mnav__toggle { width: 38px; height: 38px; border: 0; background: transparent; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); cursor: pointer; transition: transform .2s; }
.mnav__sub { list-style: none; margin: 0; padding: 0 0 8px; display: none; background: var(--bg-soft); }
.mnav__sub a { display: block; padding: 9px 20px 9px 34px; font-size: .88rem; color: var(--ink-soft); }
.mnav__sub a:hover { color: var(--brand); }
li.is-open > .mnav__sub { display: block; }
li.is-open .mnav__toggle { transform: rotate(180deg); }
.mnav__foot { margin-top: auto; padding: 18px 20px; display: grid; gap: 10px; background: var(--bg-soft); }
.mnav__foot .btn { width: 100%; }

/* Search overlay */
.search-ov { position: fixed; inset: 0; z-index: 95; background: rgba(11, 29, 54, .92); display: none; align-items: flex-start; justify-content: center; padding: 14vh 20px 40px; }
.search-ov.is-open { display: flex; }
.search-ov__box { width: 100%; max-width: 720px; }
.search-ov__form { display: flex; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.search-ov__form input { flex: 1; border: 0; padding: 18px 20px; font: inherit; font-size: 1.05rem; outline: none; }
.search-ov__form button { border: 0; background: var(--brand); color: #fff; padding: 0 26px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.search-ov__hint { color: rgba(255, 255, 255, .7); margin-top: 14px; font-size: .88rem; }
.search-ov__close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.search-ov__quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.search-ov__quick a { color: #fff; background: rgba(255, 255, 255, .12); padding: 6px 12px; border-radius: 30px; font-size: .82rem; }
.search-ov__quick a:hover { background: var(--brand); }

/* Hero slider ----------------------------------------------------------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; min-height: 640px; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s var(--ease), visibility .9s; }
.hero__slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 7s linear; }
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 22, 44, .92) 0%, rgba(8, 22, 44, .78) 35%, rgba(8, 22, 44, .25) 70%, rgba(8, 22, 44, .35) 100%); }
.hero__inner { position: relative; z-index: 2; min-height: 640px; display: grid; grid-template-columns: minmax(0, 620px) 1fr; align-items: center; padding-block: 90px 110px; gap: 30px; }
.hero__eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #dbeefb; margin-bottom: 14px; opacity: .9; }
.hero__title { color: #fff; font-size: clamp(2.2rem, 5.2vw, 4.2rem); line-height: 1.06; margin: 0 0 20px; letter-spacing: -.02em; font-weight: 800; }
.hero__title .accent { display: block; background: linear-gradient(90deg, #35bdf5, #7fd7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__text { font-size: 1.02rem; color: rgba(255, 255, 255, .86); max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__play { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 500; font-size: .9rem; background: none; border: 0; cursor: pointer; padding: 0; }
.hero__play span.ico { width: 50px; height: 50px; border-radius: 50%; background: #fff; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0, 0, 0, .25); transition: transform .2s; }
.hero__play:hover span.ico { transform: scale(1.06); }
.hero__side { justify-self: end; align-self: start; text-align: right; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(.9rem, 1.25vw, 1.15rem); line-height: 1.35; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .35); margin-top: 30px; }
.hero__side span { display: block; }
.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--navy); border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0, 0, 0, .25); transition: all .2s; }
.hero__nav:hover { background: var(--brand); color: #fff; }
.hero__nav--prev { left: 26px; }
.hero__nav--next { right: 26px; }
.hero__counter { position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 5; display: flex; align-items: center; gap: 14px; font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .55); letter-spacing: .06em; }
.hero__counter button { background: none; border: 0; color: inherit; cursor: pointer; padding: 4px; font: inherit; display: flex; align-items: center; gap: 14px; }
.hero__counter button.is-active { color: #fff; }
.hero__counter button + button::before { content: ''; width: 34px; height: 1px; background: rgba(255, 255, 255, .35); }
.hero__counter button.is-active + button::before { background: #fff; }

/* Trust band ------------------------------------------------------------ */
.trust { position: relative; z-index: 6; margin-top: -58px; }
.trust__box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(5, 1fr); padding: 6px 10px; }
.trust__item { display: flex; align-items: center; gap: 12px; padding: 18px 16px; position: relative; }
.trust__item + .trust__item::before { content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--line); }
.trust__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.trust__item b { display: block; font-size: 1rem; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.trust__item span { display: block; font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }

/* Product category cards ----------------------------------------------- */
.pcards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.pcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s var(--ease); position: relative; color: var(--ink); }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.pcard__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.pcard__img img, .pcard__img picture, .pcard__img picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--brand); background: linear-gradient(135deg, #e6f6fd, #cfeaf7); }
.pcard__body { padding: 16px 16px 44px; }
.pcard__body h3 { font-size: .95rem; margin: 0; line-height: 1.35; }
.pcard__arrow { position: absolute; right: 14px; bottom: 12px; width: 26px; height: 26px; border: 1.5px solid var(--brand); border-radius: 5px; color: var(--brand); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.pcard:hover .pcard__arrow { background: var(--brand); color: #fff; }

/* Split: power + values ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.split__power { position: relative; background: var(--navy); color: #fff; padding: 64px 48px 64px 0; overflow: hidden; }
.split__power::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, #0b1d36 0%, #123a6a 60%, #1c5a94 100%); }
.split__power-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .32; mix-blend-mode: screen; }
.split__power::after { content: ''; position: absolute; top: 0; bottom: 0; right: -60px; width: 120px; background: #fff; transform: skewX(-9deg); }
.split__power-ice { position: absolute; right: 8%; top: 10%; width: 280px; opacity: .9; pointer-events: none; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35)); }
.split__power .container-half { position: relative; z-index: 2; max-width: calc(var(--container) / 2); margin-left: auto; padding-left: 20px; padding-right: 20px; }
.split__eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #9fd9f7; display: block; margin-bottom: 8px; }
.split__title { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 14px; }
.split__text { color: rgba(255, 255, 255, .85); max-width: 400px; margin-bottom: 26px; }
.split__values { padding: 64px 0 64px 48px; }
.split__values .container-half { max-width: calc(var(--container) / 2); margin-right: auto; padding-left: 20px; padding-right: 20px; }
.values__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.values__head img { height: 44px; width: auto; }
.values__head small { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-soft); text-transform: uppercase; }
.values__head h2 { font-size: clamp(1.15rem, 2vw, 1.5rem); text-transform: uppercase; margin: 0; letter-spacing: .02em; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; list-style: none; margin: 0; padding: 0; }
.values li { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.values__ico { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--brand); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* Sectors --------------------------------------------------------------- */
.scards { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.scard { color: var(--ink); display: block; }
.scard__img { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-soft); position: relative; }
.scard__img img, .scard__img picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.scard:hover .scard__img img { transform: scale(1.07); }
.scard__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(150deg, var(--navy-2), var(--brand)); }
.scard__ph::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 55%); }
.scard__ph svg { position: relative; z-index: 1; }
.scard h3 { font-size: .86rem; margin: 10px 0 0; font-weight: 700; }
.scard:hover h3 { color: var(--brand); }

/* Stats band ------------------------------------------------------------ */
.stats { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0b1d36 0%, #0f2a4c 55%, #163a66 100%); }
.stats__bg { position: absolute; top: 0; bottom: 0; right: 0; width: 46%; background-size: cover; background-position: center; opacity: .55; -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%); mask-image: linear-gradient(90deg, transparent, #000 35%); }
.stats__peaks { position: absolute; right: 0; bottom: 0; width: 46%; height: 100%; opacity: .35; pointer-events: none; }
.stats__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 30px; padding-block: 34px; }
.stats__title { font-size: 1.4rem; line-height: 1.2; color: #fff; margin: 0; font-weight: 700; }
.stats__title span { display: block; }
.stats__list { display: grid; grid-template-columns: repeat(5, auto); gap: 10px 14px; margin: 0; padding: 0; list-style: none; }
.stats__list li { text-align: center; padding: 6px 14px; border-left: 1px solid rgba(255, 255, 255, .15); }
.stats__list li:first-child { border-left: 0; }
.stats__list svg { color: #fff; margin: 0 auto 6px; opacity: .95; }
.stats__list b { display: block; font-size: 1.25rem; line-height: 1.15; }
.stats__list span { display: block; font-size: .74rem; color: rgba(255, 255, 255, .8); }
.stats__side { text-align: right; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; line-height: 1.35; font-size: clamp(.9rem, 1.2vw, 1.1rem); }
.stats__side span { display: block; }

/* Projects carousel ----------------------------------------------------- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 6px 2px 10px; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__nav { position: absolute; top: 40%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); box-shadow: var(--shadow); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; z-index: 3; transition: all .2s; }
.carousel__nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.carousel__nav--prev { left: -18px; }
.carousel__nav--next { right: -18px; }
.pjcard { flex: 0 0 calc((100% - 72px) / 5); min-width: 210px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; color: var(--ink); transition: all .25s var(--ease); }
.pjcard:hover { box-shadow: var(--shadow); transform: translateY(-4px); color: var(--ink); }
.pjcard__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.pjcard__img img, .pjcard__img picture img { width: 100%; height: 100%; object-fit: cover; }
.pjcard__body { padding: 12px 14px; }
.pjcard__body h3 { font-size: .84rem; margin: 0; line-height: 1.4; }
.pjcard__body span { font-size: .74rem; color: var(--ink-soft); }

/* CTA form band --------------------------------------------------------- */
.ctaform { background: var(--bg-ice); position: relative; overflow: hidden; }
.ctaform::before { content: ''; position: absolute; left: -10%; top: -40%; width: 45%; height: 180%; background: radial-gradient(ellipse at center, rgba(0, 160, 224, .12), transparent 65%); pointer-events: none; }
.ctaform__inner { position: relative; display: grid; grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr); align-items: center; gap: 28px; padding-block: 40px; }
.ctaform__title { font-size: clamp(1.15rem, 2vw, 1.45rem); margin: 0 0 6px; line-height: 1.3; }
.ctaform__title span { display: block; }
.ctaform__text { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.qform { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; }
.qform__field { position: relative; }
.qform__field svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); pointer-events: none; }
.qform input { width: 100%; height: 50px; padding: 0 14px 0 42px; border: 1px solid var(--line-strong); border-radius: var(--radius-xs); font: inherit; font-size: .9rem; background: #fff; outline: none; transition: border .2s, box-shadow .2s; }
.qform input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 160, 224, .15); }
.qform .btn { height: 50px; }
.qform__msg { grid-column: 1 / -1; font-size: .85rem; margin: 2px 0 0; }
.qform__msg.ok { color: var(--success); }
.qform__msg.err { color: var(--danger); }

/* Footer ---------------------------------------------------------------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .78); font-size: .88rem; }
.footer a { color: rgba(255, 255, 255, .78); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1fr 1.25fr; gap: 34px; padding-block: 56px 40px; }
.footer__logo img { height: 56px; width: auto; }
.footer__tag { margin: 18px 0 0; max-width: 240px; color: rgba(255, 255, 255, .72); }
.footer h4 { color: #fff; font-size: .92rem; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li + li { margin-top: 9px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { color: #fff; margin-top: 3px; }
.footer__social { display: flex; gap: 8px; justify-content: flex-end; }
.footer__social a { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .08); color: #fff; }
.footer__social a:hover { background: var(--brand); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; }
.footer__legal { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer__legal a + a::before { content: '|'; margin-right: 8px; color: rgba(255, 255, 255, .3); }
.footer__credit { color: rgba(255, 255, 255, .55); }
.footer__credit a { color: rgba(255, 255, 255, .75); }

/* Floating actions ------------------------------------------------------ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, .5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* Video modal ----------------------------------------------------------- */
.vmodal { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, .85); display: none; align-items: center; justify-content: center; padding: 20px; }
.vmodal.is-open { display: flex; }
.vmodal__box { width: 100%; max-width: 960px; aspect-ratio: 16/9; background: #000; border-radius: 10px; overflow: hidden; }
.vmodal__box iframe { width: 100%; height: 100%; border: 0; }
.vmodal__close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .15); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

/* ==========================================================================
   İç sayfalar
   ========================================================================== */
.page-hero { position: relative; background: var(--navy); color: #fff; padding-block: 58px 54px; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, #0b1d36 0%, #12325a 60%, #1a4d80 100%); }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000); mask-image: linear-gradient(90deg, transparent 20%, #000); }
.page-hero__peaks { position: absolute; right: 0; bottom: 0; width: 50%; height: 100%; opacity: .25; pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 8px 0 0; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.page-hero__lead { color: rgba(255, 255, 255, .82); max-width: 700px; margin: 12px 0 0; font-size: 1rem; }
.page-hero--slim { padding-block: 40px 36px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .78rem; color: rgba(255, 255, 255, .65); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; opacity: .6; }
.breadcrumb a { color: rgba(255, 255, 255, .85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.layout__main { min-width: 0; }
.side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.side-card--navy { background: linear-gradient(140deg, var(--navy), var(--navy-3)); color: #fff; border: 0; }
.side-card--navy h3 { color: #fff; }
.side-card--navy p { color: rgba(255, 255, 255, .8); }
.side-card--navy .btn + .btn { margin-top: 10px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li + li { border-top: 1px solid var(--line); }
.side-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; color: var(--ink); font-size: .9rem; font-weight: 500; }
.side-list a:hover, .side-list a.is-active { color: var(--brand); }
.side-list a svg { color: var(--ink-mute); }

.prose { font-size: 1rem; line-height: 1.8; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.4em; }
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--radius-sm); margin: 1.2em 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: .92rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.prose th { background: var(--bg-soft); }
.prose blockquote { margin: 1.4em 0; padding: 14px 20px; border-left: 4px solid var(--brand); background: var(--brand-light); border-radius: 0 8px 8px 0; }
.lead { font-size: 1.08rem; color: var(--ink-soft); }
.hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow); }
.hero-img img { width: 100%; }

/* Lead form (sidebar / contact) */
.lform { display: grid; gap: 10px; }
.lform input, .lform textarea, .lform select { width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-xs); font: inherit; font-size: .9rem; background: #fff; outline: none; transition: border .2s, box-shadow .2s; }
.lform input:focus, .lform textarea:focus, .lform select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 160, 224, .15); }
.lform textarea { resize: vertical; min-height: 100px; }
.lform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lform__sub { font-size: .86rem; color: var(--ink-soft); margin-bottom: 10px; }
.lform__consent { font-size: .76rem; color: var(--ink-mute); display: flex; gap: 8px; align-items: flex-start; }
.lform__consent input { width: auto; margin-top: 3px; }
.alert { padding: 12px 16px; border-radius: var(--radius-xs); font-size: .9rem; margin-bottom: 14px; }
.alert--ok { background: #e7f7ee; color: #157347; border: 1px solid #b7e4c7; }
.alert--err { background: #fdecec; color: #a12727; border: 1px solid #f5c2c2; }

/* Generic grids/cards */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: all .25s var(--ease); color: var(--ink); display: block; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); border-color: transparent; }
.card__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; }
.card__link { font-weight: 600; font-size: .86rem; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }

.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--ink); display: flex; flex-direction: column; transition: all .25s var(--ease); }
.tile:hover { box-shadow: var(--shadow); transform: translateY(-4px); color: var(--ink); border-color: transparent; }
.tile__img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.tile__img img, .tile__img picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tile:hover .tile__img img { transform: scale(1.05); }
.tile__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--brand); background: linear-gradient(135deg, #e6f6fd, #cfeaf7); }
.tile__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile__tag { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }
.tile__body h3 { font-size: 1rem; margin: 0; line-height: 1.4; }
.tile__body p { font-size: .88rem; color: var(--ink-soft); margin: 0; }
.tile__foot { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--ink-mute); }

/* Region cloud */
.region-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.region-cloud a { display: inline-block; padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 30px; font-size: .84rem; color: var(--ink); background: #fff; transition: all .2s; }
.region-cloud a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.region-cloud a.is-brand { background: var(--brand); color: #fff; border-color: var(--brand); }

/* FAQ */
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; border: 0; background: transparent; font: inherit; font-weight: 600; text-align: left; cursor: pointer; color: var(--ink); }
.faq__q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; transition: transform .25s; }
.faq__a { display: none; padding: 0 20px 18px; color: var(--ink-soft); font-size: .93rem; }
.faq__item.is-open .faq__a { display: block; }
.faq__item.is-open .faq__q .plus { transform: rotate(45deg); }
.faq__item.is-open .faq__q { color: var(--brand); }

/* Meta / chips */
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; font-size: .8rem; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 30px; background: rgba(255, 255, 255, .12); color: #fff; }
.chip--light { background: var(--brand-light); color: var(--brand-dark); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: var(--radius-xs); font-size: .88rem; color: var(--ink); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .is-active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Product detail */
.pdetail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.pdetail__gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdetail__main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.pdetail__main img { width: 100%; height: 100%; object-fit: contain; }
.pdetail__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pdetail__thumbs button { width: 70px; height: 70px; border: 2px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; padding: 0; }
.pdetail__thumbs button.is-active { border-color: var(--brand); }
.pdetail__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdetail__cat { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: var(--brand); }
.pdetail__price { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 10px 0 18px; }
.features { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 8px; }
.features li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.features li svg { color: var(--success); margin-top: 3px; }
.pdetail__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pdetail__specs { margin-top: 30px; }

/* Project detail */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; display: block; background: var(--bg-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery a:hover img { transform: scale(1.05); }
.info-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 0 0 22px; padding: 14px 18px; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: .88rem; }
.info-row b { color: var(--navy); }

/* Logo wall */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-wall__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; filter: grayscale(1); opacity: .75; transition: all .25s; }
.logo-wall__item:hover { filter: none; opacity: 1; box-shadow: var(--shadow); }
.logo-wall__item img { max-height: 70px; width: auto; object-fit: contain; }

/* Careers */
.job { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; transition: all .2s; }
.job:hover { box-shadow: var(--shadow); border-color: transparent; }
.job h3 { margin: 0 0 6px; font-size: 1.05rem; }
.job__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--ink-soft); }
.job__meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Documents */
.docs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.doc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; color: var(--ink); transition: all .25s; display: block; }
.doc:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.doc__img { aspect-ratio: 3/4; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.doc__img img { width: 100%; height: 100%; object-fit: cover; }
.doc__img svg { color: var(--brand); }
.doc__body { padding: 14px; font-size: .88rem; font-weight: 600; }

/* Lightbox */
.lbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, .88); display: none; align-items: center; justify-content: center; padding: 30px; }
.lbox.is-open { display: flex; }
.lbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lbox__close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .15); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.cinfo { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.cinfo li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.cinfo .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.cinfo b { display: block; color: var(--navy); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.cinfo a { color: var(--ink); font-weight: 500; }
.cinfo a:hover { color: var(--brand); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--bg-soft); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Sitemap page */
.sitemap-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sitemap-cols h3 { font-size: 1rem; padding-bottom: 8px; border-bottom: 2px solid var(--brand-light); margin-bottom: 12px; }
.sitemap-cols ul { list-style: none; margin: 0; padding: 0; columns: 1; }
.sitemap-cols li { margin-bottom: 6px; font-size: .9rem; }
.sitemap-cols a { color: var(--ink); }
.sitemap-cols a:hover { color: var(--brand); }
.sitemap-cols ul.is-dense { columns: 2; }

/* CTA block (inner pages bottom) */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-3)); color: #fff; border-radius: var(--radius); padding: 40px 44px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 160, 224, .45), transparent 65%); }
.cta-band h2 { color: #fff; margin: 0 0 6px; font-size: 1.5rem; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, .8); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Steps (services index) */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px 22px; color: var(--ink); transition: all .25s; display: block; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 14px; right: 16px; font-size: 1.6rem; font-weight: 800; color: var(--brand-light); line-height: 1; }
.step__ico { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .86rem; color: var(--ink-soft); margin: 0; }

/* Errors */
.error-page { text-align: center; padding-block: 90px; }
.error-page b { display: block; font-size: 6rem; font-weight: 800; color: var(--brand-light); line-height: 1; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__bg { transition: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
    .carousel__nav--prev { left: 4px; }
    .carousel__nav--next { right: 4px; }
    .header__phone span { display: none; }
    .trust__item b, .trust__item span { white-space: normal; }
}
@media (max-width: 1100px) {
    .nav__link { padding: 10px 8px; font-size: .74rem; }
    .header__phone span { display: none; }
    .pcards { grid-template-columns: repeat(3, 1fr); }
    .scards { grid-template-columns: repeat(4, 1fr); }
    .trust__box { grid-template-columns: repeat(3, 1fr); }
    .trust__item:nth-child(4)::before { display: none; }
    .stats__inner { grid-template-columns: 1fr; text-align: center; }
    .stats__title span { display: inline; }
    .stats__list { grid-template-columns: repeat(5, 1fr); }
    .stats__side { text-align: center; }
    .stats__side span { display: inline; margin: 0 6px; }
    .stats__bg, .stats__peaks { width: 100%; opacity: .2; }
    .pjcard { flex-basis: calc((100% - 36px) / 3); }
    .logo-wall { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .docs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    :root { --header-h: 70px; }
    .topbar__text { display: none; }
    .topbar__inner { justify-content: flex-end; }
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .header__cta .btn { display: none; }
    .logo img { height: 46px; }
    .hero { min-height: 560px; }
    .hero__inner { grid-template-columns: 1fr; min-height: 560px; padding-block: 70px 100px; }
    .hero__side { display: none; }
    .hero__nav { display: none; }
    .hero__counter { bottom: 80px; }
    .split { grid-template-columns: 1fr; }
    .split__power { padding: 54px 0; }
    .split__power::after { display: none; }
    .split__power .container-half, .split__values .container-half { max-width: var(--container); margin: 0 auto; }
    .split__values { padding: 54px 0; }
    .layout { grid-template-columns: 1fr; }
    .side { position: static; }
    .pdetail { grid-template-columns: 1fr; }
    .pdetail__gallery { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__social { justify-content: flex-start; }
    .ctaform__inner { grid-template-columns: 1fr; }
    .qform { grid-template-columns: 1fr 1fr; }
    .qform .btn { grid-column: 1 / -1; }
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .sitemap-cols { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    body { font-size: 15px; }
    .section { padding-block: 52px; }
    .hero { min-height: 520px; }
    .hero__inner { padding-block: 60px 96px; min-height: 520px; }
    .hero__title { font-size: 2.2rem; }
    .hero__actions { gap: 16px; }
    .trust { margin-top: -40px; }
    .trust__box { grid-template-columns: 1fr; padding: 6px; }
    .trust__item { padding: 12px 16px; }
    .trust__item + .trust__item::before { top: 0; bottom: auto; left: 16px; right: 16px; width: auto; height: 1px; }
    .pcards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .scards { grid-template-columns: repeat(2, 1fr); }
    .stats__list { grid-template-columns: repeat(2, 1fr); }
    .stats__list li { border-left: 0; }
    .pjcard { flex-basis: 78%; }
    .qform { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 26px; padding-block: 40px 28px; }
    .footer__bottom { justify-content: center; text-align: center; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .lform__row { grid-template-columns: 1fr; }
    .logo-wall { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .docs { grid-template-columns: repeat(2, 1fr); }
    .sitemap-cols { grid-template-columns: 1fr; }
    .job { flex-direction: column; align-items: flex-start; }
    .cta-band { padding: 28px 22px; }
    .values { grid-template-columns: 1fr; }
    .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}
