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

:root {
    --navy: #0a1628;
    --navy2: #0e1f3d;
    --blue: #1a3a6e;
    --accent: #e8311a;
    --accent2: #ff5235;
    --gold: #f5a623;
    --white: #ffffff;
    --light: #f0f4fa;
    --grey: #8a9bb5;
    --border: rgba(255,255,255,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* TOPBAR */
.topbar {
    background: var(--accent);
    text-align: center;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        background: var(--accent);
    }

    50% {
        background: var(--accent2);
    }
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10,22,40,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18%;
}

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

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
}

    .nav-logo-text span {
        color: var(--accent);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-phone {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-phone b {
        color: var(--gold);
    }

.nav-cta {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .nav-cta:hover {
        background: var(--accent2);
        transform: translateY(-1px);
    }

/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #060e1e 0%, #0d1e3b 50%, #0a1628 100%);
    overflow: hidden;
    padding: 25px 5% 40px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26,58,110,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(26,58,110,.18) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-drift 20s linear infinite;
    z-index: 0;
}

@keyframes grid-drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.hero-camera-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image: url('/web-tema/img/wallpapers.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 72% center;
    z-index: 1;
    overflow: hidden;
    opacity: .95;
}

.camera-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to left, rgba(10,22,40,0.08) 0%, rgba(10,22,40,0.45) 28%, rgba(10,22,40,0.82) 52%, rgba(10,22,40,0.96) 72%, rgba(10,22,40,1) 100% );
}

.hero-camera-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 38%, rgba(255,255,255,.12), transparent 18%), radial-gradient(circle at 60% 55%, rgba(24,119,242,.10), transparent 22%), linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0));
    mix-blend-mode: screen;
    pointer-events: none;
}

.camera-rec {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 12px;
    color: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

    .camera-rec .dot {
        width: 8px;
        height: 8px;
        background: #ff3b30;
        border-radius: 50%;
        box-shadow: 0 0 12px rgba(255,59,48,.7);
        animation: blink 1s infinite;
    }

    .camera-rec .time {
        opacity: .9;
    }

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,49,26,.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-glow2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,58,110,.35) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,49,26,.15);
    border: 1px solid rgba(232,49,26,.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fadeInDown .7s ease both;
}

    .hero-badge::before {
        content: '●';
        font-size: 8px;
        animation: blink 1.2s infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    margin-bottom: 18px;
    color: #fff;
    max-width: 760px;
    animation: fadeInUp .8s .1s ease both;
}

    .hero-title .thin-line {
        display: block;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 600;
        font-size: clamp(18px, 2vw, 28px);
        line-height: 1.2;
        color: #9aa6c2;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

.hero-subtitle {
    font-size: 22px;
    line-height: 1.35;
    color: #e7edf7;
    font-weight: 700;
    max-width: 760px;
    margin-bottom: 26px;
}
     

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #9fb3d0;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeInUp .8s .2s ease both;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    animation: fadeInUp .8s .3s ease both;
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--grey);
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 2px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp .8s .35s ease both;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 28px rgba(232,49,26,.35);
}

    .btn-primary:hover {
        background: var(--accent2);
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(232,49,26,.45);
    }

.btn-secondary {
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.12);
        transform: translateY(-2px);
    }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 28px rgba(37,211,102,.3);
}

    .btn-whatsapp:hover {
        background: #20ba58;
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(37,211,102,.45);
    }

/* FORM */
.form-card {
    background: rgba(10,22,40,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
    animation: fadeInRight .9s .2s ease both;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

    .form-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 40px rgba(255,70,0,.15);
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--gold));
    }

    .form-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 30%);
        pointer-events: none;
    }

.form-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.form-card-sub {
    font-size: 13px;
    color: var(--grey);
    margin-bottom: 22px;
}

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

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--grey);
        letter-spacing: .5px;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        color: #fff;
        font-size: 14px;
        font-family: 'Barlow', sans-serif;
        transition: border .2s, background .2s, box-shadow .2s;
        outline: none;
        -webkit-appearance: none;
    }

        .form-group input::placeholder {
            color: #4a5e7a;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #ff4d00;
            background: rgba(232,49,26,.06);
            box-shadow: 0 0 0 2px rgba(255,77,0,.15);
        }

        .form-group select option {
            background: #0a1628;
            color: #fff;
        }

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff4d00, #ff7a00);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .25s ease;
    box-shadow: 0 10px 30px rgba(255,80,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

    .form-submit:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 20px 50px rgba(255,80,0,.55);
    }

    .form-submit:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
    }

