:root {
    --navy-950: #07111f;
    --navy-900: #0a1629;
    --navy-850: #0d1c32;
    --navy-800: #12243e;
    --ink: #edf7ff;
    --muted: #c7b7a4;
    --line: rgba(241, 135, 0, 0.18);
    --brand: #f18700;
    --brand-light: #ff9d2e;
    --brand-soft: #ffb15c;
    --brand-deep: #b86400;
    --white-soft: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 16%, rgba(241, 135, 0, 0.16), transparent 28rem),
        radial-gradient(circle at 84% 20%, rgba(241, 135, 0, 0.1), transparent 24rem),
        linear-gradient(180deg, var(--navy-950), var(--navy-900) 38%, #081526 100%);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    padding-block: 12px;
    background: rgba(7, 17, 31, 0.88);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 138px;
    padding: 0;
    background: transparent;
}

.brand-logo {
    display: block;
    width: clamp(118px, 14vw, 172px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
    color: var(--ink);
    background: rgba(241, 135, 0, 0.14);
}

.site-nav a.is-active {
    color: var(--brand-light);
    background: rgba(241, 135, 0, 0.14);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ─── HERO (referans: mobilegroup-sw.com stili) ─── */

.hero {
    position: relative;
    background: #080f1c;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 0 clamp(18px, 4vw, 56px);
    display: flex;
    flex-direction: column;
}

/* Dekoratif ızgara çizgileri */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

/* Sağ üst köşe accent ışık */
.hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 135, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(340px, 480px);
    align-items: center;
    max-width: 1200px;
    min-height: calc(100svh - 120px);
    margin: 0 auto;
    width: 100%;
    gap: clamp(40px, 7vw, 100px);
    padding: 100px 0 60px;
}

/* ─ Etiket (Tag) ─ */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(241, 135, 0, 0.28);
    background: rgba(241, 135, 0, 0.08);
    color: var(--brand-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.hero-tag svg { color: var(--brand); }

/* Başlık accent sözcük */
.hero-accent {
    color: var(--brand);
    position: relative;
    white-space: nowrap;
}

/* ─ Sağ: Kart Stack ─ */
.hero-right {
    display: flex;
    align-items: stretch;
}

.hero-card-stack {
    position: relative;
    background: #0d1929;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44);
}

/* Büyük saydam watermark */
.hero-watermark {
    position: absolute;
    bottom: -20px;
    right: -8px;
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

/* 2×2 stat kartları */
.hcard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.hcard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 200ms ease, background 200ms ease;
}

.hcard:hover {
    border-color: rgba(241, 135, 0, 0.32);
    background: rgba(241, 135, 0, 0.07);
}

.hcard-orange {
    background: rgba(241, 135, 0, 0.12);
    border-color: rgba(241, 135, 0, 0.28);
}

.hcard-num {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.hcard-orange .hcard-num { color: var(--brand-light); }

.hcard-num sup {
    font-size: 0.52em;
    vertical-align: super;
    color: var(--brand);
}

.hcard-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.3;
}

/* Onay rozeti */
.hcard-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(241, 135, 0, 0.10);
    border: 1px solid rgba(241, 135, 0, 0.22);
    color: var(--brand-light);
    font-size: 0.82rem;
    font-weight: 700;
}

/* ─ Alt İstatistik Şeridi ─ */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0 36px;
    gap: 0;
}

.hsbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 24px;
}

.hsbar-item:first-child { padding-left: 0; }
.hsbar-item:last-child  { padding-right: 0; }

.hsbar-item strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
}

.hsbar-item span {
    font-size: 0.80rem;
    color: var(--muted);
}

.hsbar-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    flex: 0 0 1px;
    align-self: stretch;
}

/* ─── Shared typography & buttons ─── */

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    font-size: 1.08rem;
    line-height: 1.25;
}

.hero-lead {
    max-width: 540px;
    color: var(--white-soft);
    font-size: clamp(0.98rem, 1.8vw, 1.16rem);
    line-height: 1.72;
    margin-bottom: 0;
}

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

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 22px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    color: #05111f;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    box-shadow: 0 10px 30px rgba(241, 135, 0, 0.26);
}

.btn-primary:hover { box-shadow: 0 16px 44px rgba(241, 135, 0, 0.38); }

.btn-ghost {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }

.btn-outline {
    color: var(--brand-light);
    border-color: rgba(241, 135, 0, 0.40);
    background: rgba(241, 135, 0, 0.06);
}

.btn-outline:hover {
    background: rgba(241, 135, 0, 0.14);
    border-color: rgba(241, 135, 0, 0.66);
}



.system-visual {
    position: relative;
    min-height: 520px;
    isolation: isolate;
    z-index: 1;
}

.system-visual::before {
    position: absolute;
    inset: 6% 2%;
    content: "";
    border: 1px solid rgba(241, 135, 0, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 135, 0, 0.14), transparent 58%);
    animation: slowPulse 5s ease-in-out infinite;
}

