/* ============================================================
   MY TEDARİK — ULTRA UI 2026
   Color refresh (violet+cyan) + Apple Pin Scroll + Orbital sectors
   ============================================================ */

/* ---------- HERO BADGE — violet vibe ---------- */
.hero-badge {
    background: rgba(47,72,109,0.14) !important;
    border: 1px solid rgba(47,72,109,0.38) !important;
    color: #d2c7b8 !important;
}
.hero-badge i { color: #d2c7b8; }

/* ---------- SEKTÖR ORBITAL (dönen sektör çarkı) ---------- */
.sectors-orbit {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(ellipse at 70% 50%, #16172e 0%, #0a0b1e 70%);
    overflow: hidden;
    isolation: isolate;
}
.sectors-orbit-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(47,72,109,0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(47,72,109,0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: -1;
}
.sectors-orbit::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 65%);
    pointer-events: none;
}
.sectors-orbit-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sectors-orbit-text .section-badge {
    background: rgba(47,72,109,0.14);
    color: #d2c7b8;
    border: 1px solid rgba(47,72,109,0.32);
    margin-bottom: 22px;
}
.sectors-orbit-text .section-title {
    color: #fff !important;
    font-size: clamp(36px, 4.8vw, 60px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 24px !important;
}
.sectors-orbit-text .section-title span {
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    font-style: italic;
    font-weight: 300;
}
.sectors-orbit-desc {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}
.sectors-orbit-active {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(47,72,109,0.25);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    min-width: 260px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.sectors-orbit-active-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2f486d;
    text-transform: uppercase;
}
.sectors-orbit-active-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

/* Orbital wheel */
.sectors-orbit-wheel {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    --orbit-r: 260px;
}
@media (max-width: 1200px) { .sectors-orbit-wheel { --orbit-r: 220px; } }
@media (max-width: 960px)  { .sectors-orbit-wheel { --orbit-r: 180px; } }
@media (max-width: 560px)  { .sectors-orbit-wheel { --orbit-r: 130px; } }
.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    width: 140px; height: 140px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    z-index: 3;
}
.orbit-core-inner {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    display: grid; place-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow:
        0 0 40px rgba(47,72,109,0.5),
        0 0 80px rgba(47,72,109,0.3),
        inset 0 0 20px rgba(255,255,255,0.2);
    animation: core-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
@keyframes core-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
}
@keyframes sector-fade {
    0%   { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}
.orbit-core-ring {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(47,72,109,0.3);
    border-radius: 50%;
    animation: ring-rotate 8s linear infinite;
}
.orbit-core-ring::before,
.orbit-core-ring::after {
    content: "";
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #2f486d;
    box-shadow: 0 0 12px #2f486d;
}
.orbit-core-ring::before { top: -4px; left: 50%; transform: translateX(-50%); }
.orbit-core-ring::after  { bottom: -4px; left: 50%; transform: translateX(-50%); background: #2f486d; box-shadow: 0 0 12px #2f486d; }
.orbit-core-ring-2 {
    inset: -44px;
    border-color: rgba(47,72,109,0.18);
    animation: ring-rotate 14s linear infinite reverse;
}
@keyframes ring-rotate {
    to { transform: rotate(360deg); }
}

.orbit-ring {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 620px;
    max-height: 620px;
    border-radius: 50%;
    animation: orbit-spin 40s linear infinite;
}
.sectors-orbit-wheel:hover .orbit-ring,
.sectors-orbit-wheel:hover .orbit-item {
    animation-play-state: paused;
}
@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}
.orbit-item {
    --angle: calc(var(--i) * (360deg / var(--total)));
    position: absolute;
    top: 50%; left: 50%;
    margin: -44px 0 0 -44px;
    transform:
        rotate(var(--angle))
        translateY(calc(-1 * var(--orbit-r)))
        rotate(calc(-1 * var(--angle)));
    animation: orbit-item-counter 40s linear infinite;
    cursor: pointer;
}
/* Counter-rotation: keep position fixed (outer angle unchanged),
   rotate item -360deg around its own center to cancel parent +360deg. */
@keyframes orbit-item-counter {
    from { transform: rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle))); }
    to   { transform: rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle) - 360deg)); }
}
.orbit-item-inner {
    display: grid;
    place-items: center;
    width: 88px; height: 88px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    gap: 6px;
    padding: 10px 6px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    position: relative;
    overflow: hidden;
}
.orbit-item-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}
.orbit-item-inner i {
    font-size: 22px;
    color: #d2c7b8;
    transition: all 0.35s ease;
}
.orbit-item-inner em {
    font-style: normal;
    letter-spacing: 0.3px;
    font-size: 10.5px;
    opacity: 0.92;
}
.orbit-item:hover .orbit-item-inner,
.orbit-item.active .orbit-item-inner {
    transform: scale(1.18);
    border-color: transparent;
    box-shadow: 0 14px 40px rgba(47,72,109,0.45), 0 0 0 1px rgba(47,72,109,0.4);
}
.orbit-item:hover .orbit-item-inner::before,
.orbit-item.active .orbit-item-inner::before {
    opacity: 1;
}
.orbit-item:hover .orbit-item-inner i,
.orbit-item.active .orbit-item-inner i {
    color: #fff;
    transform: scale(1.1);
}