.form-disclaimer {
    font-size: 11px;
    color: #4a5e7a;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-card-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--gold);
    text-decoration: none;
}

    .form-card-phone:hover {
        color: #fff;
    }

.alert-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 10px;
    margin-top: 14px;
}

    .alert-success .s-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .alert-success p {
        color: #4ade80;
        font-weight: 600;
        font-size: 15px;
    }

    .alert-success small {
        color: #6a80a0;
        font-size: 13px;
    }

.alert-error {
    display: none;
    padding: 12px 16px;
    background: rgba(232,49,26,.1);
    border: 1px solid rgba(232,49,26,.3);
    border-radius: 8px;
    color: #ff6b55;
    font-size: 13px;
    margin-top: 10px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* TRUST */
.trust-bar {
    background: #070f1e;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #7a90af;
}

    .trust-item span {
        font-size: 20px;
    }

    .trust-item strong {
        color: #fff;
    }

/* SECTIONS */
section {
    padding: 80px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .section-label::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
        display: inline-block;
    }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #7a90af;
    line-height: 1.7;
    max-width: 580px;
}

/* FEATURES */
#ozellikler {
    background: var(--navy2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        transform: scaleX(0);
        transition: transform .3s;
    }

    .feature-card:hover {
        background: rgba(26,58,110,.15);
        border-color: rgba(232,49,26,.3);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,.3);
    }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .5s ease, transform .5s ease;
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(232,49,26,.12);
    border: 1px solid rgba(232,49,26,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: #6a80a0;
    line-height: 1.6;
}

/* STEPS */
#nasil-calisir {
    background: var(--navy);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

    .step-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .5s ease, transform .5s ease;
    }

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(232,49,26,.15);
    line-height: 1;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,49,26,.15), rgba(26,58,110,.3));
    border: 2px solid rgba(232,49,26,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 28px auto 20px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #6a80a0;
    line-height: 1.6;
}

/* PRODUCTS */
#urunler {
    background: var(--navy2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.product-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
    opacity: 0;
    transform: translateY(24px);
}

    .product-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .5s ease, transform .5s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(232,49,26,.35);
        box-shadow: 0 20px 50px rgba(0,0,0,.4);
    }

.product-img {
    height: 180px;
    background: linear-gradient(135deg, #0d1e3b, #0a1628);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

    .product-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 80%, rgba(232,49,26,.12), transparent);
    }

.product-body {
    padding: 22px;
}

.product-badge {
    display: inline-block;
    background: rgba(232,49,26,.15);
    color: var(--accent2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-features {
    list-style: none;
}

    .product-features li {
        font-size: 13px;
        color: #6a80a0;
        padding: 5px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .product-features li:last-child {
            border-bottom: none;
        }

        .product-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 12px;
        }

/* WHY */
#neden-biz {
    background: var(--navy);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
}

    .why-item.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .5s ease, transform .5s ease;
    }