.orbit {
    position: absolute;
    inset: 12%;
    border: 1px dashed rgba(168, 187, 207, 0.28);
    border-radius: 50%;
    animation: rotate 28s linear infinite;
}

.orbit-two {
    inset: 24% 4%;
    animation-duration: 36s;
    animation-direction: reverse;
}

.phone-device,
.accessory {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 24, 43, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.phone-device {
    top: 8%;
    left: 50%;
    z-index: 3;
    width: min(54vw, 270px);
    min-width: 210px;
    aspect-ratio: 9 / 18.5;
    padding: 13px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
        linear-gradient(160deg, #18273d, #030914);
    transform: translateX(-50%) rotate(-7deg);
    animation: phoneFloat 5.6s ease-in-out infinite;
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 76px;
    height: 18px;
    border-radius: 999px;
    background: #030914;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    background:
        radial-gradient(circle at 35% 22%, rgba(241, 135, 0, 0.42), transparent 9rem),
        radial-gradient(circle at 74% 72%, rgba(255, 177, 92, 0.26), transparent 8rem),
        linear-gradient(180deg, #0d223c, #06111f);
}

.phone-screen::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 40%, transparent 44% 100%);
    transform: translateX(-70%);
    animation: screenShine 4.8s ease-in-out infinite;
}

.app-grid {
    position: absolute;
    top: 22%;
    left: 50%;
    display: grid;
    width: 68%;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    transform: translateX(-50%);
}

.app-grid span,
.phone-dock span {
    aspect-ratio: 1;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.app-grid span:nth-child(2),
.app-grid span:nth-child(5) {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
}

.app-grid span:nth-child(3),
.app-grid span:nth-child(6) {
    background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.signal-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(3, 9, 20, 0.58);
}

.signal-card small {
    color: var(--muted);
    font-weight: 800;
}

.signal-card strong {
    color: var(--brand);
    font-size: 2.2rem;
    line-height: 1;
}

.phone-dock {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-radius: 22px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.accessory {
    z-index: 2;
}

.accessory-earbuds {
    top: 18%;
    right: 7%;
    width: 116px;
    height: 82px;
    border-radius: 28px;
    animation: accessoryFloat 5s ease-in-out infinite 400ms;
}

.accessory-earbuds span {
    position: absolute;
    top: 22px;
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 10px;
    background: linear-gradient(135deg, #f4fbff, #9fb6c8);
}

.accessory-earbuds span:first-child {
    left: 26px;
    transform: rotate(-25deg);
}

.accessory-earbuds span:last-child {
    right: 26px;
    transform: rotate(25deg);
}

.accessory-case {
    left: 5%;
    bottom: 18%;
    width: 150px;
    height: 104px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
        #101f35;
    animation: accessoryFloat 5.4s ease-in-out infinite;
}

.accessory-case::before {
    position: absolute;
    inset: 18px 24px auto;
    height: 34px;
    border: 1px solid rgba(241, 135, 0, 0.32);
    border-radius: 18px;
    content: "";
}

.accessory-charger {
    right: 5%;
    bottom: 12%;
    width: 92px;
    height: 120px;
    border-radius: 22px;
    animation: accessoryFloat 4.8s ease-in-out infinite 800ms;
}

.accessory-charger::before,
.accessory-charger::after {
    position: absolute;
    top: -14px;
    width: 8px;
    height: 22px;
    border-radius: 999px;
    content: "";
    background: var(--brand);
}

.accessory-charger::before {
    left: 30px;
}

.accessory-charger::after {
    right: 30px;
}

.accessory-charger span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.charge-line {
    position: absolute;
    inset: 20% 7% auto;
    z-index: 1;
    width: 86%;
    height: auto;
    overflow: visible;
}

.charge-line path {
    fill: none;
    stroke: rgba(241, 135, 0, 0.52);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 12 14;
    animation: dashMove 2.8s linear infinite;
}

.device-card {
    position: absolute;
    z-index: 2;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.device-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-card-main {
    top: 8%;
    right: 8%;
    width: min(78%, 430px);
    aspect-ratio: 4 / 3;
    animation: photoFloatMain 5.8s ease-in-out infinite;
}

.device-card-main img {
    object-position: center;
}

.device-card-top {
    top: 5%;
    left: 2%;
    width: min(38%, 190px);
    aspect-ratio: 1 / 1;
    animation: photoFloatSmall 5s ease-in-out infinite 300ms;
}

.device-card-top img {
    object-position: 18% 58%;
}

.device-card-bottom {
    left: 8%;
    bottom: 9%;
    width: min(50%, 260px);
    aspect-ratio: 4 / 3;
    animation: photoFloatSmall 5.4s ease-in-out infinite 700ms;
}

.device-card-bottom img {
    object-position: 76% 44%;
}

.product-png,
.product-accessory {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.42));
}

.product-iphone-main {
    top: 2%;
    right: 18%;
    width: min(48%, 310px);
    max-height: 92%;
    object-fit: contain;
    animation: pngPhoneFloat 5.6s ease-in-out infinite;
}

.product-iphone-back {
    top: 13%;
    right: 2%;
    width: min(34%, 210px);
    max-height: 78%;
    object-fit: contain;
    opacity: 0.78;
    transform: rotate(8deg);
    animation: pngPhoneFloatBack 6.2s ease-in-out infinite 500ms;
}

.product-accessory {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(228, 237, 244, 0.72));
}

.product-airpods {
    top: 18%;
    left: 7%;
    width: 118px;
    height: 92px;
    border-radius: 30px;
    animation: accessoryFloat 5s ease-in-out infinite 300ms;
}

.product-airpods span {
    position: absolute;
    top: 25px;
    width: 25px;
    height: 35px;
    border-radius: 18px 18px 14px 14px;
    background: #ffffff;
    box-shadow: inset -4px -5px 8px rgba(23, 34, 47, 0.16);
}

.product-airpods span:first-child {
    left: 31px;
    transform: rotate(-16deg);
}

.product-airpods span:last-child {
    right: 31px;
    transform: rotate(16deg);
}

.product-charger {
    left: 17%;
    bottom: 12%;
    width: 104px;
    height: 116px;
    border-radius: 24px;
    animation: accessoryFloat 5.4s ease-in-out infinite 700ms;
}

.product-charger::before,
.product-charger::after {
    position: absolute;
    top: -16px;
    width: 9px;
    height: 25px;
    border-radius: 999px;
    content: "";
    background: var(--brand);
}

.product-charger::before {
    left: 35px;
}

.product-charger::after {
    right: 35px;
}

.product-charger span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    height: 11px;
    border-radius: 999px;
    background: rgba(8, 22, 39, 0.24);
}

img.product-airpods,
img.product-charger {
    border: 0;
    background: transparent;
    object-fit: contain;
}

img.product-airpods {
    width: min(30%, 170px);
    height: auto;
}

img.product-charger {
    width: min(28%, 150px);
    height: auto;
}

.node {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 8px rgba(241, 135, 0, 0.14), 0 0 30px var(--brand);
}

.node-a { top: 18%; right: 20%; }
.node-b { bottom: 24%; left: 16%; background: var(--brand-soft); box-shadow: 0 0 0 8px rgba(255, 177, 92, 0.12), 0 0 30px var(--brand-soft); }
.node-c { top: 56%; right: 6%; background: var(--brand); box-shadow: 0 0 0 8px rgba(241, 135, 0, 0.12), 0 0 30px var(--brand); }

.service-strip {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.strip-track {
    display: flex;
    width: max-content;
    gap: 36px;
    padding: 18px 0;
    animation: marquee 26s linear infinite;
}

.strip-track span {
    color: var(--muted);
    font-size: clamp(0.86rem, 1.8vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.section,
.vision-section,
.contact-section,
.stats-band {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(76px, 10vw, 128px) clamp(18px, 4vw, 56px);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 38px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card,
.solution-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.13), transparent 48%),
        linear-gradient(180deg, rgba(255, 177, 92, 0.1), rgba(241, 135, 0, 0.035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.service-card {
    min-height: 360px;
    padding: 22px;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 135, 0, 0.5);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.16), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: rgba(241, 135, 0, 0.12);
    border: 1px solid rgba(241, 135, 0, 0.24);
    color: var(--brand-light);
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.accent-lime .service-icon  { background: rgba(163, 230, 53, 0.10); border-color: rgba(163, 230, 53, 0.22); color: #a3e635; }
.accent-orange .service-icon { background: rgba(251, 146, 60, 0.12); border-color: rgba(251, 146, 60, 0.26); color: #fb923c; }
.accent-blue .service-icon  { background: rgba(96, 165, 250, 0.10); border-color: rgba(96, 165, 250, 0.22); color: #60a5fa; }

.service-card p,
.solution-card p,
.split-copy p,
.timeline-item p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.72;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-soft);
    font-size: 0.92rem;
}

.service-card li::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    content: "";
    background: var(--brand);
}

/* ─── Career Milestones Grid ─── */

.career-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(76px, 10vw, 128px) clamp(18px, 4vw, 56px);
}

.career-header {
    max-width: 700px;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.career-header h2 {
    margin-bottom: 16px;
}

.career-lead {
    color: var(--muted);
    line-height: 1.72;
    margin: 0;
}

/* ─── Campaigns Section ─── */

.campaigns-section {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.campaign-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    background:
        linear-gradient(145deg, rgba(241, 135, 0, 0.09), transparent 55%),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease;
}

.campaign-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 135, 0, 0.48);
    background:
        linear-gradient(145deg, rgba(241, 135, 0, 0.14), transparent 55%),
        rgba(255, 255, 255, 0.055);
}

.campaign-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.campaign-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 135, 0, 0.14);
    border: 1px solid rgba(241, 135, 0, 0.22);
    color: var(--brand-light);
}

