/* =================================================================
   ARTI ALARM VE GÜVENLİK TEKNOLOJİLERİ — STILE SHEET
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
    --navy:            #0b2354;
    --navy-deep:       #071840;
    --navy-mid:        #0d2f6b;
    --teal:            #29afc4;
    --teal-light:      #4dc8da;
    --teal-dark:       #1d8fa3;
    --gold:            #f5a623;
    --gold-light:      #ffc352;
    --coral:           #ff6b5b;
    --magenta:         #e84c88;
    --violet:          #7c4dff;
    --red:             #e74c3c;
    --green:           #27ae60;

    --white:           #ffffff;
    --gray-50:         #f8fafc;
    --gray-100:        #f1f5f9;
    --gray-200:        #e2e8f0;
    --gray-300:        #cbd5e1;
    --gray-400:        #94a3b8;
    --gray-500:        #64748b;
    --gray-600:        #475569;
    --gray-700:        #334155;
    --gray-800:        #1e293b;
    --gray-900:        #0f172a;

    --font-display:    'Exo 2', 'Segoe UI', system-ui, sans-serif;
    --font-body:       'Nunito Sans', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm:       0 2px 8px rgba(11, 35, 84, 0.08);
    --shadow-md:       0 6px 24px rgba(11, 35, 84, 0.12);
    --shadow-lg:       0 16px 48px rgba(11, 35, 84, 0.16);
    --shadow-xl:       0 24px 64px rgba(11, 35, 84, 0.22);

    --radius:          12px;
    --radius-lg:       20px;
    --radius-xl:       28px;

    --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    --header-h:        210px;
    --logo-w:          210px;
    --logo-h:          116px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
body.no-scroll-ios { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select, button { font: inherit; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* =================================================================
   HEADER / NAV — unified two-row design
   ================================================================= */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(11, 35, 84, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.is-scrolled { box-shadow: 0 8px 32px rgba(11, 35, 84, 0.12); }

/* ----- TOP ROW: logo + info strip + CTA ----- */
.header-top {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.header-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(41, 175, 196, 0.25) 0%, transparent 55%);
    pointer-events: none;
}
.header-top-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Logo (294x162 aspect ratio) — matches footer size */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: var(--transition);
}
.logo img {
    width: var(--logo-w);
    height: var(--logo-h);
    aspect-ratio: 294 / 162;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}
.logo:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(41, 175, 196, 0.35); }

/* Info strip (phone, email, 7/24, branches) */
.header-info {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.header-info-item {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.15;
}
a.header-info-item:hover { color: var(--teal-light); transform: translateY(-1px); }
.hi-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(41, 175, 196, 0.22);
    border: 1px solid rgba(77, 200, 218, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
}
.hi-icon svg { width: 17px; height: 17px; }
.hi-text { display: flex; flex-direction: column; gap: 2px; }
.hi-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.hi-value {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.01em;
}

/* Header CTA — "Ücretsiz Keşif" */
.header-cta {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    color: var(--white);
    font-family: var(--font-display);
    padding: 12px 22px;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(41, 175, 196, 0.42);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.header-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(41, 175, 196, 0.55);
}
.header-cta:hover::after { transform: translateX(100%); }
.header-cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.header-cta-icon svg { width: 18px; height: 18px; }
.header-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    gap: 2px;
    position: relative;
    z-index: 1;
}
.header-cta-sub {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
}
.header-cta-main {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* ----- BOTTOM ROW: navigation with icons ----- */
.header-bottom {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}
.main-nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2px;
}
.nav-item { position: relative; flex: 1 1 auto; }
.nav-item--icon { flex: 0 0 auto; }
.nav-link {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15.5px;
    letter-spacing: 0.02em;
    color: var(--navy);
    padding: 14px 12px 13px;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-align: center;
    position: relative;
    border-bottom: 3px solid transparent;
    height: 100%;
}
.nav-link--icon-only { padding: 12px 14px; }
.nav-link--icon-only .nav-text--sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.nav-link--icon-only .nav-ico {
    width: 44px;
    height: 44px;
}
.nav-link--icon-only .nav-ico svg { width: 22px; height: 22px; }
.nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 0 0 3px 3px;
}
.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    background: linear-gradient(to bottom, rgba(41, 175, 196, 0.08), transparent);
}
.nav-link:hover::before,
.nav-link.active::before { width: 60%; }
.nav-ico {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(41, 175, 196, 0.08);
    color: var(--teal);
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-ico svg { width: 19px; height: 19px; stroke-width: 2; }
.nav-link:hover .nav-ico,
.nav-link.active .nav-ico {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(41, 175, 196, 0.35);
}
.nav-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 15.5px;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-weight: 800;
}
.nav-caret { width: 10px; height: 10px; transition: transform 0.25s ease; }

/* Dropdown — base / shared styles */
.dropdown a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0;
    text-align: left;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
    color: var(--teal);
    background: var(--gray-50);
}
.dropdown a svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

/* Dropdown — desktop floating panel (only > 960px) */
@media (min-width: 961px) {
    .nav-item:hover .nav-caret { transform: rotate(180deg); }
    .dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        min-width: 280px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        overflow: hidden;
    }
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .dropdown a { white-space: nowrap; }
    .dropdown a:hover { padding-left: 24px; }
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: var(--transition);
    flex-direction: column;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =================================================================
   FLOATING SIDE TABS (2 adet, aynı paneli açar)
   ================================================================= */
.side-tabs {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.side-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px 12px 14px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 14px 0 0 14px;
    transition: var(--transition);
    box-shadow: -6px 6px 22px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.side-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.side-tab:hover { padding-right: 22px; transform: translateX(-4px); }
.side-tab--primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.side-tab--secondary {
    background: linear-gradient(135deg, var(--gold), #e07b00);
    color: var(--white);
}
.side-tab--primary:hover { box-shadow: -8px 8px 26px rgba(41, 175, 196, 0.45); }
.side-tab--secondary:hover { box-shadow: -8px 8px 26px rgba(245, 166, 35, 0.45); }

/* Right-side panel (opens from either tab) */
.side-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 24, 64, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1009;
}
.side-panel-backdrop.is-visible { opacity: 1; visibility: visible; }

.side-panel {
    position: fixed;
    right: -420px;
    top: 0;
    width: 400px;
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.3);
    padding: 32px 28px calc(28px + env(safe-area-inset-bottom));
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1010;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.side-panel.is-open { right: 0; }
.side-panel-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}
.side-panel-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 294px;
    margin-bottom: 6px;
}
.side-panel-logo img {
    width: 100%;
    max-width: 294px;
    height: auto;
    aspect-ratio: 294 / 162;
    object-fit: contain;
    display: block;
}
.side-panel-head h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}
.side-panel-head p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}
.side-panel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: var(--transition);
    font-size: 22px;
    line-height: 1;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.side-panel-close:hover,
