/* ==========================================================================
   04 — BÖLÜMLER
   Hero, hizmetler, neden biz, süreç, CTA bandı, iletişim
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* Arka plan görseli artık gerçek bir <img> — LCP ölçümü ve srcset için */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Sola hizalı: başlık metni görselin sakin sol tarafına denk gelsin,
       sağdaki yüzler metnin altında kalmasın */
    object-position: 0% center;
}

/* Metnin okunabilirliği için iki katmanlı gradient */
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 25, 41, .93), rgba(5, 25, 41, .70) 48%, rgba(5, 25, 41, .18)),
        linear-gradient(180deg, rgba(5, 25, 41, .35), transparent 30%, rgba(5, 25, 41, .78));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 170px 0 230px;
}

.hero .eyebrow {
    color: #bdf4f0;
}

.lead {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(18px, 2vw, 22px);
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* İstatistik şeridi */
.stats-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 3;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .95);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stat {
    padding: 21px 24px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-size: 26px;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
}

.stat span {
    font-size: 13px;
    color: var(--muted);
}

/* Rakam yerine güven ifadesi gösteren varyant: başlık küçülür, üstüne ikon gelir.
   Sayısal iddia kullanılmadığı için 26px'lik rakam tipografisi burada fazla kaçıyor. */
.stats.is-facts .stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 18px 22px;
}

.stats.is-facts .stat .i {
    width: 20px;
    height: 20px;
    color: var(--teal);
    margin-bottom: 2px;
}

.stats.is-facts .stat strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.stats.is-facts .stat span {
    font-size: 12.5px;
    line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Hizmetler
   -------------------------------------------------------------------------- */

.services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* --------------------------------------------------------------------------
   Neden biz
   -------------------------------------------------------------------------- */

.trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.trust p {
    color: var(--muted);
    margin-top: 20px;
}

.photos {
    position: relative;
    min-height: 600px;
}

.photos .main {
    width: 82%;
    height: 530px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.photos .small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 270px;
    object-fit: cover;
    border-radius: 25px;
    border: 8px solid var(--soft);
    box-shadow: var(--shadow);
}

.badge {
    position: absolute;
    right: 5%;
    top: 40px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(145deg, var(--coral), #ffa194);
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(255, 120, 105, .3);
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}

.check {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

.check .dot {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   Süreç adımları
   -------------------------------------------------------------------------- */

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

.step {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.step:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}

.step .n {
    font-size: 12px;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: .1em;
}

.step h3 {
    margin-top: 22px;
}

.step p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   CTA bandı
   -------------------------------------------------------------------------- */

.cta {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: 29px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    color: #fff;
    background: linear-gradient(115deg, var(--dark), rgba(16, 47, 73, .82));
    box-shadow: var(--shadow);
}

/* Dekoratif ışık lekesi */
.cta::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 185, 176, .35), transparent 65%);
    pointer-events: none;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: #fff;
}

.cta p {
    margin-top: 13px;
    color: #d2e1e8;
}

/* --------------------------------------------------------------------------
   İletişim
   -------------------------------------------------------------------------- */

.contact {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 25px;
    align-items: start;
}

.contact-info {
    padding: 35px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy), var(--dark));
}

.contact-info h2 {
    color: #fff;
    font-size: 43px;
}

.contact-info p {
    margin: 18px 0 27px;
    color: #c7d8e2;
}

.line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-weight: 700;
}

.line .i {
    font-size: 20px;
    color: var(--teal-light);
}

.form {
    padding: 34px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.full {
    grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   İçerik sayfaları (KVKK, gizlilik, çerez, teşekkür, hata)
   -------------------------------------------------------------------------- */

.page {
    /* Sabit header'ın altında kalmasın */
    padding-top: 190px;
}

.page-narrow {
    max-width: 780px;
}

.page h1 {
    color: var(--navy);
    font-size: clamp(34px, 4.5vw, 52px);
    margin-top: 18px;
}

.page h2 {
    font-size: 25px;
    margin-top: 42px;
}

.page h3 {
    margin-top: 30px;
}

.page p,
.page li {
    margin-top: 14px;
    color: var(--muted);
}

.page ul {
    padding-left: 20px;
}

.page .updated {
    display: inline-block;
    margin-top: 26px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

/* Başarı / hata ekranı */
.result {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.result-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--teal), var(--teal-light));
    color: #fff;
    font-size: 42px;
    box-shadow: 0 20px 45px rgba(24, 185, 176, .32);
}

.result-icon.is-error {
    background: linear-gradient(145deg, var(--coral), #ffa194);
    box-shadow: 0 20px 45px rgba(255, 120, 105, .3);
}

.result .actions {
    justify-content: center;
}

@media (max-width: 780px) {
    .page {
        padding-top: 140px;
    }
}