.campaign-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.campaign-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(241, 135, 0, 0.16);
    border: 1px solid rgba(241, 135, 0, 0.28);
    color: var(--brand-light);
    white-space: nowrap;
}

.campaign-card h3 {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.campaign-offer {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.campaign-card > p:not(.campaign-offer) {
    margin: 0 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
}

.campaign-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--brand-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 180ms ease, color 180ms ease;
}

.campaign-cta:hover {
    gap: 10px;
    color: var(--brand-soft);
}



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

.milestone-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px 22px;
    background:
        linear-gradient(145deg, rgba(241, 135, 0, 0.10), transparent 55%),
        rgba(255, 255, 255, 0.036);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
    /* scroll animation start */
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    transition:
        opacity 580ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 580ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 220ms ease;
    transition-delay: calc(var(--si, 0) * 90ms);
}

.milestone-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.milestone-card.is-visible:hover {
    transform: translateY(-6px);
    transition-delay: 0ms;
    border-color: rgba(241, 135, 0, 0.50);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
    background:
        linear-gradient(145deg, rgba(241, 135, 0, 0.16), transparent 55%),
        rgba(255, 255, 255, 0.058);
}

/* Large glowing year number */
.milestone-year {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(241, 135, 0, 0.35));
    letter-spacing: -0.02em;
}