.side-panel-close:focus-visible { background: var(--red); color: var(--white); transform: rotate(90deg); outline: none; }
.side-panel-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.side-panel-quick .sp-wide { grid-column: 1 / -1; }
.side-panel-quick a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 11px;
    transition: var(--transition);
    color: var(--navy);
    text-align: left;
}
.side-panel-quick a:hover {
    border-color: var(--teal);
    background: rgba(41, 175, 196, 0.05);
    transform: translateY(-1px);
}
.side-panel-quick .sp-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    color: var(--gray-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.side-panel-quick .sp-value {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy);
}

/* =================================================================
   FORMS
   ================================================================= */
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-group .req { color: var(--red); margin-left: 3px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(41, 175, 196, 0.14);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group.honeypot { position: absolute; left: -9999px; top: -9999px; }

.radio-group {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.radio-group label {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    text-transform: none;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    transition: var(--transition);
    letter-spacing: 0;
    margin: 0;
}
.radio-group label:hover { border-color: var(--teal); color: var(--teal); }
.radio-group input[type="radio"] { display: none; }
.radio-group label.is-selected,
.radio-group input[type="radio"]:checked + label {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

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

/* KVKK consent checkbox */
.form-kvkk { margin-top: 6px; margin-bottom: 14px; }
.kvkk-check {
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    background: var(--gray-50);
    transition: var(--transition);
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--gray-700) !important;
    line-height: 1.55 !important;
    margin: 0;
}
.kvkk-check:hover { border-color: var(--teal); background: rgba(41, 175, 196, 0.05); }
.kvkk-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.kvkk-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 1px;
}
.kvkk-box svg { width: 14px; height: 14px; opacity: 0; transform: scale(0.6); transition: var(--transition); }
.kvkk-check input[type="checkbox"]:checked + .kvkk-box {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-color: var(--teal-dark);
    box-shadow: 0 3px 10px rgba(41, 175, 196, 0.35);
}
.kvkk-check input[type="checkbox"]:checked + .kvkk-box svg { opacity: 1; transform: scale(1); }
.kvkk-check input[type="checkbox"]:focus-visible + .kvkk-box { box-shadow: 0 0 0 3px rgba(41, 175, 196, 0.22); }
.kvkk-label { flex: 1; }
.kvkk-label .req { color: var(--red); margin-left: 3px; font-weight: 800; }
.kvkk-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    transition: var(--transition);
}
.kvkk-link:hover { color: var(--teal); }

.form-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    display: none;
}
.form-alert.is-error {
    display: block;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: var(--red);
}
.form-alert.is-success {
    display: block;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: var(--green);
}