/* ---------- APPLE PIN SCROLL HIZMETLER ---------- */
.services-pin {
    position: relative;
    background: #07081a;
    color: #fff;
    isolation: isolate;
}
.services-pin-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    z-index: 1;
}
.services-pin-trigger {
    height: 100vh;
    pointer-events: none;
}
.services-pin-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(47,72,109,0.25) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(47,72,109,0.18) 0%, transparent 55%),
        #0a0b1e;
}
.visual-gradient-base {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 180deg at 50% 50%, rgba(47,72,109,0.15), rgba(47,72,109,0.12), rgba(210,199,184,0.1), rgba(47,72,109,0.15));
    animation: visual-spin 18s linear infinite;
    opacity: 0.7;
    filter: blur(40px);
}
@keyframes visual-spin { to { transform: rotate(360deg); } }

.visual-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2), transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    pointer-events: none;
}
.visual-layer.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.visual-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}
.visual-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 520px; height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,72,109,0.45) 0%, rgba(47,72,109,0.2) 40%, transparent 70%);
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}
.visual-number {
    position: absolute;
    top: 40px; left: 40px;
    font-size: 140px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
    line-height: 1;
    font-family: var(--font);
    z-index: 2;
}
.visual-icon-wrap {
    position: relative;
    width: 260px; height: 260px;
    display: grid;
    place-items: center;
    z-index: 2;
}
.visual-icon-ring {
    position: absolute;
    inset: 0;
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: ring-rotate 22s linear infinite;
}
.visual-icon-ring::before {
    content: "";
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #2f486d;
    box-shadow: 0 0 16px #2f486d, 0 0 30px rgba(47,72,109,0.5);
}
.visual-icon {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47,72,109,0.25), rgba(47,72,109,0.18));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    display: grid; place-items: center;
    color: #fff;
    font-size: 70px;
    box-shadow:
        0 20px 60px rgba(47,72,109,0.35),
        inset 0 0 40px rgba(255,255,255,0.06);
}

.services-pin-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8vw 80px 6vw;
    background:
        linear-gradient(180deg, #0f1028 0%, #0a0b1e 100%);
}
.services-pin-header {
    margin-bottom: 50px;
}
.section-badge-dark {
    background: rgba(47,72,109,0.15) !important;
    color: #d2c7b8 !important;
    border: 1px solid rgba(47,72,109,0.3) !important;
    margin-bottom: 18px;
}
.services-pin-title {
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}
.services-pin-title span {
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 400;
}
.services-pin-progress {
    display: flex;
    gap: 8px;
}
.pin-dot {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255,255,255,0.12);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    cursor: pointer;
}
.pin-dot.active {
    width: 64px;
    background: linear-gradient(90deg, #2f486d, #2f486d);
    box-shadow: 0 0 12px rgba(47,72,109,0.5);
}
.services-pin-slot {
    position: relative;
    min-height: 320px;
}
.pin-service {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2), transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    pointer-events: none;
}
.pin-service.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.1s;
}
.pin-service-index {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2f486d;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}
.pin-service-index span {
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}
.pin-service-title {
    font-size: clamp(38px, 4.4vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #d2c7b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pin-service-desc {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 40px;
}
.pin-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    box-shadow: 0 14px 40px rgba(47,72,109,0.4);
}
.pin-service-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pin-service-cta > * { position: relative; z-index: 1; }
.pin-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(47,72,109,0.6);
}
.pin-service-cta:hover::before { opacity: 1; }
.pin-service-cta i { transition: transform 0.3s ease; }
.pin-service-cta:hover i { transform: translateX(6px); }

.services-pin-after { background: #07081a; padding: 20px 0 80px; }
.services-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}
.services-all-link:hover {
    color: #fff;
    border-color: rgba(47,72,109,0.5);
    background: rgba(47,72,109,0.08);
}

/* ---------- TESTIMONIALS CONTROLS + FIX ---------- */
.testimonials-wrap {
    position: relative;
    padding: 0 10px;
}
.testimonials-swiper {
    overflow: hidden !important;
    padding: 10px 0 20px !important;
}
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}
.testimonial-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(15,16,40,0.08);
    color: var(--primary);
    font-size: 15px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    box-shadow: 0 4px 20px rgba(15,16,40,0.06);
}
.testimonial-nav:hover {
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(47,72,109,0.4);
    border-color: transparent;
}
.testimonial-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.testimonials-controls .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex;
    gap: 6px;
}
.testimonials-controls .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(15,16,40,0.2);
    opacity: 1;
    transition: all 0.3s;
}
.testimonials-controls .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2f486d, #2f486d);
}