.milestone-card h3 {
    font-size: 0.97rem;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.milestone-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.68;
}

/* 5th card centered in second row */
.milestone-card:nth-child(5) {
    grid-column: 2;
}

.solutions-section {
    padding-top: clamp(40px, 8vw, 90px);
}

.vision-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: clamp(24px, 6vw, 68px);
}

.vision-card {
    min-height: 360px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 38px);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.15), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.vision-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 135, 0, 0.40);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.vision-card:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(255, 177, 92, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.vision-card h2 {
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 3.6vw, 3.4rem);
}

.vision-card p:last-child {
    color: var(--muted);
    line-height: 1.72;
}

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

.solution-card {
    min-height: 180px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 135, 0, 0.48);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.16), transparent 48%),
        linear-gradient(180deg, rgba(255, 177, 92, 0.10), rgba(241, 135, 0, 0.04));
}

.solution-card h3 {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--ink);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-block: 44px;
}

.stat strong sup {
    font-size: 0.52em;
    vertical-align: super;
    color: var(--brand);
}

.stat {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    text-align: center;
}

.stat strong {
    display: block;
    color: var(--brand);
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 8px;
}

.stat span {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.88rem;
    display: block;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--white-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    outline: none;
    background: rgba(4, 12, 23, 0.68);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(241, 135, 0, 0.62);
    box-shadow: 0 0 0 4px rgba(241, 135, 0, 0.12);
}

.site-footer {
    margin-top: clamp(42px, 7vw, 96px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.1), transparent 46%),
        rgba(4, 12, 23, 0.34);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(34px, 7vw, 92px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px clamp(18px, 4vw, 56px) 34px;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-brand .brand {
    width: max-content;
}

.footer-brand p {
    max-width: 440px;
    margin: 0;
    line-height: 1.72;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    color: var(--ink);
    background: rgba(241, 135, 0, 0.09);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 135, 0, 0.55);
    background: rgba(241, 135, 0, 0.16);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.footer-links div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
    color: var(--brand-soft);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 18px clamp(18px, 4vw, 56px) 24px;
}

.footer-bottom p {
    margin: 0;
}

.reveal-enabled [data-reveal] {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 650ms ease, opacity 650ms ease;
}

.reveal-enabled [data-reveal].is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* step-item animation handled via .step-item / .is-visible above */

@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes slowPulse {
    0%, 100% { transform: scale(0.96); opacity: 0.76; }
    50% { transform: scale(1.02); opacity: 1; }
}

@keyframes bars {
    0%, 100% { transform: scaleY(0.78); opacity: 0.76; }
    50% { transform: scaleY(1.06); opacity: 1; }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-7deg); }
    50% { transform: translateX(-50%) translateY(-14px) rotate(-4deg); }
}

@keyframes accessoryFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes screenShine {
    0%, 35% { transform: translateX(-80%); opacity: 0; }
    50% { opacity: 1; }
    78%, 100% { transform: translateX(80%); opacity: 0; }
}

@keyframes dashMove {
    to { stroke-dashoffset: -52; }
}

@keyframes stepGlow {
    0% {
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18), 0 0 0 rgba(241, 135, 0, 0);
    }
    45% {
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25), 0 0 38px rgba(241, 135, 0, 0.28);
    }
    100% {
        box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2), 0 0 0 rgba(241, 135, 0, 0);
    }
}

@keyframes photoFloatMain {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-16px) rotate(0deg); }
}