.form-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 2300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(5, 18, 48, 0.7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.form-success-overlay.is-open { display: flex; }
.form-success-card {
    position: relative;
    width: min(460px, 100%);
    background: var(--white);
    border-radius: 20px;
    padding: 32px 26px 24px;
    text-align: center;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(42, 143, 163, 0.2);
    animation: modalIn 0.26s ease;
}
.form-success-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(11, 35, 84, 0.08);
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}
.form-success-close:hover { background: rgba(11, 35, 84, 0.14); }
.form-success-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(41, 175, 196, 0.18), rgba(25, 120, 142, 0.26));
}
.form-success-icon svg {
    width: 44px;
    height: 44px;
}
.form-success-icon circle {
    fill: rgba(41, 175, 196, 0.24);
    stroke: #2a8fa3;
    stroke-width: 1.3;
}
.form-success-icon path {
    stroke: #0f2346;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.form-success-card h3 {
    margin: 0 0 10px;
    font-size: 27px;
    font-weight: 900;
    color: var(--navy);
}
.form-success-card p {
    margin: 0 0 22px;
    color: var(--gray-700);
    line-height: 1.55;
    font-weight: 500;
}
.form-success-btn {
    width: 100%;
    justify-content: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    padding: 13px 26px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    box-shadow: 0 6px 22px rgba(41, 175, 196, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(41, 175, 196, 0.45);
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    color: var(--white);
    box-shadow: 0 6px 18px rgba(41, 175, 196, 0.32);
}
.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(41, 175, 196, 0.48);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy-deep);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 166, 35, 0.5); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 11px 24px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}
.btn-ghost-white:hover { background: rgba(255, 255, 255, 0.26); border-color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover { background: var(--gray-100); }

/* Favicon + icon inside buttons */
.btn-plus {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}
.btn-lg .btn-plus { width: 22px; height: 22px; }
.btn:hover .btn-plus { transform: rotate(90deg); }

/* =================================================================
   MODAL
   ================================================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 18, 48, 0.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
    opacity: 0;
    transition: opacity 0.25s ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: none;
}
.modal-overlay.is-open { display: flex; opacity: 1; }
.modal-overlay.kvkk-modal { z-index: 2100; }
.modal {
    background: var(--white);
    border-radius: 22px;
    padding: 0;
    width: 100%;
    max-width: 520px;
    position: relative;
    animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    margin: auto 0;
    overflow: hidden;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    touch-action: auto;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    padding: 30px 36px 26px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 0 0 auto;
}
.modal-head::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.3) 0%, transparent 65%);
    pointer-events: none;
}
.modal-head::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 65%);
    pointer-events: none;
}
.modal-head-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.modal-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    width: auto;
    max-width: 294px;
}
.modal-logo img {
    width: 220px;
    height: auto;
    max-width: 100%;
    aspect-ratio: 294 / 162;
    object-fit: contain;
    display: block;
}
.modal-head h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    margin: 4px 0 0;
    color: var(--white);
    line-height: 1.2;
}
.modal-head .modal-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
    max-width: 400px;
}
.modal-head--compact { padding: 24px 30px 20px; text-align: left; }
.modal-head--compact h3 { font-size: 20px; margin: 0; }
.modal--text { max-width: 620px; }
.modal-body--text {
    padding: 22px 30px 28px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-700);
}
.modal-body--text p { margin-bottom: 14px; }
.modal-body--text p:last-child { margin-bottom: 0; }
.modal-body {
    padding: 26px 36px 32px;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.22);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.modal-close:hover,
.modal-close:focus-visible { background: var(--red); border-color: var(--red); transform: rotate(90deg); outline: none; }
.modal-footer-note {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

/* =================================================================
   SECTION BASICS
   ================================================================= */
.section { padding: 90px 0; }
.section-compact { padding: 60px 0; }
.section-header {
    text-align: center;
    margin-bottom: 54px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.section-header.align-left { text-align: left; margin-left: 0; }
.section-tag {
    display: inline-block;
    color: var(--teal);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: rgba(41, 175, 196, 0.1);
    border-radius: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 40px;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.01em;
}
.section-sub {
    color: var(--gray-600);
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.7;
}

/* =================================================================
   HERO SLIDER
   ================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    height: 680px;
    background: var(--navy-deep);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 11s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7, 24, 64, 0.92) 0%, rgba(7, 24, 64, 0.62) 48%, rgba(7, 24, 64, 0.18) 100%),
        linear-gradient(to top, rgba(7, 24, 64, 0.6) 0%, transparent 40%);
}
.slide-overlay::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.32) 0%, transparent 70%);
    pointer-events: none;
}
.slide--accent-gold .slide-overlay::after {
    background: radial-gradient(circle, rgba(245, 166, 35, 0.32) 0%, transparent 70%);
}
.slide--accent-magenta .slide-overlay::after {
    background: radial-gradient(circle, rgba(232, 76, 136, 0.3) 0%, transparent 70%);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41, 175, 196, 0.28);
    border: 1px solid rgba(77, 200, 218, 0.55);
    color: var(--teal-light);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 24px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.slide--accent-gold .slide-tag {
    background: rgba(245, 166, 35, 0.22);
    border-color: rgba(255, 195, 82, 0.55);
    color: var(--gold-light);
}
.slide--accent-magenta .slide-tag {
    background: rgba(232, 76, 136, 0.22);
    border-color: rgba(232, 76, 136, 0.55);
    color: #ffb1cf;
}
.slide-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 60px;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
    max-width: 720px;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.slide-title em {
    color: var(--teal-light);
    font-style: normal;
}
.slide--accent-gold .slide-title em { color: var(--gold-light); }
.slide--accent-magenta .slide-title em { color: #ffb1cf; }

.slide-sub {
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 34px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}
.slide-sub strong {
    color: var(--white);
    font-weight: 800;
}
.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Slider nav — arrows centered BELOW the banner */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(180deg, var(--navy-deep), var(--navy));
    position: relative;
    z-index: 6;
}
.slider-btn {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.slider-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(41, 175, 196, 0.45);
}
.slider-nav .slider-dots {
    position: static;
    transform: none;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.dot.active {
    background: var(--teal);
    width: 32px;
    border-radius: 5px;
}

/* =================================================================
   PACKAGES (İhtiyacınıza Özel)
   ================================================================= */
.packages-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.packages-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.25) 0%, transparent 65%);
    pointer-events: none;
}
.packages-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.packages-section .section-title { color: var(--white); }
.packages-section .section-sub { color: rgba(255, 255, 255, 0.7); }
.packages-section .section-tag { background: rgba(41, 175, 196, 0.18); }

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
.pkg-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    border-color: rgba(41, 175, 196, 0.4);
}
.pkg-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(11, 35, 84, 0.85) 100%);
}
.pkg-body { padding: 28px 26px; }
.pkg-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(41, 175, 196, 0.35);
}
.pkg-icon svg { width: 26px; height: 26px; color: var(--white); }
.pkg-card:nth-child(2) .pkg-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}
.pkg-card:nth-child(3) .pkg-icon {
    background: linear-gradient(135deg, var(--coral), var(--magenta));
    box-shadow: 0 8px 20px rgba(232, 76, 136, 0.35);
}
.pkg-body h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 11px;
}
.pkg-body ul {
    margin-top: 14px;
}
.pkg-body ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 8px;
}
.pkg-body ul li svg {
    width: 14px; height: 14px;
    color: var(--teal-light);
    margin-top: 4px;
    flex-shrink: 0;
}
.pkg-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    line-height: 1.7;
}
.pkg-section-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
}

/* =================================================================
   CAMPAIGN BANNER (Kampanyalar teaser)
   ================================================================= */
.campaign-banner {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #ff6b5b 0%, #e84c88 55%, #7c4dff 100%);
    color: var(--white);
    text-decoration: none;
    isolation: isolate;
}
.campaign-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}
.campaign-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 6%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}
.campaign-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}
.campaign-banner-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 48px;
    color: var(--white);
    transition: var(--transition);
}
.campaign-banner-icon svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
.campaign-banner:hover .campaign-banner-icon {
    transform: rotate(-6deg) scale(1.04);
    background: rgba(255, 255, 255, 0.3);
}
.campaign-banner-body { flex: 1; }
.campaign-banner-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.18);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.campaign-banner h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.campaign-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin: 0;
    max-width: 620px;
}
.campaign-banner-arrow {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    color: #e84c88;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.campaign-banner:hover .campaign-banner-arrow {
    transform: translateX(8px) scale(1.08);
    color: var(--violet);
}
.campaign-banner-arrow svg { width: 30px; height: 30px; }

/* =================================================================
   UPGRADE (Analog to HD)
   ================================================================= */
.upgrade-section { background: var(--gray-50); overflow: hidden; }
.upgrade-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 28px;
}
.upgrade-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.upgrade-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}
.upgrade-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy-deep);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.5);
    transform: rotate(-5deg);
}
.upgrade-badge strong { font-size: 22px; display: block; margin-bottom: 2px; }
.upgrade-content .section-header { text-align: left; margin-bottom: 22px; max-width: none; margin-left: 0; margin-right: 0; }
.upgrade-content .section-title { font-size: 34px; }
.upgrade-content .section-sub { font-size: 15.5px; }
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.tech-pill {
    background: var(--white);
    border: 2px solid var(--navy);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    padding: 9px 18px;
    border-radius: 24px;
    transition: var(--transition);
    letter-spacing: 0.03em;
}
.tech-pill:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* =================================================================
   PRODUCTS / SERVICES GRID
   ================================================================= */