/* Global refresh */
::selection {
    background: rgba(47,72,109,0.32);
    color: #fff;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2f486d, #2f486d) !important;
}

/* Section title gradient tune for light sections */
.section-title span {
    background: linear-gradient(135deg, #2f486d 0%, #2f486d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section-divider {
    background: linear-gradient(90deg, transparent, #2f486d, #2f486d, transparent) !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .sectors-orbit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sectors-orbit-text { text-align: center; }
    .sectors-orbit-text .section-title { text-align: center !important; }
    .sectors-orbit-desc { margin: 0 auto 28px; }
    .sectors-orbit-active { align-self: center; }
    .sectors-orbit-wheel { max-width: 420px; }
    .orbit-item-inner { width: 70px; height: 70px; font-size: 10px; }
    .orbit-item-inner i { font-size: 18px; }
    .orbit-core-inner { width: 66px; height: 66px; font-size: 24px; }

    .services-pin { display: flex; flex-direction: column; }
    .services-pin-sticky {
        position: relative;
        grid-template-columns: 1fr;
        height: auto;
    }
    .services-pin-trigger { display: none; }
    .services-pin-visual { height: 45vh; }
    .services-pin-content { height: auto; min-height: 55vh; padding: 60px 28px; }
    .visual-number { font-size: 80px; top: 20px; left: 24px; }
    .visual-icon-wrap { width: 200px; height: 200px; }
    .visual-icon { width: 140px; height: 140px; font-size: 54px; }
    .pin-service-title { font-size: clamp(30px, 7vw, 44px); }
    .pin-service-desc { font-size: 15px; }
    .pin-service { position: relative; opacity: 1; transform: none; pointer-events: auto; margin-bottom: 40px; }
    .pin-service:last-child { margin-bottom: 0; }
    .visual-layer { position: absolute; }
    .visual-layer:not(.active) { display: none; }
}
@media (max-width: 560px) {
    .sectors-orbit { padding: 80px 0; }
    .sectors-orbit-wheel { max-width: 320px; }
    .orbit-item-inner { width: 58px; height: 58px; font-size: 9px; padding: 6px 4px; gap: 3px; }
    .orbit-item-inner i { font-size: 15px; }
    .orbit-item-inner em { display: none; }
    .orbit-core-inner { width: 52px; height: 52px; font-size: 20px; }
    .orbit-core { width: 100px; height: 100px; }
}

/* ============================================================
   CORPORATE OVERRIDES — final pass
   - kill blinking elements
   - kill scroll-progress bar (defensive)
   - premium browser scrollbar
   - stats-corporate layout
   - softer hero badge
   ============================================================ */

/* Kill scroll-progress */
#scroll-progress { display: none !important; }

/* Tame / stop blinking animations */
.hero-section .hero-content .container::before {
    animation: none !important;
    opacity: 0.85;
    background: linear-gradient(90deg, var(--accent-light) 0%, rgba(210,199,184,0.2) 100%) !important;
    box-shadow: none !important;
}
.section-divider::after { animation: none !important; opacity: 0.55; }
.hero-section .swiper::before { animation: none !important; opacity: 0.8; box-shadow: none !important; }
.hero-badge i { color: var(--beige) !important; }
.hero-badge {
    background: rgba(47,72,109,0.35) !important;
    border: 1px solid rgba(210,199,184,0.28) !important;
    color: #f3eae0 !important;
    box-shadow: none !important;
}
.section-badge {
    background: rgba(47,72,109,0.08) !important;
    border: 1px solid rgba(47,72,109,0.22) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}
.section-badge-dark {
    background: rgba(210,199,184,0.12) !important;
    border: 1px solid rgba(210,199,184,0.28) !important;
    color: var(--beige) !important;
}

/* Premium, minimal browser scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #2f486d #f3eae0;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f3eae0;
}
::-webkit-scrollbar-thumb {
    background: #2f486d;
    border-radius: 0;
    border: 2px solid #f3eae0;
}
::-webkit-scrollbar-thumb:hover {
    background: #223148;
}
::-webkit-scrollbar-corner {
    background: #f3eae0;
}

/* ============================================================
   STATS CORPORATE — dikey, editorial rakam vitrini
   ============================================================ */
.stats-corporate {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #1a2436 0%, #223148 55%, #2f486d 100%);
    color: #f3eae0;
    overflow: hidden;
}
.stats-corporate-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(210,199,184,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(243,234,224,0.06) 0%, transparent 55%);
}
.stats-corporate-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(243,234,224,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,224,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 85%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 85%);
}
.stats-corporate .container { position: relative; z-index: 2; }
.stats-corporate-head {
    text-align: center;
    margin-bottom: 64px;
}
.stats-corporate-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--beige);
    padding: 7px 18px;
    border: 1px solid rgba(210,199,184,0.35);
    border-radius: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.stats-corporate-title {
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #f3eae0;
    max-width: 740px;
    margin: 0 auto;
}
.stats-corporate-title span {
    color: var(--beige);
    font-style: italic;
    font-weight: 500;
}
.stats-corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(210,199,184,0.18);
    border-bottom: 1px solid rgba(210,199,184,0.18);
}
.stat-corp {
    position: relative;
    padding: 48px 28px 52px;
    border-right: 1px solid rgba(210,199,184,0.14);
    transition: background 0.35s ease;
    overflow: hidden;
}
.stat-corp:last-child { border-right: none; }
.stat-corp:hover {
    background: rgba(210,199,184,0.05);
}
.stat-corp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.stat-corp-index {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(210,199,184,0.55);
}
.stat-corp-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210,199,184,0.25);
    border-radius: 50%;
    color: var(--beige);
    font-size: 15px;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.stat-corp:hover .stat-corp-icon {
    border-color: var(--beige);
    color: #f3eae0;
    transform: rotate(-6deg);
}
.stat-corp-num-wrap {
    margin-bottom: 22px;
}
.stat-corp-num {
    display: inline-block;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #f3eae0;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #f3eae0 0%, #d2c7b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-corp-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-corp-label {
    font-size: 15px;
    font-weight: 700;
    color: #f3eae0;
    letter-spacing: 0.2px;
}
.stat-corp-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(243,234,224,0.55);
    font-weight: 500;
}
.stat-corp-line {
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: var(--beige);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s ease;
}
.stat-corp:hover .stat-corp-line { transform: scaleX(1); }