@keyframes photoFloatSmall {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes pngPhoneFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-18px) rotate(-2deg); }
}

@keyframes pngPhoneFloatBack {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-13px) rotate(11deg); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

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

    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr minmax(280px, 380px);
    }

    .campaigns-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .milestone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .milestone-card:nth-child(5) {
        grid-column: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vision-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header,
    .site-header.is-scrolled,
    .site-header.is-menu-open {
        padding: 12px 18px;
        background: #07111f;
        border-color: var(--line);
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 20002;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 1;
        display: grid;
        align-content: start;
        gap: 8px;
        width: 100%;
        max-height: calc(100dvh - var(--mobile-header-height, 68px));
        overflow-y: auto;
        padding: 18px;
        border-top: 1px solid var(--line);
        background: #07111f;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-nav a {
        border: 1px solid transparent;
        border-radius: 8px;
        padding: 15px 14px;
        color: var(--ink);
        font-size: 1rem;
        background: #0d1c32;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        border-color: rgba(241, 135, 0, 0.24);
        background: rgba(241, 135, 0, 0.12);
    }

    .hero {
        padding-top: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 90px 0 40px;
        gap: 28px;
    }

    .hero-right {
        display: none;
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 0 28px;
    }

    .hsbar-item {
        flex: 1 1 40%;
        padding: 0 12px;
    }

    .hsbar-divider {
        display: none;
    }

    h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    h2 {
        font-size: clamp(1.9rem, 10vw, 3.2rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
    }

    .system-visual {
        min-height: 360px;
    }

    .product-iphone-main {
        right: 18%;
        width: min(56%, 260px);
    }

    .product-iphone-back {
        right: -3%;
        width: min(38%, 178px);
    }

    .product-airpods {
        left: 0;
        width: 98px;
        height: auto;
    }

    .product-charger {
        left: 8%;
        width: 82px;
        height: auto;
    }

    .service-grid,
    .solutions-grid,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .milestone-grid {
        grid-template-columns: 1fr;
    }

    .milestone-card:nth-child(5) {
        grid-column: auto;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .brand {
        min-width: 112px;
        padding: 0;
    }

    .brand-logo {
        width: 104px;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .system-visual {
        min-height: 330px;
    }

    .product-airpods {
        width: 84px;
        height: auto;
    }

    .product-airpods span {
        top: 19px;
    }

    .product-airpods span:first-child {
        left: 21px;
    }

    .product-airpods span:last-child {
        right: 21px;
    }

    .product-charger {
        width: 68px;
        height: auto;
    }

    .product-charger::before {
        left: 21px;
    }

    .product-charger::after {
        right: 21px;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 8px;
        width: calc(100% - 16px);
    }
}

/* ─────────────────────────────────────
   İÇ SAYFALAR — Ortak Stiller
───────────────────────────────────── */

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    background: #080f1c;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 140px clamp(18px, 4vw, 56px) 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(241,135,0,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    max-width: 680px;
}

.page-hero h1.is-compact {
    max-width: 920px;
    font-size: clamp(2.1rem, 4.8vw, 4.4rem);
    line-height: 1.08;
}

.page-hero .lead {
    max-width: 520px;
    color: var(--white-soft);
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    line-height: 1.72;
    margin: 0;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, rgba(241,135,0,0.12), rgba(241,135,0,0.04));
    border-top: 1px solid rgba(241,135,0,0.18);
    border-bottom: 1px solid rgba(241,135,0,0.18);
    padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.cta-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cta-band-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    margin: 0;
    line-height: 1.1;
}

.cta-band-inner p {
    color: var(--muted);
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.cta-band-inner .btn {
    margin-top: 8px;
}

/* Kampanyalar full grid */
.campaigns-grid-full {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

/* "Daha fazla" butonu */
.campaigns-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.campaigns-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hizmetler detay kartları */
.service-grid-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(241,135,0,0.08), transparent 45%),
        rgba(255,255,255,0.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card-detail:hover {
    transform: translateY(-4px);
    border-color: rgba(241,135,0,0.40);
    box-shadow: 0 22px 56px rgba(0,0,0,0.24);
}

.scd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(241,135,0,0.12);
    border: 1px solid rgba(241,135,0,0.24);
    color: var(--brand-light);
    flex-shrink: 0;
}

.scd-icon svg { width: 30px; height: 30px; }

.accent-lime .scd-icon  { background: rgba(163,230,53,0.10); border-color: rgba(163,230,53,0.22); color: #a3e635; }
.accent-orange .scd-icon { background: rgba(251,146,60,0.12); border-color: rgba(251,146,60,0.26); color: #fb923c; }
.accent-blue .scd-icon  { background: rgba(96,165,250,0.10); border-color: rgba(96,165,250,0.22); color: #60a5fa; }

.scd-body h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 10px;
    line-height: 1.2;
}

.scd-summary {
    color: var(--white-soft);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.scd-detail {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.scd-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.scd-list li {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(241,135,0,0.22);
    background: rgba(241,135,0,0.08);
    color: var(--brand-light);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ─────────────────────────────────────
   NOKTA İSTANBUL HARİTASI
───────────────────────────────────── */

.istanbul-map-section { padding-bottom: 0; }

.section-lead {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 0;
}

.dotmap-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
    position: relative;
}

.dotmap-container {
    position: relative;
    width: 100%;
    background: rgba(10, 20, 38, 0.72);
    border: 1px solid rgba(241, 135, 0, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.06);
    padding: 28px;
}

/* SVG tam genişlik */
.dotmap-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Nokta rengi */
.dotmap-svg .dot {
    fill: rgba(160, 185, 215, 0.28);
}

/* ── SVG Marker (pin) ── */
.svg-marker {
    cursor: pointer;
    outline: none;
}

.svg-pin-body {
    fill: var(--brand);
    filter: drop-shadow(0 4px 10px rgba(241,135,0,0.55));
    transition: fill 180ms ease, filter 180ms ease;
}

.svg-pin-dot {
    fill: #05111f;
}

.svg-pulse {
    fill: rgba(241,135,0,0.22);
    animation: svgPulse 2.4s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes svgPulse {
    0%   { r: 10; opacity: .8; }
    80%  { r: 22; opacity: 0;  }
    100% { r: 22; opacity: 0;  }
}

.svg-marker:hover .svg-pin-body,
.svg-marker:focus  .svg-pin-body {
    fill: var(--brand-light);
    filter: drop-shadow(0 6px 16px rgba(241,135,0,0.80));
}

.svg-marker.is-active .svg-pin-body {
    fill: var(--brand-soft);
}

/* ── Floating tooltip ── */
.map-tooltip {
    position: fixed;
    z-index: 9999;
    width: 286px;
    background: #0f1e31;
    border: 1px solid rgba(241,135,0,0.24);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.65);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
    transform: translateY(6px);
}

.map-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.tooltip-map-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #0a1726;
}

.tooltip-map-thumb iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    filter: saturate(0.85) brightness(0.88);
}

.tooltip-body { padding: 12px 14px 14px; }

.tooltip-district {
    margin: 0 0 3px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tooltip-name {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.tooltip-address {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.tooltip-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    color: #05111f;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.tooltip-cta:hover {
    box-shadow: 0 6px 18px rgba(241,135,0,0.46);
    transform: translateY(-1px);
}

.tooltip-cta svg { width: 13px; height: 13px; }

@media (max-width: 640px) {
    .map-tooltip { width: 220px; }
    .tooltip-map-thumb { height: 100px; }
    .dotmap-container { padding: 16px 10px; }
}

/* ─────────────────────────────────────
   Armes Group / Ekosistem
───────────────────────────────────── */

.partner-strip-wrap {
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 clamp(18px, 4vw, 56px);
    position: relative;
    z-index: 2;
}

.partner-strip-label {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.partner-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.07), transparent 48%),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.partner-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 18px clamp(14px, 2vw, 26px);
    transition: background 180ms ease, transform 180ms ease;
}

.partner-strip-item img {
    display: block;
    max-width: min(150px, 100%);
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
    opacity: 0.9;
    transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.partner-strip-item:hover {
    background: rgba(255, 255, 255, 0.045);
}

.partner-strip-item:hover img {
    opacity: 1;
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.partner-strip-divider {
    display: none;
}

.ecosystem-section {
    overflow: hidden;
}

.ecosystem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
}

.ecosystem-text {
    display: flex;
    flex-direction: column;
}

.ecosystem-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.ecosystem-copy {
    color: var(--white-soft);
    font-size: clamp(0.95rem, 1.5vw, 1.06rem);
    line-height: 1.76;
    margin-bottom: 28px;
}

/* İstatistik satırı */
.ecosystem-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4px;
}

.eco-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.eco-stat:last-child { border-right: none; }

.eco-stat strong {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--brand-light);
    line-height: 1;
    letter-spacing: -0.03em;
}

.eco-stat strong sup {
    font-size: 0.52em;
    vertical-align: super;
    color: var(--brand);
}

.eco-stat span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

/* Partner kartları */
.ecosystem-partners {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.partner-turkcell {
    border-color: rgba(0, 181, 226, 0.22);
    background: linear-gradient(135deg, rgba(0, 181, 226, 0.07), transparent 55%),
                rgba(255, 255, 255, 0.02);
}

.partner-turkcell:hover {
    border-color: rgba(0, 181, 226, 0.44);
    background: linear-gradient(135deg, rgba(0, 181, 226, 0.12), transparent 55%),
                rgba(255, 255, 255, 0.03);
}

.partner-intouch {
    border-color: rgba(241, 135, 0, 0.22);
    background: linear-gradient(135deg, rgba(241, 135, 0, 0.07), transparent 55%),
                rgba(255, 255, 255, 0.02);
}

.partner-intouch:hover {
    border-color: rgba(241, 135, 0, 0.44);
    background: linear-gradient(135deg, rgba(241, 135, 0, 0.12), transparent 55%),
                rgba(255, 255, 255, 0.03);
}

.partner-logo-wrap,
.partner-card-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.partner-logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.partner-card-logo {
    display: block;
    max-width: 154px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.24));
}

.partner-card-logo-turkcell {
    max-width: 154px;
    max-height: 46px;
}

.partner-card-logo-intouch {
    max-width: 142px;
    max-height: 46px;
}

.partner-real-logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-name {
    display: block;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.partner-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.partner-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 14px;
}

.partner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 181, 226, 0.12);
    border: 1px solid rgba(0, 181, 226, 0.28);
    color: #4dd9f5;
    font-size: 0.74rem;
    font-weight: 800;
}