.products-section { background: var(--white); }
.prod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.prod-card {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.prod-card:hover {
    border-color: var(--teal);
    box-shadow: 0 14px 32px rgba(41, 175, 196, 0.22);
    transform: translateY(-6px);
}
.prod-img {
    height: 170px;
    overflow: hidden;
    position: relative;
}
.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.1); }
.prod-body { padding: 20px 18px; flex: 1; }
.prod-icon {
    width: 46px;
    height: 46px;
    background: rgba(41, 175, 196, 0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    transition: var(--transition);
}
.prod-card:hover .prod-icon { background: var(--teal); }
.prod-icon svg { width: 22px; height: 22px; color: var(--teal); transition: var(--transition); }
.prod-card:hover .prod-icon svg { color: var(--white); }
.prod-body h4 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14.5px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 5px;
}
.prod-body p {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* =================================================================
   WHY US (dark)
   ================================================================= */
.why-us {
    background: var(--navy);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(41, 175, 196, 0.2) 0%, transparent 65%);
    pointer-events: none;
}
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255, 255, 255, 0.7); }
.why-us .section-tag { background: rgba(41, 175, 196, 0.18); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.why-card {
    text-align: center;
    padding: 34px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(41, 175, 196, 0.4);
}
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(41, 175, 196, 0.4);
}
.why-icon svg { width: 30px; height: 30px; color: var(--white); }
.why-card h4 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 11px;
}
.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* =================================================================
   BLOG
   ================================================================= */
.blog-section { background: var(--gray-50); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* Image with headline overlay */
.blog-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    display: block;
    color: var(--white);
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 24, 64, 0.92) 0%, rgba(7, 24, 64, 0.55) 40%, transparent 75%);
    pointer-events: none;
}
.blog-img-headline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px 20px;
    z-index: 2;
}
.blog-img-cat {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--teal);
    color: var(--white);
    margin-bottom: 10px;
}
.blog-img-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 19px;
    line-height: 1.22;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.blog-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-body p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.7;
    flex: 1;
}
.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--teal);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    margin-top: 16px;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.blog-more:hover { gap: 12px; color: var(--teal-dark); }

/* Blog detay */
.blog-detail {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 28px;
}
.blog-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: var(--shadow-lg);
}
.blog-detail-img img { width: 100%; height: 420px; object-fit: cover; }
.blog-detail h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
}
.blog-detail .blog-img-cat {
    background: var(--teal);
    margin-bottom: 14px;
}
.blog-detail p {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}
.blog-detail h2, .blog-detail h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--navy);
    margin: 36px 0 16px;
}
.blog-detail h2 { font-size: 26px; }
.blog-detail h3 { font-size: 20px; }
.blog-detail ul, .blog-detail ol {
    margin: 0 0 20px 24px;
    padding-left: 0;
    list-style: disc;
}
.blog-detail li { margin-bottom: 8px; line-height: 1.7; color: var(--gray-700); }

/* =================================================================
   PAGE HERO (iç sayfalar)
   ================================================================= */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 24, 64, 0.9) 0%, rgba(11, 35, 84, 0.72) 100%);
}
.page-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(41, 175, 196, 0.22) 0%, transparent 55%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    margin-bottom: 6px;
    max-width: 640px;
    line-height: 1.6;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }

/* =================================================================
   SERVICE PAGE LAYOUT
   ================================================================= */
.service-section { padding: 90px 0; }
.service-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.service-content-text h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-subtitle {
    font-size: 18px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 22px;
    font-family: var(--font-display);
}
.service-content-text p {
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 15.5px;
    margin-bottom: 16px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--gray-50);
    border-radius: 11px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--teal);
    background: rgba(41, 175, 196, 0.05);
}
.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-item span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gray-800);
    font-family: var(--font-display);
}
.service-cta-block {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.service-side { position: sticky; top: calc(var(--header-h) + 20px); }
.service-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 26px;
}
.service-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.service-contact-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.service-contact-box::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.35) 0%, transparent 65%);
}
.service-contact-box h4 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 14px;
    position: relative;
}
.service-contact-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.65;
    position: relative;
}
.service-contact-box .btn { position: relative; width: 100%; margin-bottom: 10px; }

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 28px 90px;
    max-width: 1240px;
    margin: 0 auto;
}
.gallery-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 210px;
    position: relative;
    cursor: zoom-in;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-img:hover img { transform: scale(1.1); }

/* =================================================================
   KURUMSAL (Corporate) page
   ================================================================= */
.corp-section { padding: 90px 0; background: var(--white); }
.corp-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    align-items: center;
}
.corp-intro .section-header { text-align: left; margin: 0 0 18px; max-width: none; margin-left: 0; margin-right: 0; }
.corp-intro p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.corp-intro-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.corp-intro-img img { width: 100%; height: 460px; object-fit: cover; }

.corp-vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.corp-vm-card {
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.corp-vm-card--vision {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}
.corp-vm-card--mission {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.corp-vm-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 65%);
    pointer-events: none;
}
.corp-vm-card .vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.corp-vm-card .vm-icon svg { width: 30px; height: 30px; color: var(--white); }
.corp-vm-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
}
.corp-vm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
}

.corp-work-areas {
    background: var(--gray-50);
    padding: 90px 0;
}
.corp-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.corp-work-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
}
.corp-work-item:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.corp-work-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: rgba(41, 175, 196, 0.12);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.corp-work-item:hover .corp-work-item-icon {
    background: var(--teal);
    color: var(--white);
}
.corp-work-item-icon svg { width: 22px; height: 22px; }
.corp-work-item span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--navy);
}

.corp-principles {
    padding: 90px 0;
    background: var(--white);
}
.corp-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.corp-principle {
    text-align: left;
    padding: 30px 26px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.corp-principle:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}
.corp-principle-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 42px;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.corp-principle h4 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.corp-principle p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* =================================================================
   REFERANSLAR (References) page
   ================================================================= */
.ref-section { padding: 90px 0; background: var(--white); }
.ref-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto 50px;
    padding: 0 28px;
}
.ref-stat {
    padding: 26px 22px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
}
.ref-stat-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 38px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.ref-stat-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-600);
    letter-spacing: 0.04em;
}