@media (max-width: 960px) {
    .stats-corporate { padding: 80px 0; }
    .stats-corporate-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-corp:nth-child(2) { border-right: none; }
    .stat-corp:nth-child(1), .stat-corp:nth-child(2) {
        border-bottom: 1px solid rgba(210,199,184,0.14);
    }
    .stat-corp { padding: 36px 22px 40px; }
    .stat-corp-top { margin-bottom: 28px; }
    .stat-corp-num-wrap { margin-bottom: 14px; }
}
@media (max-width: 560px) {
    .stats-corporate-grid { grid-template-columns: 1fr; }
    .stat-corp { border-right: none; border-bottom: 1px solid rgba(210,199,184,0.14); }
    .stat-corp:last-child { border-bottom: none; }
}

/* Ultra-soft corporate glow on CTA buttons — strip neon shadows */
.btn-hero-primary, .btn-cta-primary {
    box-shadow: 0 4px 14px rgba(34,49,72,0.25) !important;
}
.btn-hero-primary:hover, .btn-cta-primary:hover {
    box-shadow: 0 8px 22px rgba(34,49,72,0.35) !important;
}

/* Services-pin: ensure active state gets solid corporate tone */
.pin-service-cta {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary) !important;
    box-shadow: 0 8px 22px rgba(34,49,72,0.18) !important;
}
.pin-service-cta:hover {
    background: var(--secondary) !important;
    color: #ffffff !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 14px 30px rgba(34,49,72,0.30) !important;
}

/* ============================================================
   LIGHT-THEME OVERRIDE — sectors orbit + services pin
   (kullanıcı isteği: zemin beyaz, daha küçük pin, transition akıcı)
   ============================================================ */