.why-dot {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: rgba(232,49,26,.1);
    border: 1px solid rgba(232,49,26,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-item-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item-desc {
    font-size: 14px;
    color: #6a80a0;
    line-height: 1.6;
}

.why-visual {
    background: linear-gradient(135deg, #0e1f3d, #070f1e);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.why-big-stat {
    text-align: center;
    flex: 1;
}

.why-big-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.why-big-stat-label {
    font-size: 12px;
    color: var(--grey);
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 4px;
}

.why-divider {
    height: 1px;
    background: var(--border);
}

.why-logo-row {
    display: flex;
    gap: 10px;
}

.why-logo-chip {
    flex: 1;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6a80a0;
    text-align: center;
}

/* SECTORS */
#sektorler {
    background: var(--navy2);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.sector-chip {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

    .sector-chip.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .5s ease, transform .5s ease;
    }

    .sector-chip:hover {
        background: rgba(232,49,26,.08);
        border-color: rgba(232,49,26,.3);
        transform: translateY(-3px);
    }

.sector-chip-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.sector-chip-label {
    font-size: 13px;
    font-weight: 600;
    color: #9fb3d0;
}

/* CTA BAND */
.cta-band {
    background: linear-gradient(135deg, var(--accent) 0%, #b5220d 100%);
    padding: 60px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .05;
        background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
        background-size: 20px 20px;
    }

.cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-band-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 14px;
    line-height: 1.1;
}

.cta-band-desc {
    font-size: 17px;
    opacity: .9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-band-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-white:hover {
        background: #f0f4fa;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.6);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.1);
        transform: translateY(-2px);
    }

/* CONTACT */
#teklif-al {
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(232,49,26,.1);
    border: 1px solid rgba(232,49,26,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
}

    .contact-value a {
        color: #fff;
        text-decoration: none;
    }

        .contact-value a:hover {
            color: var(--gold);
        }

.testimonial-box {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

    .testimonial-box blockquote {
        font-size: 15px;
        line-height: 1.7;
        color: #9fb3d0;
        font-style: italic;
        margin-bottom: 12px;
    }

    .testimonial-box cite {
        font-size: 13px;
        font-weight: 700;
        color: var(--gold);
        font-style: normal;
    }

 
/* FLOAT */
.float-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 888;
    background: var(--accent);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 28px rgba(232,49,26,.45);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-bounce 3s ease-in-out infinite;
    transition: background .2s;
}

    .float-cta:hover {
        background: var(--accent2);
    }

.float-wa {
    position: fixed;
    bottom: 24px;
    right: 170px;
    z-index: 888;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-bounce 3s .5s ease-in-out infinite;
    transition: background .2s;
}

    .float-wa:hover {
        background: #20ba58;
    }

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

    50% {
        transform: translateY(-5px);
    }
}

/* EXTRA HERO BLOCKS */
.hero-mini-panels {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 14px;
    margin: 24px 0 28px;
}

.hero-mini-card {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 116px;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

    .hero-mini-card strong {
        font-size: 16px;
        margin-bottom: 8px;
        color: #fff;
    }

    .hero-mini-card span {
        font-size: 14px;
        line-height: 1.55;
        color: #b8c6dd;
    }

.hero-mini-visual {
    padding: 10px;
    align-items: center;
}

    .hero-mini-visual img {
        width: 100%;
        max-width: 250px;
        display: block;
        margin: 0 auto;
    }

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-proof-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #dfe9f8;
}

.usecases-strip {
    padding: 0 5% 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

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

.usecase-card {
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

    .usecase-card span {
        font-size: 28px;
    }

    .usecase-card strong {
        font-size: 18px;
    }

    .usecase-card small {
        font-size: 14px;
        line-height: 1.6;
        color: #a7b7cf;
    }

.mid-cta-block {
    padding: 18px 5% 6px;
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(232,49,26,.18), rgba(26,58,110,.28));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 34px 36px;
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
}

.mid-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.mobile-sticky-cta {
    display: none;
}

/* RESPONSIVE */
@media (max-width:1100px) {
    .hero-mini-panels,
    .usecases-inner {
        grid-template-columns: 1fr 1fr;
    }

    .mid-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mid-cta-buttons {
        justify-content: flex-start;
    }
}

@media (max-width:900px) {
    .hero-inner,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-mini-panels {
        grid-template-columns: 1fr;
    }

    .usecases-inner {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-phone {
        display: none;
    }

    .hero-camera-layer {
        width: 100%;
        opacity: .22;
        background-position: center;
    }

    .camera-rec {
        display: none;
    }
}

@media (max-width:600px) {
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .trust-item:nth-child(n+4) {
        display: none;
    }

    .usecases-inner {
        grid-template-columns: 1fr;
    }

    .hero-proof-item {
        width: 100%;
        border-radius: 14px;
    }

    .mid-cta-inner {
        padding: 26px 20px;
    }

    .float-cta {
        display: none;
    }

    .float-wa {
        right: 20px;
        bottom: 85px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 1000;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        background: rgba(5,12,25,.96);
        border: 1px solid rgba(255,255,255,.08);
        backdrop-filter: blur(8px);
        padding: 8px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0,0,0,.28);
    }

        .mobile-sticky-cta a {
            text-decoration: none;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            text-align: center;
            padding: 12px 8px;
            border-radius: 12px;
            background: rgba(255,255,255,.06);
        }

            .mobile-sticky-cta a:last-child {
                background: var(--accent);
            }
}
/* =========================================================
   LOPUS PROFESSIONAL COLOR BALANCE (OVERRIDE)
   ========================================================= */

/* 🎯 ANA RENKLER */
:root {
    --lopus-primary: #e53935; /* kırmızı (sadece vurgu) */
    --lopus-dark: #0b1320; /* ana arka plan */
    --lopus-dark-2: #0f1b2e; /* kart arka plan */
    --lopus-border: rgba(255,255,255,0.08);
    --lopus-text: #e6edf5;
    --lopus-muted: #9aa6b2;
}


/* =========================================================
   TOPBAR (KIRMIZIYI KALDIRDIK)
   ========================================================= */
.topbar,
.header-top {
    background: #0b1320 !important;
    border-bottom: 1px solid var(--lopus-border);
}


/* =========================================================
   HERO ARKA PLAN DAHA PREMIUM
   ========================================================= */
.hero-section {
    background: linear-gradient( 135deg, #0b1320 0%, #0f1b2e 100% );
}


/* =========================================================
   BAŞLIK DENGESİ
   ========================================================= */
.hero h1 span,
.highlight {
    color: var(--lopus-primary);
}

.hero h1 {
    color: #ffffff;
}


/* =========================================================
   FORM (CAM EFEKTİ)
   ========================================================= */
.quote-form,
.form-box,
.form-container {
    background: rgba(15, 27, 46, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid var(--lopus-border);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}


    /* üst çizgiyi sadeleştir */
    .quote-form::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient( 90deg, var(--lopus-primary), transparent );
    }


/* =========================================================
   INPUTLAR
   ========================================================= */
.form-control,
.form-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lopus-border);
    color: var(--lopus-text);
    border-radius: 10px;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--lopus-primary);
        box-shadow: 0 0 0 2px rgba(229,57,53,0.15);
    }


/* =========================================================
   CTA BUTON (ANA KIRMIZI BURADA)
   ========================================================= */
.btn-primary,
.cta-btn {
    background: linear-gradient(135deg, #e53935, #c62828);
    border: none;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(229,57,53,0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(229,57,53,0.35);
    }


/* =========================================================
   SECONDARY BUTONLAR (KIRMIZIYI KALDIRDIK)
   ========================================================= */
.btn-secondary,
.btn-outline,
.header-btn {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid var(--lopus-border);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.1);
    }


/* =========================================================
   CARDLAR (SOFT CAM)
   ========================================================= */
.feature-card,
.info-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lopus-border);
    border-radius: 14px;
    transition: 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.05);
    }