.ref-groups {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.ref-group {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 32px;
    transition: var(--transition);
}
.ref-group:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}
.ref-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}
.ref-group-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(41, 175, 196, 0.3);
}
.ref-group-icon svg { width: 24px; height: 24px; }
.ref-group:nth-child(2) .ref-group-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.3);
}
.ref-group:nth-child(3) .ref-group-icon {
    background: linear-gradient(135deg, var(--coral), var(--magenta));
    box-shadow: 0 6px 18px rgba(232, 76, 136, 0.3);
}
.ref-group:nth-child(4) .ref-group-icon {
    background: linear-gradient(135deg, var(--violet), #5633d4);
    box-shadow: 0 6px 18px rgba(124, 77, 255, 0.3);
}
.ref-group:nth-child(5) .ref-group-icon {
    background: linear-gradient(135deg, #27ae60, #1e8b4a);
    box-shadow: 0 6px 18px rgba(39, 174, 96, 0.3);
}
.ref-group:nth-child(6) .ref-group-icon {
    background: linear-gradient(135deg, #4285f4, #1a66d4);
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.3);
}
.ref-group:nth-child(7) .ref-group-icon {
    background: linear-gradient(135deg, #ff8a65, #ff5722);
    box-shadow: 0 6px 18px rgba(255, 87, 34, 0.3);
}
.ref-group-head h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}
.ref-group-head span {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 3px;
}
.ref-group-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ref-item {
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gray-800);
    font-family: var(--font-display);
    border-left: 3px solid var(--teal);
    transition: var(--transition);
}
.ref-item:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateX(3px);
}

/* =================================================================
   KAMPANYALAR (Campaigns) page
   ================================================================= */
.camp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.camp-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 36px 30px 30px;
    color: var(--white);
    overflow: hidden;
    transition: var(--transition);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.camp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}
.camp-card--teal   { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.camp-card--navy   { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.camp-card--gold   { background: linear-gradient(135deg, var(--gold), #c77500); color: var(--navy-deep); }
.camp-card--coral  { background: linear-gradient(135deg, var(--coral), var(--magenta)); }
.camp-card--violet { background: linear-gradient(135deg, var(--violet), #4a2ea0); }
.camp-card--green  { background: linear-gradient(135deg, #27ae60, #1a6e3d); }
.camp-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 65%);
    pointer-events: none;
}
.camp-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 65%);
    pointer-events: none;
}
.camp-card-icon {
    position: absolute;
    top: 26px;
    right: 26px;
    font-size: 56px;
    line-height: 1;
    opacity: 0.95;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.camp-card-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.22);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    position: relative;
}
.camp-card--gold .camp-card-tag { background: rgba(7, 24, 64, 0.2); }
.camp-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.22;
    margin: 0 0 10px;
    position: relative;
    letter-spacing: -0.01em;
}
.camp-card p {
    font-size: 14.5px;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0;
    position: relative;
}
.camp-card-cta {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    transition: var(--transition);
    align-self: flex-start;
    color: inherit;
    position: relative;
}
.camp-card--gold .camp-card-cta { background: rgba(7, 24, 64, 0.18); color: var(--navy-deep); }
.camp-card:hover .camp-card-cta {
    background: rgba(255, 255, 255, 0.34);
    gap: 12px;
}
.camp-card--gold:hover .camp-card-cta { background: rgba(7, 24, 64, 0.3); }

/* =================================================================
   FAQ
   ================================================================= */
.faq-section { padding: 90px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}
.faq-item:hover { border-color: var(--teal); }
.faq-item.is-open {
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(41, 175, 196, 0.1);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
    transition: var(--transition);
    text-align: left;
    width: 100%;
    background: none;
}
.faq-q:hover { background: var(--gray-50); }
.faq-item.is-open .faq-q {
    background: var(--gray-50);
    color: var(--teal);
}
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--teal);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 26px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
}
.faq-item.is-open .faq-a {
    max-height: 800px;
    padding: 4px 26px 22px;
    border-top: 1px solid var(--gray-100);
    padding-top: 18px;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-section { background: var(--gray-50); padding: 90px 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    border-radius: var(--radius-lg);
    padding: 46px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.2) 0%, transparent 65%);
}
.contact-info-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 30px;
    position: relative;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
    position: relative;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(41, 175, 196, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--teal-light); }
.contact-info-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.contact-info-item p,
.contact-info-item a {
    font-size: 14.5px;
    color: var(--white);
    line-height: 1.55;
}
.contact-info-item a:hover { color: var(--teal-light); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 46px 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 10px;
}
.contact-form-card .contact-form-sub {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 15px;
}

.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contact-map iframe { display: block; width: 100%; height: 360px; border: 0; }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    padding: 70px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
}
.cta-band::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
}
.cta-band-inner { position: relative; max-width: 900px; margin: 0 auto; }
.cta-band h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 38px;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.cta-band .btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================================================
   EMPTY STATE (ürünler, 404)
   ================================================================= */
.empty-state {
    max-width: 620px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.empty-state-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 16px 40px rgba(41, 175, 196, 0.4);
    transform: rotate(-6deg);
}
.empty-state-icon svg { width: 54px; height: 54px; }
.empty-state h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 14px;
}
.empty-state p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.empty-state .btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}
footer.site-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.14) 0%, transparent 65%);
    pointer-events: none;
}
.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 28px 48px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 48px;
    position: relative;
}
.footer-brand .logo {
    background: var(--white);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    margin-bottom: 22px;
    display: inline-flex;
    width: auto;
    max-width: 250px;
}
.footer-brand .logo img {
    width: 210px;
    height: auto;
    max-width: 100%;
    aspect-ratio: 294 / 162;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13.5px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover {
    color: var(--teal-light);
    transform: translateX(3px);
}
.footer-contact-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 15px;
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}
.footer-contact-item strong { color: var(--white); }
.footer-contact-item a:hover { color: var(--teal-light); }

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}
.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-bottom p.copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* Cool footer signature */
.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
    gap: 2px;
    text-align: right;
}
.footer-credit .credit-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    padding-right: 44px;
    transition: var(--transition);
}
.footer-credit .credit-label::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4));
    transition: var(--transition);
}
.footer-credit .credit-label:hover {
    color: var(--teal-light);
}
.footer-credit .credit-label:hover::before {
    background: linear-gradient(to right, transparent, var(--teal-light));
    width: 48px;
}
.footer-credit .credit-brand {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, var(--teal-light), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.35s ease;
    position: relative;
}
.footer-credit .credit-brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}
.footer-credit .credit-brand:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--teal-light));
    -webkit-background-clip: text;
    background-clip: text;
}
.footer-credit .credit-brand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =================================================================
   SCROLL-TO-TOP
   ================================================================= */