/* --- SECTORS ORBIT → WHITE --- */
.sectors-orbit {
    background: #ffffff !important;
    padding: 100px 0 !important;
}
.sectors-orbit::after,
.sectors-orbit-bg {
    display: none !important;
}
.sectors-orbit-text .section-badge {
    background: rgba(47,72,109,0.08) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(47,72,109,0.22) !important;
}
.sectors-orbit-text .section-title {
    color: var(--primary) !important;
}
.sectors-orbit-text .section-title span {
    background: linear-gradient(135deg, #2f486d 0%, #223148 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sectors-orbit-desc {
    color: #5a6478 !important;
}
.sectors-orbit-active {
    background: #f8f6f2 !important;
    border: 1px solid rgba(47,72,109,0.15) !important;
    box-shadow: 0 4px 18px rgba(34,49,72,0.06);
}
.sectors-orbit-active-label {
    color: var(--secondary) !important;
}
.sectors-orbit-active-name {
    color: var(--primary) !important;
}

/* Orbit core daha sakin, beyaz zemine uygun */
.orbit-core-inner {
    box-shadow:
        0 10px 36px rgba(34,49,72,0.25),
        0 0 0 1px rgba(34,49,72,0.08),
        inset 0 0 18px rgba(255,255,255,0.2) !important;
}
.orbit-core-ring {
    border-color: rgba(47,72,109,0.22) !important;
}
.orbit-core-ring-2 {
    border-color: rgba(47,72,109,0.12) !important;
}

/* Orbit items — beyaz zeminde kurumsal kartlar */
.orbit-item-inner {
    background: #ffffff !important;
    border: 1px solid rgba(47,72,109,0.14) !important;
    color: var(--primary) !important;
    box-shadow: 0 6px 20px rgba(34,49,72,0.07);
    backdrop-filter: none !important;
}
.orbit-item-inner i {
    color: var(--secondary) !important;
}
.orbit-item:hover .orbit-item-inner,
.orbit-item.active .orbit-item-inner {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 32px rgba(34,49,72,0.28), 0 0 0 1px rgba(34,49,72,0.15) !important;
}
.orbit-item:hover .orbit-item-inner i,
.orbit-item.active .orbit-item-inner i {
    color: var(--beige) !important;
}

/* --- SERVICES PIN → WHITE + KÜÇÜK --- */
.services-pin {
    background: #ffffff !important;
    color: var(--primary) !important;
}

/* Sticky & triggers: daha küçük scroll alanı */
.services-pin-sticky {
    height: 82vh !important;
    min-height: 620px;
}
.services-pin-trigger {
    height: 65vh !important;
}
.services-pin-visual,
.services-pin-content {
    height: 82vh !important;
    min-height: 620px;
}

/* Visual side: açık krem zemin + navy accents */
.services-pin-visual {
    background:
        radial-gradient(circle at 30% 30%, rgba(47,72,109,0.06) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(210,199,184,0.35) 0%, transparent 55%),
        #faf8f4 !important;
}
.visual-gradient-base {
    background:
        conic-gradient(from 180deg at 50% 50%, rgba(47,72,109,0.08), rgba(210,199,184,0.25), rgba(243,234,224,0.4), rgba(47,72,109,0.08)) !important;
    opacity: 0.5 !important;
}
.visual-grid-bg {
    background-image:
        linear-gradient(rgba(34,49,72,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,49,72,0.05) 1px, transparent 1px) !important;
}
.visual-glow {
    background: radial-gradient(circle, rgba(47,72,109,0.22) 0%, rgba(210,199,184,0.2) 40%, transparent 70%) !important;
    width: 420px !important;
    height: 420px !important;
}
.visual-number {
    display: none !important; /* sol üst dev "01" kaldırıldı */
}
.visual-icon-ring {
    border-color: rgba(47,72,109,0.22) !important;
}
.visual-icon-ring::before {
    background: var(--primary) !important;
    box-shadow: 0 0 14px rgba(34,49,72,0.35) !important;
}
.visual-icon {
    width: 160px !important;
    height: 160px !important;
    font-size: 60px !important;
    background: linear-gradient(135deg, #2f486d 0%, #223148 100%) !important;
    border: 1px solid rgba(34,49,72,0.25) !important;
    color: #ffffff !important;
    backdrop-filter: none !important;
    box-shadow:
        0 16px 40px rgba(34,49,72,0.25),
        inset 0 0 20px rgba(255,255,255,0.08) !important;
}
.visual-icon-wrap {
    width: 220px !important;
    height: 220px !important;
}

/* Content side: beyaz zemin + koyu navy başlık */
.services-pin-content {
    background: #ffffff !important;
    padding: 60px 8vw 60px 6vw !important;
}
.services-pin-header {
    margin-bottom: 32px !important;
}
.services-pin-header .section-badge-dark {
    background: rgba(47,72,109,0.08) !important;
    border: 1px solid rgba(47,72,109,0.22) !important;
    color: var(--primary) !important;
}
.services-pin-title {
    color: var(--primary) !important;
    font-size: clamp(26px, 2.6vw, 38px) !important;
}
.services-pin-title span {
    background: linear-gradient(135deg, #2f486d 0%, #223148 100%) !important;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pin-dot {
    background: rgba(47,72,109,0.18) !important;
}
.pin-dot.active {
    background: var(--primary) !important;
}

/* Pin service — numara bloğu gizle, başlık koyu, akıcı geçiş */
.pin-service-index { display: none !important; }
.pin-service {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    transform: translateY(14px);
}
.pin-service.active {
    transform: translateY(0);
    transition-delay: 0s !important;
}
.pin-service-title {
    color: var(--primary) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: clamp(30px, 3.4vw, 50px) !important;
    margin-bottom: 18px !important;
}
.pin-service-desc {
    color: #5a6478 !important;
    font-size: 16px !important;
    margin-bottom: 28px !important;
}
.visual-layer {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    transform: scale(0.96) translateY(10px);
}
.visual-layer.active {
    transform: scale(1) translateY(0);
}

/* Sayfa devamında beyaz → stats navy geçişi */
.services-pin-after { display: none; }

/* Pin scroll bölümü kaldırıldı — yerine .services-clean grid geldi (aşağıda) */
.services-pin, .services-pin-after { display: none !important; }

/* ============================================================
   ROUND 3 — KONTRAST + PİN-KALDIRMA + HERO PADDING + İTALİK R FİX
   ============================================================ */

/* ---- HERO content header'a değmesin ---- */
.hero-content {
    padding-top: calc(var(--header-h) + 24px) !important;
    padding-bottom: 80px !important;
    box-sizing: border-box;
}
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    z-index: 5;
}

/* ---- Hero TEKLİF AL butonu (içeride mavi-içi-mavi) ---- */
.btn-hero-primary {
    background: var(--primary) !important;
    color: #ffffff !important;
}
.btn-hero-primary:hover {
    background: var(--secondary) !important;
    color: #ffffff !important;
}
.btn-hero-primary i { color: #ffffff !important; }

/* ---- Sectors-orbit italic "R" cropping fix ---- */
.sectors-orbit-text .section-title {
    line-height: 1.18 !important;
    padding-bottom: 6px !important;
}
.sectors-orbit-text .section-title span {
    display: inline-block !important;
    padding: 0 0.18em 0.08em 0.04em !important;
    line-height: 1.22 !important;
    overflow: visible !important;
}

/* ---- PROCESS — 01/02 numaraların navy-içi-navy okunmuyordu ---- */
.process-step {
    background: #ffffff !important;
    border: 1px solid rgba(34,49,72,0.10) !important;
    box-shadow: 0 4px 20px rgba(34,49,72,0.06) !important;
}
.process-step:hover {
    border-color: rgba(34,49,72,0.25) !important;
    box-shadow: 0 12px 36px rgba(34,49,72,0.14) !important;
    transform: translateY(-4px);
}
.process-step-num {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: var(--beige) !important;
    -webkit-text-fill-color: var(--beige) !important;
    font-weight: 800 !important;
    border: none !important;
    text-shadow: none !important;
}
.process-step:hover .process-step-num {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%) !important;
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}
.process-step-icon {
    color: var(--primary) !important;
}
.process-step h4 { color: var(--primary) !important; }
.process-step p  { color: #5a6478 !important; }

/* ---- FOOTER navy-on-navy fix (logo, başlıklar, ikonlar) ---- */
.footer-logo-text span:last-child { color: var(--beige) !important; }
.footer-col h4 {
    color: #ffffff !important;
    border-bottom: 2px solid rgba(210,199,184,0.20) !important;
}
.footer-col h4::after,
.footer-col h4::before {
    background: var(--beige) !important;
}
.footer-col ul li a i { color: var(--beige) !important; }
.footer-col ul li a { color: rgba(255,255,255,0.72) !important; }
.footer-col ul li a:hover { color: var(--beige) !important; }
.footer-col ul li a:hover i { color: var(--cream) !important; }
.footer-contact-list li i { color: var(--beige) !important; }
.footer-contact-list li a,
.footer-contact-list li span { color: rgba(255,255,255,0.78) !important; }
.footer-contact-list li a:hover { color: var(--beige) !important; }
.footer-slogan { color: rgba(255,255,255,0.65) !important; }
.footer-social a {
    color: var(--beige) !important;
    border: 1px solid rgba(210,199,184,0.22) !important;
}
.footer-social a:hover {
    background: var(--beige) !important;
    color: var(--primary) !important;
    border-color: var(--beige) !important;
}

/* ---- FOOTER bottom row — sparlio sol alt, küçük opak logo ---- */
.footer-bottom-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 28px !important;
}
.footer-sparlio {
    display: inline-flex;
    align-items: center;
    opacity: 0.35;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
    order: 1;
}
.footer-sparlio:hover { opacity: 0.7; }
.footer-sparlio img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}
.footer-copy {
    flex: 1 1 auto;
    text-align: center;
    margin: 0 !important;
    font-size: 12px;
    color: rgba(255,255,255,0.55) !important;
    order: 2;
}
.footer-legal {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-shrink: 0;
    order: 3;
}
.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.45) !important;
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--beige) !important; }