/* =========================================================
   KIRMIZI GLOW AZALTILDI
   ========================================================= */
.glow,
.red-glow {
    box-shadow: 0 0 20px rgba(229,57,53,0.15);
}


/* =========================================================
   TELEFON LINKİ
   ========================================================= */
.phone-link {
    color: var(--lopus-primary);
    font-weight: 600;
}


/* =========================================================
   WHATSAPP BUTON AYNI (DOKUNMADIK)
   ========================================================= */


/* =========================================================
   TEXT RENK DENGESİ
   ========================================================= */
p {
    color: var(--lopus-muted);
}

h1, h2, h3, h4 {
    color: var(--lopus-text);
}
/* =========================================================
   SEO BLOCKS FIX
   Ankara İlçeler + SSS Bölümü Tema Uyumlu Override
   ========================================================= */

#ankara-ilceler,
#sss {
    background: var(--navy2);
}

#ankara-ilceler .section-inner,
#sss .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

#ankara-ilceler .section-title,
#sss .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: .4px;
}

#ankara-ilceler .section-desc,
#sss .section-desc {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.8;
    color: #8fa4c4;
    margin-bottom: 28px;
}

/* İlçe grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 28px 0 32px;
}
.district-chip {
    display: block;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: all .25s ease;
}

    .district-chip:hover {
        color: #fff !important;
        background: rgba(255,255,255,.06);
        border-color: rgba(249,115,22,.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,.25);
    }
.districts-text-block a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px dashed rgba(147,197,253,.4);
    transition: all .2s;
}

    .districts-text-block a:hover {
        color: #fff;
        border-color: rgba(249,115,22,.6);
    }
/* İlçe açıklama kutusu */
.districts-text-block {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.districts-text-block h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
}

.districts-text-block p {
    font-size: 15px;
    line-height: 1.85;
    color: #a9b8cf;
    margin-bottom: 14px;
}

.districts-text-block p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.faq-item {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    transition: all .25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(232,49,26,.24);
    background: rgba(255,255,255,.05);
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
}

.faq-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #a9b8cf;
}