.scroll-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(41, 175, 196, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 980;
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-3px) scale(1.05); }

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .slide-title { font-size: 48px; }
    .corp-work-grid { grid-template-columns: repeat(2, 1fr); }
    .corp-principles-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-group-list { grid-template-columns: repeat(2, 1fr); }
    .camp-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    .nav-text { font-size: 13.5px; }
    .nav-ico { width: 34px; height: 34px; }
    .nav-ico svg { width: 18px; height: 18px; }
    .nav-link { gap: 8px; padding: 14px 8px 13px; }
    .header-info { gap: 18px; }
}
@media (max-width: 1050px) {
    .header-info-item:nth-child(2) { display: none; } /* Hide 7/24 info on smaller */
    .nav-text { font-size: 12.5px; }
    .nav-link { gap: 6px; padding: 14px 6px 13px; }
}

@media (max-width: 960px) {
    :root { --header-h: 106px; --logo-w: 148px; --logo-h: 82px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 32px; }
    .hero { height: 600px; }
    .slide-title { font-size: 40px; }
    .slide-sub { font-size: 16px; }
    .pkg-grid { grid-template-columns: 1fr; }
    .upgrade-inner { grid-template-columns: 1fr; gap: 50px; padding: 70px 28px; }
    .service-layout { grid-template-columns: 1fr; gap: 50px; }
    .service-side { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .service-gallery { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 36px; }

    /* Compact header for tablet/mobile: hide info strip, keep logo + CTA + toggle */
    .header-top-inner { padding: 12px 20px; gap: 12px; }
    .header-info { display: none; }
    .header-cta { padding: 10px 16px; gap: 9px; }
    .header-cta-sub { display: none; }
    .header-cta-main { font-size: 13px; }
    .header-cta-icon { width: 32px; height: 32px; }
    .logo { padding: 6px 10px; border-radius: 10px; }

    /* =========================================================
       MOBILE NAVIGATION (drawer + accordion submenu)
       Rewritten cleanly. Desktop hover/dropdown rules are scoped
       to (min-width: 961px) so they don't interfere here.
       ========================================================= */
    .nav-toggle { display: inline-flex; }

    /* Header-bottom stays in the DOM (its child .main-nav is fixed) */
    .header-bottom {
        background: transparent;
        border: 0;
        height: 0;
        overflow: visible;
    }

    /* Drawer container */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 88vw;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 88px 0 24px;
        margin: 0;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1050;
    }
    .main-nav.is-open { right: 0; }

    /* Each nav item is a full-width row in the drawer */
    .nav-item {
        position: relative;
        width: 100%;
        flex: 0 0 auto;
        display: block;
    }

    /* Top-level link */
    .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 20px;
        height: auto;
        font-size: 15px;
        text-align: left;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        background: none;
    }
    .nav-link::before { display: none; }
    .nav-link:hover,
    .nav-link.active {
        background: rgba(41, 175, 196, 0.06);
    }

    /* Icon-only items (Ana Sayfa & İletişim) get their label back on mobile */
    .nav-link--icon-only .nav-text--sr {
        position: static;
        width: auto;
        height: auto;
        clip: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        white-space: normal;
        border: 0;
    }
    .nav-link--icon-only,
    .nav-link--icon-only .nav-ico {
        width: auto;
        height: auto;
    }
    .nav-link--icon-only .nav-ico {
        width: 34px;
        height: 34px;
    }

    .nav-ico {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }
    .nav-ico svg { width: 18px; height: 18px; }

    .nav-text {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        font-size: 14.5px;
        white-space: normal;
    }
    .nav-caret {
        width: 12px;
        height: 12px;
        margin-left: auto;
        transition: transform 0.25s ease;
    }
    .nav-item.is-expanded .nav-caret { transform: rotate(180deg); }

    /* ----- Mobile dropdown (accordion submenu) -----
       Uses display none/block so it cannot overlap items below. */
    .dropdown {
        display: none;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--gray-50);
        border: none;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        box-shadow: none;
        min-width: 0;
        max-height: none;
        overflow: hidden;
        z-index: auto;
    }
    .nav-item.is-expanded .dropdown { display: block; }

    .dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px 12px 32px;
        font-size: 13.5px;
        white-space: normal;
        border-bottom: 1px solid var(--gray-200);
    }
    .dropdown a:last-child { border-bottom: none; }
    .dropdown a:hover {
        background: var(--white);
        padding-left: 36px;
    }

    /* Backdrop behind the drawer */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .nav-backdrop.is-visible { opacity: 1; visibility: visible; }

    /* Campaign banner stacks */
    .campaign-banner-inner { flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; padding: 36px 24px; }
    .campaign-banner h2 { font-size: 26px; }
    .campaign-banner-arrow { align-self: flex-end; width: 56px; height: 56px; }
    .campaign-banner-arrow svg { width: 22px; height: 22px; }

    /* Corporate */
    .corp-intro { grid-template-columns: 1fr; gap: 40px; }
    .corp-intro-img img { height: 320px; }
    .corp-vm { grid-template-columns: 1fr; }

    /* Kampanyalar */
    .camp-grid { grid-template-columns: 1fr; }

    /* Side tabs smaller */
    .side-tab { padding: 10px 13px; font-size: 11px; }
    .side-tab svg { width: 14px; height: 14px; }
}