@media (max-width: 720px) {
    .footer-bottom-row { justify-content: center; }
    .footer-copy { order: 3; flex-basis: 100%; }
    .footer-sparlio { order: 1; }
    .footer-legal { order: 2; }
}

/* ---- NEWSLETTER metin kontrastı ---- */
.newsletter-section h3 { color: #ffffff !important; }
.newsletter-section p  { color: rgba(255,255,255,0.70) !important; }

/* ============================================================
   SERVICES CLEAN — sade premium grid
   ============================================================ */
.services-clean {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}
.services-clean-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.services-clean-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin: 18px 0 14px;
    padding-bottom: 4px;
}
.services-clean-title em {
    display: inline-block;
    font-style: italic;
    font-weight: 400;
    color: var(--secondary);
    padding: 0 0.18em 0.08em 0.04em;
    line-height: 1.22;
}
.services-clean-sub {
    font-size: 16px;
    color: #5a6478;
    line-height: 1.7;
}
.services-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(34,49,72,0.10);
    border-bottom: 1px solid rgba(34,49,72,0.10);
}
.service-clean {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 44px 32px 80px;
    border-right: 1px solid rgba(34,49,72,0.08);
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    transition: background 0.4s ease, transform 0.4s ease;
    overflow: hidden;
    isolation: isolate;
}
.service-clean:last-child { border-right: none; }
.service-clean::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: linear-gradient(180deg, rgba(34,49,72,0.02), rgba(210,199,184,0.18));
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.service-clean:hover::before { height: 100%; }
.service-clean:hover { transform: translateY(-4px); }