.partner-tag svg { width: 13px; height: 13px; }

.partner-tag-orange {
    background: rgba(241, 135, 0, 0.12);
    border-color: rgba(241, 135, 0, 0.28);
    color: var(--brand-light);
}

/* 4'lü pillar grid (armesgroup.php) */
.eco-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
}

.eco-pillar {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(241, 135, 0, 0.06), transparent 50%),
                rgba(255, 255, 255, 0.02);
    transition: border-color 220ms ease, transform 220ms ease;
}

.eco-pillar:hover {
    border-color: rgba(241, 135, 0, 0.36);
    transform: translateY(-5px);
}

.eco-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(241, 135, 0, 0.12);
    border: 1px solid rgba(241, 135, 0, 0.22);
    color: var(--brand-light);
    margin-bottom: 16px;
}

.eco-pillar-icon svg { width: 22px; height: 22px; }

.eco-pillar h3 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.eco-pillar p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .eco-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .ecosystem-inner {
        grid-template-columns: 1fr;
    }
    .partner-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .partner-strip-wrap {
        margin-top: 22px;
    }
    .partner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .partner-strip-item {
        min-height: 86px;
        padding: 14px;
    }
    .partner-strip-item img {
        max-height: 38px;
    }
    .eco-pillars {
        grid-template-columns: 1fr;
    }
    .ecosystem-stats {
        flex-wrap: wrap;
    }
    .eco-stat {
        flex: 1 1 45%;
        border-bottom: 1px solid var(--line);
    }
}