@media (max-width: 700px) {
    .section { padding: 56px 0; }
    .section-title { font-size: 26px; }
    .section-header { margin-bottom: 36px; }
    .hero { height: 540px; min-height: 540px; }
    .slide-title { font-size: 30px; }
    .slide-sub { font-size: 15px; }
    .slide-btns { flex-direction: column; width: 100%; }
    .slide-btns .btn { width: 100%; }
    .slider-btn { width: 44px; height: 44px; }
    .slider-btn svg { width: 16px; height: 16px; }
    .slider-nav { padding: 14px 16px; gap: 10px; }

    .pkg-grid, .blog-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { min-height: 300px; padding: 40px 0; }
    .page-hero h1 { font-size: 28px; }
    .feature-grid { grid-template-columns: 1fr; }
    .service-gallery { grid-template-columns: 1fr; }
    .upgrade-img img { height: 280px; }
    .upgrade-badge { width: 84px; height: 84px; font-size: 10px; }
    .upgrade-badge strong { font-size: 17px; }
    .cta-band h2 { font-size: 28px; }
    .header-cta-stack { display: none; }
    .header-cta { padding: 10px; border-radius: 50%; }
    .header-cta-icon { margin: 0; }
    .logo { padding: 6px 12px; }
    :root { --logo-w: 126px; --logo-h: 70px; }

    /* Side tabs: hide one label on very small screens, shrink */
    .side-tab { padding: 9px 11px 9px 10px; font-size: 10.5px; border-radius: 12px 0 0 12px; }
    .side-tabs { gap: 8px; }

    /* Modal fits mobile */
    .modal-overlay { padding: max(12px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom)); }
    .modal { max-width: 100%; }
    .modal-head { padding: 22px 22px 20px; }
    .modal-head-flex { gap: 12px; }
    .modal-logo-img { width: 56px; height: 56px; }
    .modal-head h3 { font-size: 18px; }
    .modal-head .modal-sub { font-size: 12.5px; }
    .modal-body { padding: 20px 22px 26px; }
    .modal-body--text { padding: 18px 22px 24px; }
    .modal-close { width: 44px; height: 44px; top: 10px; right: 10px; font-size: 26px; }
    .form-success-overlay { padding: 14px; }
    .form-success-card { padding: 28px 20px 20px; border-radius: 16px; }
    .form-success-card h3 { font-size: 23px; }
    .form-success-card p { font-size: 14px; margin-bottom: 18px; }
    .form-success-close { width: 36px; height: 36px; font-size: 22px; }
    .form-success-icon { width: 72px; height: 72px; margin-bottom: 14px; }
    .form-success-icon svg { width: 40px; height: 40px; }

    /* Side panel fits mobile */
    .side-panel { padding: 24px 20px calc(24px + env(safe-area-inset-bottom)); }
    .side-panel-head h3 { font-size: 16px; }
    .side-panel-head img { width: 54px; height: 54px; }
    .side-panel-quick { grid-template-columns: 1fr; }
    .side-panel-close { width: 44px; height: 44px; top: 10px; right: 10px; font-size: 26px; }

    /* Corporate */
    .corp-work-grid, .corp-principles-grid { grid-template-columns: 1fr; }
    .ref-groups { gap: 20px; }
    .ref-group { padding: 22px 20px; }
    .ref-group-list { grid-template-columns: 1fr; }
    .ref-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ref-stat { padding: 18px 14px; }
    .ref-stat-num { font-size: 28px; }

    /* Campaign banner mobile */
    .campaign-banner-icon { width: 72px; height: 72px; font-size: 36px; border-radius: 18px; }
    .campaign-banner-icon svg { width: 38px; height: 38px; }
    .campaign-banner h2 { font-size: 22px; }
    .campaign-banner p { font-size: 14px; }

    /* Footer bottom */
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .footer-credit { align-items: center; text-align: center; }
    .footer-credit .credit-label { padding-right: 0; }
    .footer-credit .credit-label::before { display: none; }

    /* Blog image header smaller */
    .blog-img { height: 220px; }
    .blog-img-title { font-size: 17px; }
    .blog-detail h1 { font-size: 28px; }
    .blog-detail-img img { height: 240px; }
    .contact-info-card, .contact-form-card { padding: 28px 22px; }
    .header-inner { gap: 10px; }
}

/* =================================================================
   CAMPAIGN BANNER PERKS (homepage pink banner)
   ================================================================= */
.campaign-banner-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
}
.cbp-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--white);
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font-display);
    backdrop-filter: blur(8px);
}
.cbp-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =================================================================
   ALARM PERKS BANNER (alarm advantage callout)
   ================================================================= */
.alarm-perks-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0b2354 0%, #1a3a6e 45%, #2a8fa3 100%);
    color: var(--white);
    isolation: isolate;
}
.alarm-perks-banner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 65%);
    z-index: -1;
}
.alarm-perks-banner::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(41, 175, 196, 0.22) 0%, transparent 65%);
    z-index: -1;
}
.alarm-perks-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 28px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.alarm-perks-head { display: flex; flex-direction: column; gap: 10px; }
.alarm-perks-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(245, 166, 35, 0.22);
    border: 1px solid rgba(245, 166, 35, 0.45);
    padding: 5px 14px;
    border-radius: 20px;
}
.alarm-perks-head h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 34px;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
}
.alarm-perks-head p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.alarm-perks-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.alarm-perks-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px 18px;
    backdrop-filter: blur(8px);
}
.alarm-perks-list strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15.5px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 3px;
}
.alarm-perks-list span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}
.apl-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #e07b00);
    color: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.apl-icon svg { width: 22px; height: 22px; }
.alarm-perks-cta {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* =================================================================
   ALAN HIGHLIGHTS (homepage area sections)
   ================================================================= */
.alan-section { padding: 90px 0; background: var(--white); }
.alan-block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
.alan-block:last-child { margin-bottom: 0; }
.alan-block--reverse { grid-template-columns: 1.15fr 1fr; }
.alan-block--reverse .alan-block-content { order: 2; }
.alan-block--reverse .alan-gallery { order: 1; }
.alan-block-content { display: flex; flex-direction: column; gap: 14px; }
.alan-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(41, 175, 196, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
}
.alan-tag--gold { color: var(--gold); background: rgba(245, 166, 35, 0.14); }
.alan-tag--violet { color: var(--violet, #7c4dff); background: rgba(124, 77, 255, 0.12); }
.alan-block-content h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 30px;
    line-height: 1.18;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
}
.alan-block-content p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700, #475569);
    margin: 0;
}
.alan-mp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.alan-mp {
    display: inline-block;
    padding: 7px 14px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
}
.alan-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.alan-gallery {
    display: grid;
    gap: 12px;
}
.alan-gallery--quad { grid-template-columns: repeat(2, 1fr); }
.alan-gallery--five {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
}
.alan-gallery--five .alan-img:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.alan-img {
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-100, #f1f5f9);
    aspect-ratio: 4 / 3;
    box-shadow: 0 6px 20px rgba(11, 35, 84, 0.08);
}
.alan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.alan-img:hover img { transform: scale(1.04); }

.alan-package {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 64px;
    background: linear-gradient(135deg, #fff8eb 0%, #fef3d9 100%);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.08);
}
.alan-package--reverse { grid-template-columns: 1.15fr 1fr; }
.alan-package--reverse .alan-package-img { order: 2; }
.alan-package--reverse .alan-package-body { order: 1; }
.alan-package-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 12px 40px rgba(11, 35, 84, 0.18);
}
.alan-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.alan-package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 10px 16px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.alan-package-badge strong {
    display: block;
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 2px;
}
.alan-package-badge--gold { background: linear-gradient(135deg, var(--gold), #e07b00); }
.alan-package-body { display: flex; flex-direction: column; gap: 12px; }
.alan-package-body h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    color: var(--navy);
    line-height: 1.18;
    margin: 0;
}
.alan-package-body p {
    font-size: 15.5px;
    color: var(--gray-700, #475569);
    margin: 0;
    line-height: 1.55;
}
.alan-package-list {
    list-style: none;
    margin: 8px 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.alan-package-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--gray-800, #1e293b);
    line-height: 1.5;
}
.alan-package-list li svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =================================================================
   BRAND GRID (urunlerimiz brands)
   ================================================================= */
.brand-grid-section { padding-bottom: 40px; }
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}
.brand-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(11, 35, 84, 0.04);
}
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(11, 35, 84, 0.10);
    border-color: var(--teal);
}
.brand-card-logo {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50, #f8fafc);
    border-radius: 12px;
    padding: 14px;
}
.brand-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.brand-card-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14.5px;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
    min-height: 36px;
    display: flex;
    align-items: center;
}