.service-clean-num {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(34,49,72,0.35);
    margin-bottom: 36px;
    transition: color 0.3s ease;
}
.service-clean:hover .service-clean-num {
    color: var(--secondary);
}
.service-clean-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--beige);
    font-size: 22px;
    margin-bottom: 26px;
    box-shadow: 0 10px 24px rgba(34,49,72,0.20);
    transition: transform 0.4s ease;
}
.service-clean:hover .service-clean-icon {
    transform: scale(1.06) rotate(-4deg);
}
.service-clean-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 12px;
}
.service-clean-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #5a6478;
    margin-bottom: 30px;
    flex: 1;
}
.service-clean-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(34,49,72,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.service-clean:hover .service-clean-arrow {
    background: var(--primary);
    color: var(--beige);
    border-color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .services-clean-grid { grid-template-columns: repeat(2, 1fr); }
    .service-clean:nth-child(2) { border-right: none; }
    .service-clean:nth-child(1),
    .service-clean:nth-child(2) {
        border-bottom: 1px solid rgba(34,49,72,0.08);
    }
}
@media (max-width: 600px) {
    .services-clean { padding: 70px 0; }
    .services-clean-grid { grid-template-columns: 1fr; }
    .service-clean { border-right: none; border-bottom: 1px solid rgba(34,49,72,0.08); padding: 36px 26px 70px; }
    .service-clean:last-child { border-bottom: none; }
}

/* ============================================================
   ROUND 4 — CTA BUTONLARI / LABEL KONTRASTI / LOGO BOYUTLARI / NEWSLETTER FORM
   ============================================================ */

/* ---- Tüm CTA primary butonları (about, blog, hizmetler, index, blog-detay) ---- */
.btn-cta-primary {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary) !important;
}
.btn-cta-primary i { color: #ffffff !important; }
.btn-cta-primary:hover {
    background: var(--secondary) !important;
    color: #ffffff !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 14px 30px rgba(34,49,72,0.30) !important;
}

/* CTA secondary — ghost beyaz kenar */
.btn-cta-secondary {
    color: #ffffff !important;
}
.btn-cta-secondary i { color: #ffffff !important; }

/* ---- Newsletter form: buton beyaz, input ile arası açık, daha yumuşak tasarım ---- */
.newsletter-input-group {
    display: flex !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    align-items: stretch;
}
.newsletter-input-group input[type="email"] {
    flex: 1 1 auto !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.06) !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(255,255,255,0.45) !important;
}
.newsletter-input-group input[type="email"]:focus {
    outline: none !important;
    border-color: var(--beige) !important;
    background: rgba(255,255,255,0.10) !important;
}
.newsletter-form button,
.newsletter-input-group button {
    background: var(--beige) !important;
    color: var(--primary) !important;
    border-radius: 12px !important;
    padding: 14px 26px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    border: 1px solid var(--beige) !important;
    box-shadow: 0 6px 18px rgba(210,199,184,0.18) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0 !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.newsletter-form button i,
.newsletter-input-group button i { color: var(--primary) !important; }
.newsletter-form button:hover,
.newsletter-input-group button:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,255,255,0.18) !important;
}

@media (max-width: 480px) {
    .newsletter-input-group { flex-direction: column; gap: 12px !important; }
    .newsletter-form button,
    .newsletter-input-group button { width: 100%; justify-content: center; }
}

/* ---- İletişim sayfası: contact-info-item label & values beyaz ---- */
.contact-info-item h5 {
    color: var(--beige) !important;
    letter-spacing: 2px !important;
}
.contact-info-item a,
.contact-info-item p,
.contact-info-item span {
    color: #ffffff !important;
}
.contact-info-item a:hover { color: var(--beige) !important; }
.contact-info-item .icon {
    background: rgba(210,199,184,0.15) !important;
    color: var(--beige) !important;
    border: 1px solid rgba(210,199,184,0.25) !important;
}