/* ─────────────────────────────────────
   Şubelerimiz
───────────────────────────────────── */


.istanbul-map-section {
    padding-bottom: 0;
}

.section-lead {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 0;
}

.dotmap-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
}

.dotmap-container {
    position: relative;
    width: 100%;
    background: rgba(10, 20, 38, 0.72);
    border: 1px solid rgba(241, 135, 0, 0.14);
    border-radius: 20px;
    overflow: visible;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: clamp(18px, 3vw, 34px) clamp(14px, 3vw, 30px);
}

/* Noktalı harita SVG */
.dotmap-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.dotmap-svg .dot {
    fill: rgba(204, 212, 222, 0.58);
    transition: fill 300ms ease;
}

/* İstanbul yazısı */
.dotmap-label {
    position: absolute;
    bottom: 20px;
    right: 32px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ─── Şube Marker ─── */
.branch-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
    /* hover alanını genişlet */
}

/* Marker aktif olduğunda tooltip göster */
.branch-marker:hover .marker-tooltip,
.branch-marker:focus-within .marker-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px) scale(1);
    pointer-events: auto;
    visibility: visible;
}

/* Pin ikon */
.marker-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 6px 20px rgba(241, 135, 0, 0.55);
    transition: transform 220ms ease, box-shadow 220ms ease;
    position: relative;
    z-index: 2;
}

.marker-pin svg {
    width: 18px;
    height: 18px;
    color: #05111f;
    transform: rotate(45deg);
}

.branch-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.18);
    box-shadow: 0 10px 30px rgba(241, 135, 0, 0.72);
}

/* Pulse halkası */
.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(241, 135, 0, 0.28);
    transform: translate(-50%, -50%);
    animation: markerPulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes markerPulse {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.9; }
    80%  { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* ─── Google Maps benzeri Tooltip ─── */
.marker-tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px) scale(0.94);
    width: 260px;
    background: #0f1e31;
    border: 1px solid rgba(241, 135, 0, 0.22);
    border-radius: 14px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.60),
        0 4px 16px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 220ms ease,
        visibility 220ms ease;
    z-index: 100;
    /* Tooltip ok */
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(241, 135, 0, 0.22);
}

.marker-tooltip::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0f1e31;
    z-index: 1;
}

/* Harita mini önizleme */
.tooltip-map-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #0a1726;
    position: relative;
}

.tooltip-map-thumb iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    filter: saturate(0.8) contrast(1.05) brightness(0.88);
}

/* Tooltip içerik */
.tooltip-body {
    padding: 12px 14px 14px;
}

