:root {
    --ink: #121212;
    --ink-soft: #2a2a2a;
    --steel: #6b6b6b;
    --mist: #f2f2f0;
    --paper: #fafaf8;
    --line: #d8d8d4;
    --signal: #e85d04;
    --signal-deep: #c44d03;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Figtree', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

/* Nav */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 18px 0;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav.menu-open { z-index: 200; }
.nav-inner {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 14px;
    color: var(--steel);
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--signal); }
.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--signal);
    color: #fff !important;
    padding: 12px 18px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.nav-call:hover { background: var(--signal-deep); transform: translateY(-1px); }
.nav-call svg { width: 18px; height: 18px; }
.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-backdrop { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-call {
    background: var(--signal);
    color: #fff;
    box-shadow: 0 10px 28px rgba(232, 93, 4, 0.28);
}
.btn-call:hover {
    background: var(--signal-deep);
    transform: translateY(-2px);
}
.btn-call-lg {
    padding: 20px 36px;
    font-size: 1.1rem;
    min-height: 60px;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    min-height: 92dvh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 55% at 80% 20%, rgba(232, 93, 4, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
        linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 45%, #121212 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-18deg, transparent, transparent 42px, rgba(255,255,255,0.025) 42px, rgba(255,255,255,0.025) 43px);
}
.hero-body {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0 72px;
}
.hero-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.hero-brand span { display: block; color: var(--signal); }
.hero-line {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    max-width: 30ch;
    margin-bottom: 14px;
}
.hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 38ch;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--signal);
    padding-bottom: 2px;
    transition: color 0.2s;
}
.hero-phone:hover { color: var(--signal); }

/* Page hero (inner) */
.page-hero {
    padding: 140px 0 56px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(232, 93, 4, 0.08) 0%, transparent 50%),
        var(--mist);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--steel);
    font-size: 1.08rem;
    max-width: 40rem;
}

/* Sections */
.block { padding: 88px 0; }
.block-head { margin-bottom: 40px; max-width: 36rem; }
.block-head h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 12px;
}
.block-head p { color: var(--steel); font-size: 1.05rem; }

.offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.offer-panel {
    padding: clamp(40px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
.offer-panel::before {
    content: attr(data-num);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 8rem);
    line-height: 0.8;
    opacity: 0.08;
    pointer-events: none;
}
.offer-yeni { background: var(--ink); color: #fff; }
.offer-cikma { background: var(--signal); color: #fff; }
.offer-panel h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: 0.04em;
}
.offer-panel p { opacity: 0.9; max-width: 34ch; }

.ship {
    background: var(--ink);
    color: #fff;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.ship::after {
    content: '81';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 26vw, 20rem);
    line-height: 0.75;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
}
.ship-inner { position: relative; z-index: 1; max-width: 36rem; }
.ship-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 16px;
}
.ship-inner h2 em { font-style: normal; color: var(--signal); }
.ship-inner p { color: rgba(255,255,255,0.68); margin-bottom: 28px; font-size: 1.08rem; }

.info-list { border-top: 1px solid var(--line); }
.info-row {
    display: grid;
    grid-template-columns: minmax(160px, 260px) 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.info-row h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}
.info-row p { color: var(--steel); }

/* Articles */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.article-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s;
    min-height: 220px;
}
.article-card:hover {
    border-color: var(--signal);
    transform: translateY(-3px);
}
.article-card time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--signal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.article-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
}
.article-card p {
    color: var(--steel);
    font-size: 0.95rem;
    flex: 1;
}
.article-card .more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
}

.article-detail {
    max-width: 720px;
}
.article-detail time {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--signal);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.article-detail h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 28px;
}
.article-detail .body p {
    color: var(--steel);
    font-size: 1.08rem;
    margin-bottom: 18px;
}
.article-back {
    display: inline-flex;
    margin-bottom: 28px;
    font-weight: 700;
    text-decoration: none;
    color: var(--signal);
}