/* ---- Header logosu footer ile aynı boyut: 60px ---- */
:root { --logo-height: 60px !important; }
.logo-img { max-height: 60px !important; }
.site-header { height: 84px !important; }
:root { --header-h: 84px !important; }

/* ---- Footer logosu 60px ---- */
.footer-logo-img {
    height: 60px !important;
    max-height: 60px !important;
    margin-bottom: 22px !important;
}

/* ---- Footer Sparlio logosu: 38 → 50px ---- */
.footer-sparlio img {
    height: 50px !important;
}
.footer-sparlio { opacity: 0.5 !important; }
.footer-sparlio:hover { opacity: 0.9 !important; }

/* ============================================================
   ROUND 5 — NEWSLETTER FOOTER BAND
   Footer içine entegre, sade, mobile responsive
   ============================================================ */

/* Eski stand-alone newsletter section yok artık → defans */
.newsletter-section { display: none !important; }

.footer-newsletter {
    background: linear-gradient(135deg, #2f486d 0%, #223148 100%);
    padding: 32px 0;
    border-bottom: 1px solid rgba(210,199,184,0.10);
    position: relative;
    overflow: hidden;
}
.footer-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 50%, rgba(210,199,184,0.08), transparent 45%),
        radial-gradient(circle at 88% 50%, rgba(243,234,224,0.06), transparent 45%);
    pointer-events: none;
}
.footer-newsletter-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}
.footer-newsletter-text {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 320px;
    min-width: 0;
}
.footer-newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(210,199,184,0.14);
    border: 1px solid rgba(210,199,184,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    font-size: 20px;
    flex-shrink: 0;
}
.footer-newsletter-text h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
    line-height: 1.25;
}
.footer-newsletter-text p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}
.footer-newsletter-form {
    flex: 1 1 380px;
    max-width: 480px;
    margin-left: auto;
}
.footer-newsletter-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.footer-newsletter-group input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    padding: 13px 16px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}
.footer-newsletter-group input[type="email"]::placeholder {
    color: rgba(255,255,255,0.45);
}
.footer-newsletter-group input[type="email"]:focus {
    border-color: var(--beige);
    background: rgba(255,255,255,0.12);
}
.footer-newsletter-group button {
    background: var(--beige);
    color: var(--primary);
    border-radius: 10px;
    padding: 13px 22px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    border: 1px solid var(--beige);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.footer-newsletter-group button i { color: var(--primary); }
.footer-newsletter-group button:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.footer-newsletter-msg {
    margin: 8px 2px 0;
    font-size: 12px;
}

/* TABLET */
@media (max-width: 900px) {
    .footer-newsletter { padding: 28px 0; }
    .footer-newsletter-inner { gap: 22px; }
    .footer-newsletter-text { flex-basis: 100%; }
    .footer-newsletter-form { flex-basis: 100%; max-width: none; margin-left: 0; }
}

/* MOBILE */
@media (max-width: 560px) {
    .footer-newsletter { padding: 24px 0; }
    .footer-newsletter-inner { gap: 18px; }
    .footer-newsletter-text {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }
    .footer-newsletter-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    .footer-newsletter-text h4 { font-size: 16px; }
    .footer-newsletter-text p  { font-size: 12.5px; }
    .footer-newsletter-group {
        flex-direction: column;
        gap: 10px;
    }
    .footer-newsletter-group input[type="email"],
    .footer-newsletter-group button {
        width: 100%;
    }
    .footer-newsletter-group button { justify-content: center; }
}

/* ============================================================
   ROUND 6 (revize) — HERO TAM EKRAN, KIRPMASIZ
   - max-height YOK
   - Slider tüm viewport'u doldurur (100vh / 100svh)
   - .hero-bg gerçek <img> gibi davranır: cover + center
   - Header üstte transparan, hero arkasından görünür ama içerik header'ın altında
   ============================================================ */
.hero-section {
    overflow: hidden !important;
    background-color: var(--dark) !important;
    width: 100% !important;
}

/* Hero slide: TAM EKRAN, üst sınır YOK */
.hero-slide {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100svh !important;
    min-height: 600px !important;
    max-height: none !important;
}

/* Swiper container'ı slide ile aynı yükseklikte olsun */
.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
    height: auto !important;
    min-height: inherit !important;
}

/* Arka plan görseli: tüm slide'ı doldursun, ortadan hizalı */
.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* İçerik header'ın altında kalsın */
.hero-content {
    padding-top: calc(var(--header-h) + 32px) !important;
    padding-bottom: 72px !important;
    box-sizing: border-box;
    min-height: 100% !important;
}

/* Mobil: tam ekran korunur */
@media (max-width: 768px) {
    .hero-slide {
        height: 100vh !important;
        height: 100svh !important;
        min-height: 540px !important;
    }
    .hero-content {
        padding-top: calc(var(--header-h) + 18px) !important;
        padding-bottom: 48px !important;
    }
}