.tooltip-district {
    margin: 0 0 3px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tooltip-name {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.tooltip-address {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.tooltip-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    color: #05111f;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: box-shadow 180ms ease, transform 180ms ease;
    pointer-events: auto;
}

.tooltip-cta:hover {
    box-shadow: 0 6px 18px rgba(241, 135, 0, 0.46);
    transform: translateY(-1px);
}

.tooltip-cta svg {
    width: 13px;
    height: 13px;
}

/* Responsive */
@media (max-width: 640px) {
    .marker-tooltip {
        width: 220px;
    }

    .tooltip-map-thumb {
        height: 100px;
    }
}

/* ─────────────────────────────────────
   Şubelerimiz
───────────────────────────────────── */

/* Şubelerimiz */
.branch-stats {
    display: flex;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px,4vw,56px);
}

.bstat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
}

.bstat:last-child { border-right: none; }

.bstat strong {
    font-size: clamp(2rem,5vw,3.6rem);
    font-weight: 900;
    color: var(--brand-light);
    line-height: 1;
    letter-spacing: -0.03em;
}

.bstat strong sup {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--brand);
}

.bstat span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
}

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

.branch-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(241,135,0,0.07), transparent 50%),
        rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.branch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241,135,0,0.40);
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}

.branch-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(241,135,0,0.12);
    border: 1px solid rgba(241,135,0,0.22);
    color: var(--brand-light);
}

.branch-icon svg { width: 22px; height: 22px; }

.branch-body { flex: 1; }

.branch-body h3 {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.branch-district {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.branch-address {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.branch-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 180ms ease, color 180ms ease;
    margin-top: auto;
}

.branch-cta:hover { gap: 8px; color: var(--brand-soft); }

/* İletişim sayfası eklentileri */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ci-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(241,135,0,0.12);
    border: 1px solid rgba(241,135,0,0.22);
    color: var(--brand-light);
}

.ci-icon svg { width: 20px; height: 20px; }

.contact-info-item strong {
    display: block;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-item span {
    color: var(--muted);
    font-size: 0.85rem;
}

.contact-map {
    overflow: hidden;
    min-height: 320px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.12), transparent 48%),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: saturate(0.9) contrast(1.05);
}

.contact-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    color: var(--ink);
    font-size: 0.96rem;
    font-family: inherit;
    outline: none;
    transition: border-color 180ms ease;
    appearance: none;
    cursor: pointer;
}

.contact-form select:focus {
    border-color: var(--brand);
}

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

.contact-page {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}

.contact-card-list {
    display: grid;
    gap: 20px;
}

.contact-card,
.contact-map-panel {
    border: 1px solid rgba(241, 135, 0, 0.22);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(241, 135, 0, 0.1), transparent 48%),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.contact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 112px;
    padding: 22px 26px;
}

.contact-card .ci-icon,
.map-panel-title .ci-icon {
    background: rgba(241, 135, 0, 0.13);
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.42;
}

.contact-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-action {
    display: inline-flex;
    margin-top: 7px;
    color: var(--brand-soft);
    font-size: 0.9rem;
    font-weight: 800;
    transition: color 180ms ease, transform 180ms ease;
}

.contact-action:hover {
    color: var(--brand-light);
    transform: translateX(3px);
}

.contact-map-panel {
    overflow: hidden;
    padding: 18px;
}

.map-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--ink);
}

.map-panel-title .ci-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.map-panel-title svg {
    width: 18px;
    height: 18px;
}

.contact-map-panel .contact-map {
    min-height: 380px;
}

.contact-map-panel .contact-map iframe {
    height: 380px;
}

.map-open-btn {
    width: 100%;
    margin-top: 18px;
}

.form-alert {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 16px;
    line-height: 1.6;
}

.form-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.form-alert-success {
    color: #fff7ed;
    border-color: rgba(241, 135, 0, 0.48);
    background: rgba(241, 135, 0, 0.14);
}

.form-alert-error {
    color: #ffe9d5;
    border-color: rgba(255, 117, 37, 0.5);
    background: rgba(255, 117, 37, 0.12);
}

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive – iç sayfalar */
@media (max-width: 1080px) {
    .campaigns-grid-full {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .branch-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .service-card-detail {
        grid-template-columns: 64px 1fr;
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .page-hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }
    .campaigns-grid-full {
        grid-template-columns: 1fr;
    }
    .branch-grid {
        grid-template-columns: 1fr;
    }
    .branch-stats {
        flex-wrap: wrap;
    }
    .bstat {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .service-card-detail {
        grid-template-columns: 1fr;
    }
    .scd-icon {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 760px) {
    .footer-main,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding-top: 36px;
    }

    .footer-links {
        gap: 24px;
    }
}

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

    .contact-map-panel .contact-map,
    .contact-map-panel .contact-map iframe {
        min-height: 320px;
        height: 320px;
    }
}

@media (max-width: 520px) {
    .contact-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }
}