/* Contact */
.contact-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.contact-main {
    background: var(--ink);
    color: #fff;
    padding: clamp(36px, 5vw, 56px);
}
.contact-main h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 14px;
}
.contact-main p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    max-width: 34ch;
}
.contact-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.04em;
    color: var(--signal);
    text-decoration: none;
    margin-bottom: 24px;
}
.contact-side {
    border: 1px solid var(--line);
    padding: clamp(28px, 4vw, 40px);
    background: var(--mist);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.contact-side h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}
.contact-side p { color: var(--steel); font-size: 0.98rem; }

.cta-band {
    padding: 72px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--paper), var(--mist));
}
.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}
.cta-band p { color: var(--steel); margin-bottom: 28px; }
.cta-band .hero-actions { justify-content: center; }

/* Footer */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    padding: 48px 0 120px;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}
.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}
.footer-meta { font-size: 0.9rem; max-width: 28ch; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
}
.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 600;
}
.footer-links a:hover { color: var(--signal); }

/* Float / dock */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--signal);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 22px;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.4);
    transition: transform 0.25s var(--ease), background 0.2s;
}
.float-call:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--signal-deep);
}
.float-call svg { width: 22px; height: 22px; }
.mobile-dock { display: none; }

/* Mobile */
@media (max-width: 900px) {
    .article-grid { grid-template-columns: 1fr 1fr; }
    .contact-panel { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .wrap, .nav-inner, .hero-body { width: min(1120px, calc(100% - 32px)); }
    .menu-btn {
        display: flex;
        position: relative;
        z-index: 120;
        border-radius: 10px;
    }
    .nav-brand { position: relative; z-index: 120; }
    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 105;
        background: rgba(8, 8, 8, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s var(--ease);
    }
    .menu-backdrop.on { opacity: 1; pointer-events: auto; }
    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 110;
        width: 100%;
        height: 100dvh;
        background:
            radial-gradient(ellipse 80% 40% at 100% 0%, rgba(232, 93, 4, 0.18) 0%, transparent 50%),
            var(--ink);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: max(88px, env(safe-area-inset-top)) 28px max(40px, env(safe-area-inset-bottom));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links a {
        color: #fff !important;
        padding: 16px 4px;
        font-size: 1.65rem;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 0.06em;
        font-weight: 400;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-call {
        margin-top: 28px;
        justify-content: center;
        padding: 18px 24px !important;
        font-family: 'Figtree', sans-serif !important;
        font-size: 1rem !important;
        letter-spacing: 0 !important;
        border-bottom: none !important;
    }
    .nav.menu-open .nav-brand { color: #fff; }
    .nav.menu-open .menu-btn { border-color: rgba(255,255,255,0.35); }
    .nav.menu-open .menu-btn span { background: #fff; }

    .hero { min-height: 100svh; align-items: end; }
    .hero-body { padding: 100px 0 calc(120px + env(safe-area-inset-bottom)); }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; min-height: 56px; font-size: 1.05rem; }
    .hero-phone { font-size: 1.8rem; }

    .page-hero { padding: 120px 0 40px; }
    .block { padding: 64px 0; }
    .offer { grid-template-columns: 1fr; }
    .offer-panel { min-height: 0; padding: 40px 24px; }
    .info-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
    .article-grid { grid-template-columns: 1fr; }
    .cta-band .btn { width: 100%; min-height: 56px; }
    .contact-main .btn { width: 100%; min-height: 56px; }
    .footer { padding: 40px 0 calc(110px + env(safe-area-inset-bottom)); }
    .footer-row { flex-direction: column; align-items: flex-start; }
    .footer-links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 4px 16px; }

    .float-call { display: none; }
    .mobile-dock {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 150;
        transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    }
    .mobile-dock a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 56px;
        background: var(--signal);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05rem;
        border-radius: 12px;
        box-shadow: 0 12px 36px rgba(232, 93, 4, 0.4);
    }
    .mobile-dock a:active { transform: scale(0.98); }
    .mobile-dock svg { width: 22px; height: 22px; }
    body:has(.nav-links.open) .mobile-dock {
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
    }
}
@media (max-width: 380px) {
    .hero-brand { font-size: 2.8rem; }
    .nav-brand { font-size: 1.2rem; }
}