/* Bu bloklarda yanlış global etkileri temizle */
#ankara-ilceler ul,
#ankara-ilceler li,
#sss ul,
#sss li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .districts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .districts-text-block,
    .faq-item {
        padding: 20px 18px;
    }

    .districts-text-block h3,
    .faq-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }

    #ankara-ilceler .section-title,
    #sss .section-title {
        font-size: clamp(26px, 9vw, 38px);
    }

    #ankara-ilceler .section-desc,
    #sss .section-desc,
    .districts-text-block p,
    .faq-item p {
        font-size: 14px;
        line-height: 1.75;
    }

    .district-chip {
        min-height: auto;
        padding: 13px 14px;
        font-size: 13px;
    }
}
.mini-testimonial-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 24px 20px;
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.mini-testimonial-head {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 16px;
}

.mini-testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.mini-track {
    display: flex;
    width: 100%;
    transition: transform .55s ease;
    will-change: transform;
}

.mini-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
}

    .mini-card p {
        font-size: 17px;
        line-height: 1.8;
        color: #cfd9ea;
        font-style: italic;
        margin-bottom: 16px;
        word-break: break-word;
    }

    .mini-card span {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--gold);
        word-break: break-word;
    }

.mini-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
}

    .mini-dots button {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.18);
        cursor: pointer;
        transition: all .25s ease;
        padding: 0;
    }

        .mini-dots button.active {
            width: 22px;
            border-radius: 999px;
            background: var(--accent);
        }

.contact-info {
    min-width: 0;
}

@media (max-width: 900px) {
    .mini-testimonial-wrap {
        padding: 20px 18px 18px;
    }

    .mini-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .mini-card span {
        font-size: 14px;
    }
}

.site-footer {
    background: #0f172a;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

    .footer-logo span {
        color: #f97316;
    }

.footer-copy {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    transition: .2s;
}

    .footer-col a:hover {
        color: #fff;
    }

/* responsive */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}
.seo-landing {
    background: var(--navy2);
}

.seo-rich-box,
.seo-cta-box {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    margin-top: 24px;
}

    .seo-rich-box h2,
    .seo-cta-box h2 {
        font-size: 26px;
        margin-bottom: 12px;
        color: #fff;
        font-family: 'Barlow Condensed', sans-serif;
    }

    .seo-rich-box p,
    .seo-cta-box p {
        font-size: 15px;
        line-height: 1.85;
        color: #aebcd2;
        margin-bottom: 14px;
    }

.seo-list {
    list-style: none;
    margin: 8px 0 18px;
    padding: 0;
}

    .seo-list li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        color: #dce7f7;
        font-size: 15px;
    }

        .seo-list li:last-child {
            border-bottom: none;
        }

    .seo-list a {
        color: #dce7f7;
        text-decoration: none;
    }

        .seo-list a:hover {
            color: #fff;
        }

/* =========================================================
   CLEAN FOOTER - FINAL
   ========================================================= */

.site-footer {
    margin-top: 64px;
    background: linear-gradient(180deg, #0b1324 0%, #0a1221 100%);
    border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px 24px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-footer__brand {
    min-width: 0;
}

.site-footer__logo {
    display: inline-block;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: .6px;
    color: #fff;
    margin-bottom: 14px;
}

    .site-footer__logo span {
        color: #f97316;
    }

.site-footer__copy {
    font-size: 14px;
    line-height: 1.8;
    color: #95a7c0;
    max-width: 340px;
    margin-bottom: 18px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .site-footer__contact a {
        text-decoration: none;
        color: #d8e2f2;
        font-size: 14px;
        font-weight: 600;
        transition: color .2s ease;
    }

        .site-footer__contact a:hover {
            color: #fff;
        }

.site-footer__menus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.site-footer__col h4,
.site-footer__bottom-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__col li {
    margin-bottom: 10px;
}

.site-footer__col a {
    text-decoration: none;
    color: #97a9c2;
    font-size: 14px;
    line-height: 1.5;
    transition: color .2s ease;
}

    .site-footer__col a:hover {
        color: #fff;
    }

.site-footer__bottom {
    padding-top: 22px;
}

.site-footer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #a9bbd4;
    text-decoration: none;
    font-size: 13px;
    transition: all .2s ease;
}

    .site-footer__tag:hover {
        color: #fff;
        background: rgba(255,255,255,.07);
        border-color: rgba(249,115,22,.35);
        transform: translateY(-1px);
    }

.site-footer__legal {
    padding-top: 20px;
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #71839e;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1024px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__menus {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .site-footer__copy {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .site-footer__menus {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer__inner {
        padding: 34px 16px 22px;
    }

    .site-footer__logo {
        font-size: 30px;
    }
}

@media (max-width: 560px) {
    .site-footer__tag {
        width: 100%;
    }
}