/* =================================================================
   WIRELESS ALARM SYSTEMS PAGE
   ================================================================= */
.wireless-section { padding-bottom: 50px; }
.wireless-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 12px;
}
.wireless-product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(11, 35, 84, 0.04);
}
.wireless-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--teal);
    box-shadow: 0 16px 38px rgba(11, 35, 84, 0.10);
}
.wireless-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.wireless-card-cat {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(41, 175, 196, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}
.wireless-card-model {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-500, #64748b);
    letter-spacing: 0.04em;
}
.wireless-product-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}
.wireless-product-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-700, #475569);
    margin: 0;
    flex-grow: 1;
}
.wireless-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 8px;
    transition: var(--transition);
    align-self: flex-start;
}
.wireless-cta:hover { color: var(--navy); gap: 12px; }

.wireless-info-section { padding-top: 0; background: var(--gray-50, #f8fafc); }
.wireless-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.wireless-info-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 6px 20px rgba(11, 35, 84, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wireless-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wireless-info-icon svg { width: 28px; height: 28px; }
.wireless-info-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    color: var(--navy);
    margin: 0;
}
.wireless-info-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--gray-700, #475569);
    margin: 0;
}

.wireless-faq-section { background: var(--white); }
.wireless-faq {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wireless-faq-item {
    background: var(--gray-50, #f8fafc);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 18px 22px;
    transition: var(--transition);
}
.wireless-faq-item[open] { background: var(--white); border-color: var(--teal); box-shadow: 0 6px 18px rgba(11, 35, 84, 0.06); }
.wireless-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.wireless-faq-item summary::-webkit-details-marker { display: none; }
.wireless-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}
.wireless-faq-item[open] summary::after { content: "−"; transform: rotate(0); }
.wireless-faq-item p {
    margin: 12px 0 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-700, #475569);
}

/* =================================================================
   REFERENCES wide group (2-column for long lists)
   ================================================================= */
.ref-group--wide { grid-column: 1 / -1; }
.ref-group--wide .ref-group-list { grid-template-columns: repeat(4, 1fr); }
.ref-item strong {
    color: var(--gold);
    font-weight: 800;
}

/* =================================================================
   RESPONSIVE: tablet
   ================================================================= */
@media (max-width: 1100px) {
    .alarm-perks-inner { grid-template-columns: 1fr; gap: 28px; padding: 44px 24px; }
    .alarm-perks-head h2 { font-size: 28px; }
    .alan-block, .alan-block--reverse,
    .alan-package, .alan-package--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .alan-block--reverse .alan-block-content,
    .alan-block--reverse .alan-gallery,
    .alan-package--reverse .alan-package-img,
    .alan-package--reverse .alan-package-body { order: initial; }
    .alan-block-content h3 { font-size: 26px; }
    .wireless-grid { grid-template-columns: repeat(2, 1fr); }
    .wireless-info-grid { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .ref-group--wide .ref-group-list { grid-template-columns: repeat(3, 1fr); }
}

/* =================================================================
   RESPONSIVE: mobile
   ================================================================= */
@media (max-width: 700px) {
    .campaign-banner-perks { gap: 8px; margin-top: 12px; }
    .cbp-item { font-size: 12.5px; padding: 7px 12px; }

    .alarm-perks-banner::before,
    .alarm-perks-banner::after { display: none; }
    .alarm-perks-inner { padding: 36px 18px; }
    .alarm-perks-head h2 { font-size: 22px; }
    .alarm-perks-head p { font-size: 14px; }
    .alarm-perks-list li { padding: 12px 14px; gap: 10px; }
    .alarm-perks-list strong { font-size: 14px; }
    .alarm-perks-list span { font-size: 12.5px; }
    .apl-icon { width: 36px; height: 36px; border-radius: 10px; }
    .apl-icon svg { width: 18px; height: 18px; }

    .alan-section { padding: 56px 0; }
    .alan-block, .alan-package { margin-bottom: 42px; gap: 22px; }
    .alan-package { padding: 22px; border-radius: 18px; }
    .alan-block-content h3 { font-size: 22px; }
    .alan-package-body h3 { font-size: 21px; }
    .alan-gallery--quad { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .alan-gallery--five { grid-template-columns: repeat(2, 1fr); }
    .alan-gallery--five .alan-img:first-child { grid-column: span 2; grid-row: span 1; }
    .alan-mp { font-size: 12px; padding: 6px 12px; }

    .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .brand-card { padding: 18px 14px; }
    .brand-card-logo { height: 90px; padding: 10px; }
    .brand-card-name { font-size: 13px; min-height: 32px; }

    .wireless-grid { grid-template-columns: 1fr; }
    .wireless-product-card { padding: 22px 20px; }
    .wireless-info-card { padding: 26px 22px; }
    .wireless-faq-item { padding: 16px 18px; }
    .wireless-faq-item summary { font-size: 15px; }

    .ref-group--wide .ref-group-list { grid-template-columns: 1fr 1fr; }
}

