/* Uzaktan Takip — Premium Landing 2026 */
:root {
    --ut-navy: #0a1628;
    --ut-navy-soft: #132238;
    --ut-lime: #c8f135;
    --ut-lime-glow: rgba(200, 241, 53, 0.45);
    --ut-blue: #3d6eb5;
    --ut-brand: #006afe;
    --ut-brand-hover: #0056d6;
    --ut-brand-glow: rgba(0, 106, 254, 0.32);
    --ut-header-control-h: 30px;
    --ut-sky: #7eb8ff;
    --ut-page-max: 1200px;
    --ut-page-pad: clamp(1rem, 4vw, 2rem);
    --ut-heading: #0a1628;
    --ut-muted: #64748b;
    --ut-text: #1e293b;
    --ut-bg: #f8f9fb;
    --ut-surface: #ffffff;
    --ut-surface-elevated: #ffffff;
    --ut-glass: rgba(255, 255, 255, 0.88);
    --ut-border: rgba(10, 22, 40, 0.07);
    --ut-border-strong: rgba(10, 22, 40, 0.11);
    --ut-nav-color: #0a1628;
    --ut-nav-hover-bg: rgba(10, 22, 40, 0.04);
    --ut-hero-mesh-1: rgba(0, 106, 254, 0.06);
    --ut-hero-mesh-2: rgba(10, 22, 40, 0.03);
    --ut-hero-gradient: #f8f9fb;
    --ut-app-cta-bg: #ffffff;
    --ut-feat-icon-bg: #f1f4f8;
    --ut-stat-glass-border: rgba(10, 22, 40, 0.06);
    --ut-toggle-track: rgba(10, 22, 40, 0.08);
    --ut-toggle-thumb-bg: #fff;
    --ut-menu-btn-bg: rgba(10, 22, 40, 0.06);
    --ut-drawer-overlay: rgba(10, 22, 40, 0.4);
    --ut-radius: 12px;
    --ut-radius-lg: 16px;
    --ut-radius-pill: 999px;
    --ut-shadow: 0 1px 3px rgba(10, 22, 40, 0.04), 0 8px 24px rgba(10, 22, 40, 0.05);
    --ut-shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.08);
    --ut-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ut-header-h: 76px;
    color-scheme: light;
}

html[data-theme="dark"] {
    --ut-heading: #f1f5f9;
    --ut-muted: #94a3b8;
    --ut-text: #cbd5e1;
    --ut-bg: #080f1a;
    --ut-surface: #111c2e;
    --ut-surface-elevated: #162236;
    --ut-glass: rgba(12, 20, 36, 0.82);
    --ut-border: rgba(255, 255, 255, 0.07);
    --ut-border-strong: rgba(255, 255, 255, 0.12);
    --ut-nav-color: #e2e8f0;
    --ut-nav-hover-bg: rgba(255, 255, 255, 0.06);
    --ut-hero-mesh-1: rgba(61, 110, 181, 0.22);
    --ut-hero-mesh-2: rgba(200, 241, 53, 0.1);
    --ut-hero-gradient: linear-gradient(165deg, #0a1220 0%, var(--ut-bg) 55%, #0d1525 100%);
    --ut-app-cta-bg: linear-gradient(135deg, #111c2e 0%, #162236 50%, rgba(200, 241, 53, 0.06) 100%);
    --ut-feat-icon-bg: linear-gradient(145deg, #162236, #1a2840);
    --ut-stat-glass-border: rgba(255, 255, 255, 0.1);
    --ut-toggle-track: rgba(255, 255, 255, 0.12);
    --ut-toggle-thumb-bg: #1e293b;
    --ut-menu-btn-bg: rgba(255, 255, 255, 0.08);
    --ut-drawer-overlay: rgba(0, 0, 0, 0.55);
    --ut-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    --ut-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--ut-header-h);
}

body.ut-landing {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--ut-text);
    background: var(--ut-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s var(--ut-ease), color 0.4s var(--ut-ease);
}

body.ut-landing i.fa {
    font-family: FontAwesome !important;
    font-style: normal;
}

.ut-feat__icon i.fa,
.ut-caps__icon i.fa,
.ut-stat-card__icon i.fa {
    color: inherit;
}

body.ut-landing a { text-decoration: none; }

/* —— Header —— */
.ut-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--ut-header-h);
    display: flex;
    align-items: center;
    transition: background 0.4s var(--ut-ease), box-shadow 0.4s var(--ut-ease), backdrop-filter 0.4s;
}

.ut-header.is-scrolled {
    background: var(--ut-glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 var(--ut-border), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.ut-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: var(--ut-page-max);
    margin: 0 auto;
    padding: 0 var(--ut-page-pad);
}

.ut-header__logo {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.ut-logo {
    display: block;
    height: 34px;
    width: auto;
    max-width: min(220px, 38vw);
    object-fit: contain;
    object-position: left center;
}

.ut-header__logo .ut-logo {
    transition: transform 0.3s var(--ut-ease);
}

.ut-header__logo:hover .ut-logo { transform: scale(1.02); }

.ut-nav {
    display: none;
    grid-column: 2;
    justify-self: end;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .ut-nav {
        display: flex;
        margin-right: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .ut-header__inner {
        grid-template-columns: 1fr auto;
    }

    .ut-header__actions {
        grid-column: 2;
    }
}

.ut-nav a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ut-nav-color);
    padding: 0.5rem 0.85rem;
    border-radius: var(--ut-radius-pill);
    transition: color 0.25s, background 0.25s;
}

.ut-nav a:hover,
.ut-nav a.is-active {
    color: var(--ut-nav-color);
    background: var(--ut-nav-hover-bg);
}

.ut-header__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ut-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #1672ff 0%, #0057db 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 0.45rem 1.05rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    transition: transform 0.25s var(--ut-ease), background 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 8px 20px rgba(0, 84, 210, 0.28);
}

.ut-btn-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #2d83ff 0%, #0a61e3 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 12px 28px rgba(0, 84, 210, 0.33);
}

.ut-btn-cta:focus-visible {
    outline: 2px solid rgba(0, 106, 254, 0.35);
    outline-offset: 3px;
}

.ut-header__actions .ut-btn-cta {
    height: var(--ut-header-control-h);
    min-height: var(--ut-header-control-h);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0 1.1rem;
}

/* —— Theme toggle —— */
.ut-theme-toggle {
    position: relative;
    width: 52px;
    height: var(--ut-header-control-h);
    padding: 0;
    border: none;
    background: var(--ut-toggle-track);
    border-radius: var(--ut-radius-pill);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.35s var(--ut-ease), box-shadow 0.35s;
}

.ut-theme-toggle:focus-visible {
    outline: 2px solid var(--ut-lime);
    outline-offset: 3px;
}

.ut-theme-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--ut-toggle-thumb-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s var(--ut-ease), background 0.35s;
}

.ut-theme-toggle.is-dark .ut-theme-toggle__thumb,
html[data-theme="dark"] .ut-theme-toggle .ut-theme-toggle__thumb {
    transform: translateX(22px);
}

.ut-theme-toggle__thumb i {
    position: absolute;
    font-size: 0.7rem;
    color: var(--ut-navy);
    transition: opacity 0.25s, transform 0.35s var(--ut-ease);
}

.ut-theme-toggle__icon-sun { opacity: 1; transform: scale(1); }
.ut-theme-toggle__icon-moon { opacity: 0; transform: scale(0.5); color: var(--ut-lime); }

.ut-theme-toggle.is-dark .ut-theme-toggle__icon-sun,
html[data-theme="dark"] .ut-theme-toggle .ut-theme-toggle__icon-sun { opacity: 0; transform: scale(0.5); }

.ut-theme-toggle.is-dark .ut-theme-toggle__icon-moon,
html[data-theme="dark"] .ut-theme-toggle .ut-theme-toggle__icon-moon { opacity: 1; transform: scale(1); }

html[data-theme="dark"] .ut-theme-toggle__thumb i.ut-theme-toggle__icon-moon {
    color: var(--ut-lime);
}

.ut-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: none;
    background: var(--ut-menu-btn-bg);
    border-radius: 10px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .ut-menu-toggle { display: none; }
}

.ut-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ut-nav-color);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.ut-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ut-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.ut-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.ut-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    pointer-events: none;
}

.ut-mobile-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.ut-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: var(--ut-drawer-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.35s var(--ut-ease);
}

.ut-mobile-drawer.is-open .ut-mobile-drawer__backdrop {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .ut-theme-toggle--header {
        display: none;
    }
}

.ut-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 82vw);
    display: flex;
    flex-direction: column;
    background: var(--ut-surface);
    box-shadow: -12px 0 48px rgba(10, 22, 40, 0.14);
    transform: translateX(100%);
    transition: transform 0.42s var(--ut-ease), background-color 0.4s var(--ut-ease);
    overflow: hidden;
}

html[data-theme="dark"] .ut-mobile-drawer__panel {
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.45);
}

.ut-mobile-drawer.is-open .ut-mobile-drawer__panel {
    transform: translateX(0);
}

.ut-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--ut-border);
    flex-shrink: 0;
}

.ut-mobile-drawer__logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.ut-mobile-drawer__logo .ut-logo {
    height: 26px;
}

.ut-mobile-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: var(--ut-menu-btn-bg);
    color: var(--ut-nav-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ut-mobile-drawer__close:hover {
    background: var(--ut-nav-hover-bg);
}

.ut-mobile-drawer__close:active {
    transform: scale(0.96);
}

.ut-mobile-drawer__nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0.75rem;
    -webkit-overflow-scrolling: touch;
}

.ut-mobile-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ut-mobile-drawer__nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 0.7rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    color: var(--ut-nav-color);
    transition: background 0.2s var(--ut-ease), color 0.2s;
}

.ut-mobile-drawer__nav a:hover,
.ut-mobile-drawer__nav a:focus-visible {
    background: var(--ut-nav-hover-bg);
    color: var(--ut-nav-color);
}

.ut-mobile-drawer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--ut-feat-icon-bg);
    color: var(--ut-brand);
    font-size: 0.85rem;
}

.ut-mobile-drawer__label {
    flex: 1;
    min-width: 0;
}

.ut-mobile-drawer__arrow {
    flex-shrink: 0;
    font-size: 0.65rem;
    opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
}

.ut-mobile-drawer__nav a:hover .ut-mobile-drawer__arrow {
    opacity: 0.55;
    transform: translateX(2px);
}

.ut-mobile-drawer__foot {
    flex-shrink: 0;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--ut-border);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 106, 254, 0.04) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

html[data-theme="dark"] .ut-mobile-drawer__foot {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 106, 254, 0.08) 100%);
}

.ut-mobile-drawer__theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: var(--ut-nav-hover-bg);
}

.ut-mobile-drawer__theme-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.ut-mobile-drawer__theme-label {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--ut-nav-color);
}

.ut-mobile-drawer__theme-hint {
    font-size: 0.72rem;
    color: var(--ut-muted);
}

.ut-mobile-drawer__theme .ut-theme-toggle {
    flex-shrink: 0;
}

.ut-mobile-drawer__cta.ut-btn-cta {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    border-radius: var(--ut-radius);
    color: #fff;
    letter-spacing: normal;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 10px 26px rgba(0, 84, 210, 0.3);
}

.ut-mobile-drawer__cta.ut-btn-cta:hover {
    color: #fff;
}

.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li {
    animation: ut-drawer-item-in 0.45s var(--ut-ease) both;
}

.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li:nth-child(1) { animation-delay: 0.04s; }
.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li:nth-child(2) { animation-delay: 0.08s; }
.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li:nth-child(3) { animation-delay: 0.12s; }
.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li:nth-child(4) { animation-delay: 0.16s; }
.ut-mobile-drawer.is-open .ut-mobile-drawer__nav li:nth-child(5) { animation-delay: 0.2s; }

@keyframes ut-drawer-item-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* —— Buttons —— */
/* Unified CTA system */
.ut-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    border: none;
    white-space: nowrap;
    transition: transform 0.22s var(--ut-ease), background 0.22s, box-shadow 0.22s, border-color 0.22s, color 0.22s;
}

.ut-btn--primary {
    background: var(--ut-navy);
    color: #fff;
}

.ut-btn--primary:hover {
    color: #fff;
    background: #152a45;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.18);
}

.ut-btn--ghost {
    background: var(--ut-surface);
    color: var(--ut-heading);
    border: 1px solid var(--ut-border-strong);
}

.ut-btn--ghost:hover {
    border-color: var(--ut-heading);
    background: var(--ut-surface);
    transform: translateY(-1px);
}

.ut-btn--white {
    background: #fff;
    color: var(--ut-navy);
}

.ut-btn--white:hover {
    color: var(--ut-navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.ut-btn--store {
    background: var(--ut-navy);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.7rem 1.15rem;
}

.ut-btn--store:hover {
    color: #fff;
    background: #152a45;
}

.ut-btn--store-outline {
    background: transparent;
    color: var(--ut-heading);
    border: 1px solid var(--ut-border-strong);
}

.ut-btn--store-outline:hover {
    border-color: var(--ut-heading);
}

.ut-btn-primary,
.ut-btn-ghost,
.ut-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    transition: transform 0.22s var(--ut-ease), background 0.22s, box-shadow 0.22s;
}

.ut-btn-primary {
    background: var(--ut-navy);
    color: #fff;
    border: none;
}

.ut-btn-primary:hover {
    color: #fff;
    background: #152a45;
    transform: translateY(-1px);
}

.ut-btn-ghost {
    background: var(--ut-surface);
    color: var(--ut-heading);
    border: 1px solid var(--ut-border-strong);
}

.ut-btn-white {
    background: #fff;
    color: var(--ut-navy);
    border: none;
}

/* —— Section utilities —— */
.ut-section {
    padding: clamp(4.5rem, 10vw, 7.5rem) 0;
    position: relative;
}

.ut-section--tight {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

#surec.ut-section {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.ut-section-head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.ut-section-head--center {
    text-align: center;
}

.ut-section-head__lead {
    margin: 0.75rem auto 0;
    max-width: 520px;
    text-align: center;
}

.ut-section-head--center .ut-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ut-lead--wide {
    max-width: 560px;
}

.ut-container {
    width: 100%;
    max-width: var(--ut-page-max);
    margin: 0 auto;
    padding: 0 var(--ut-page-pad);
}

.ut-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ut-blue);
    margin-bottom: 0.75rem;
}

.ut-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--ut-brand);
    border-radius: 2px;
}

.ut-eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}

.ut-eyebrow--light::before {
    background: var(--ut-brand);
}

.ut-eyebrow--center {
    justify-content: center;
    width: 100%;
}

.ut-title {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: var(--ut-heading);
    margin: 0 0 1rem;
    transition: color 0.4s var(--ut-ease);
    overflow-wrap: anywhere;
}

.ut-title--light { color: #fff; }

.ut-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ut-muted);
    max-width: 520px;
    margin: 0;
}

/* —— Hero —— */
.ut-hero {
    min-height: auto;
    padding-top: calc(var(--ut-header-h) + 4.75rem);
    padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

.ut-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 15%, var(--ut-hero-mesh-1) 0%, transparent 70%),
        var(--ut-hero-gradient);
    transition: background 0.5s var(--ut-ease);
}

.ut-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .ut-hero__grid {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 1.75rem;
        overflow: visible;
        padding-top: 0.85rem;
    }
}

.ut-hero__copy {
    max-width: 520px;
}

.ut-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem 0.35rem 0.5rem;
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
    border-radius: var(--ut-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ut-muted);
    margin-top: -1.1rem;
    margin-bottom: 1.85rem;
    box-shadow: none;
    animation: ut-badge-pulse 2.4s ease-in-out infinite;
}

.ut-hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--ut-brand);
    border-radius: 50%;
    flex-shrink: 0;
    animation: ut-badge-dot-blink 1.6s ease-in-out infinite;
}

@keyframes ut-badge-pulse {
    0%, 100% {
        opacity: 1;
        border-color: var(--ut-border);
        color: var(--ut-muted);
    }
    50% {
        opacity: 0.72;
        border-color: rgba(0, 106, 254, 0.4);
        color: var(--ut-brand);
    }
}

@keyframes ut-badge-dot-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 106, 254, 0.4); }
    50% { opacity: 0.35; box-shadow: 0 0 0 4px rgba(0, 106, 254, 0.15); }
}

.ut-hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--ut-heading);
    margin: 0 0 1.25rem;
    max-width: 11em;
    transition: color 0.4s var(--ut-ease);
    overflow-wrap: anywhere;
}

.ut-hero h1 em {
    font-style: normal;
    color: var(--ut-heading);
}

.ut-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.1rem;
}

.ut-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.ut-hero__phone-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    line-height: 0;
}

.ut-hero__phone-wrap img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(10, 22, 40, 0.1));
}

@media (min-width: 992px) {
    .ut-hero__visual {
        justify-content: flex-end;
        align-self: start;
        margin-top: 1.4rem;
    }

    .ut-hero__phone-wrap {
        width: 100%;
        max-width: none;
        margin: 0;
        transform: scale(0.98);
        transform-origin: 90% 48%;
        animation: ut-float-hero-visual 7s ease-in-out infinite;
        will-change: transform;
    }

    .ut-hero__phone-wrap img {
        width: 100%;
        max-width: none;
    }
}

@keyframes ut-float-hero-visual {
    0%, 100% {
        transform: scale(0.98) translateY(10px);
    }
    50% {
        transform: scale(0.98) translateY(2px);
    }
}

@media (min-width: 1200px) {
    @keyframes ut-float-hero-visual {
        0%, 100% {
            transform: scale(1.02) translateY(10px);
        }
        50% {
            transform: scale(1.02) translateY(2px);
        }
    }
}

@media (max-width: 991.98px) {
    .ut-hero__visual,
    .ut-app-cta__visual {
        display: none;
    }
}

.ut-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 3.9rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .ut-hero__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .ut-hero__stats {
        margin-top: 4.65rem;
    }
}

.ut-stat-card {
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
    border-radius: var(--ut-radius-lg);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--ut-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ut-ease), box-shadow 0.3s, border-color 0.3s;
}

.ut-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ut-shadow-lg);
    border-color: var(--ut-border-strong);
}

.ut-stat-card__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ut-feat-icon-bg);
    color: var(--ut-brand);
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.ut-stat-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ut-heading);
    margin: 0 0 0.35rem;
}

.ut-stat-card p {
    font-size: 0.82rem;
    color: var(--ut-muted);
    line-height: 1.5;
    margin: 0;
}

/* —— Dark feature block —— */
.ut-showcase {
    background: var(--ut-navy);
    border-radius: var(--ut-radius-lg);
    margin: 0;
    padding: clamp(2.5rem, 6vw, 4rem);
    position: relative;
    overflow: visible;
}

.ut-showcase__intro {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.ut-showcase::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 106, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ut-showcase__lead {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1.25rem;
    max-width: 400px;
}

.ut-showcase__grid {
    display: grid;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .ut-showcase__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
        gap: 3rem;
    }

    .ut-showcase__grid > * {
        min-width: 0;
    }
}

.ut-showcase h2 {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.ut-showcase h2 span {
    color: #fff;
}

.ut-showcase__viz {
    display: none;
}

@media (min-width: 992px) {
    .ut-showcase__viz {
        display: block;
        position: relative;
        margin-top: 7.5rem;
        width: 100%;
        max-width: 365px;
    }

    .ut-dash {
        position: relative;
        min-height: 380px;
        transform: scale(1.06);
        transform-origin: top left;
    }

    .ut-dash__glow {
        position: absolute;
        inset: -8% -12% -5% -8%;
        background: radial-gradient(ellipse 70% 60% at 45% 40%, rgba(0, 106, 254, 0.28) 0%, transparent 72%);
        pointer-events: none;
    }

    .ut-dash__card {
        position: relative;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    }

    .ut-dash__card--main {
        padding: 1rem 1.05rem 1.1rem;
        z-index: 1;
    }

    .ut-dash__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.85rem;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
    }

    .ut-dash__live {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        color: #6ee7a0;
    }

    .ut-dash__live .fa {
        font-size: 0.45rem;
        animation: ut-dash-pulse 1.8s ease-in-out infinite;
    }

    @keyframes ut-dash-pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.35; }
    }

    .ut-dash__metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }

    .ut-dash__metric {
        padding: 0.55rem 0.45rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .ut-dash__metric strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
    }

    .ut-dash__metric strong small {
        font-size: 0.62rem;
        font-weight: 700;
        opacity: 0.75;
    }

    .ut-dash__metric span {
        display: block;
        margin-top: 0.2rem;
        font-size: 0.58rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.2;
    }

    .ut-dash__metric--accent {
        background: rgba(0, 106, 254, 0.18);
        border-color: rgba(0, 106, 254, 0.35);
    }

    .ut-dash__metric--accent strong {
        color: #7eb8ff;
    }

    .ut-dash__chart {
        display: flex;
        align-items: flex-end;
        gap: 0.35rem;
        height: 72px;
        padding: 0.55rem 0.5rem 0.4rem;
        margin-bottom: 0.85rem;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ut-dash__bar {
        flex: 1;
        height: var(--h, 50%);
        border-radius: 4px 4px 2px 2px;
        background: linear-gradient(180deg, rgba(126, 184, 255, 0.55) 0%, rgba(0, 106, 254, 0.25) 100%);
        transform-origin: bottom;
        animation: ut-dash-bar-grow 1.2s var(--ut-ease) both;
    }

    .ut-dash__bar:nth-child(1) { animation-delay: 0.05s; }
    .ut-dash__bar:nth-child(2) { animation-delay: 0.1s; }
    .ut-dash__bar:nth-child(3) { animation-delay: 0.15s; }
    .ut-dash__bar:nth-child(4) { animation-delay: 0.2s; }
    .ut-dash__bar:nth-child(5) { animation-delay: 0.25s; }
    .ut-dash__bar:nth-child(6) { animation-delay: 0.3s; }
    .ut-dash__bar:nth-child(7) { animation-delay: 0.35s; }

    .ut-dash__bar--active {
        background: linear-gradient(180deg, #c8f135 0%, rgba(200, 241, 53, 0.35) 100%);
        box-shadow: 0 0 12px rgba(200, 241, 53, 0.25);
    }

    @keyframes ut-dash-bar-grow {
        from { transform: scaleY(0.15); opacity: 0.4; }
        to { transform: scaleY(1); opacity: 1; }
    }

    .ut-dash__rows {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .ut-dash__row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 0.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.68rem;
    }

    .ut-dash__status {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .ut-dash__status--on {
        background: #6ee7a0;
        box-shadow: 0 0 8px rgba(110, 231, 160, 0.55);
    }

    .ut-dash__status--off {
        background: rgba(255, 255, 255, 0.25);
    }

    .ut-dash__name {
        color: rgba(255, 255, 255, 0.82);
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ut-dash__val {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.62rem;
        white-space: nowrap;
    }

    .ut-dash__card--float {
        position: absolute;
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
        padding: 0.65rem 0.75rem;
        z-index: 2;
        animation: ut-dash-float 5s ease-in-out infinite;
    }

    .ut-dash__card--float .fa {
        font-size: 0.9rem;
        color: var(--ut-brand);
        margin-top: 0.1rem;
    }

    .ut-dash__card--float strong {
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.1rem;
    }

    .ut-dash__card--float span {
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.3;
    }

    .ut-dash__card--notify {
        top: -6%;
        right: -8%;
        width: 168px;
        animation-delay: 0s;
    }

    .ut-dash__card--solar {
        bottom: 2%;
        left: -10%;
        width: 155px;
        animation-delay: -2.5s;
    }

    .ut-dash__card--solar .fa {
        color: var(--ut-lime);
    }

    @keyframes ut-dash-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
}

.ut-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ut-feature-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.95rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--ut-radius);
    transition: background 0.3s var(--ut-ease), border-color 0.3s var(--ut-ease), box-shadow 0.3s var(--ut-ease);
}

.ut-feature-item[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s var(--ut-ease),
        transform 0.55s var(--ut-ease),
        background 0.3s var(--ut-ease),
        border-color 0.3s var(--ut-ease);
}

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

.ut-feature-item[data-reveal].is-visible:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.ut-feature-item:not([data-reveal]):hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.ut-showcase .ut-eyebrow {
    font-size: 0.68rem;
}

.ut-showcase__intro [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.ut-showcase__intro [data-reveal]:nth-child(2) { transition-delay: 70ms; }
.ut-showcase__intro [data-reveal]:nth-child(3) { transition-delay: 140ms; }

.ut-feature-item__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ut-brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    border-radius: 7px;
}

.ut-feature-item h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.35;
}

.ut-feature-item__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
}

.ut-feature-first-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.22rem 0.58rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #142208;
    background: linear-gradient(135deg, var(--ut-lime) 0%, #daf76a 55%, #c8f135 100%);
    border-radius: var(--ut-radius-pill);
    box-shadow:
        0 0 0 1px rgba(200, 241, 53, 0.45),
        0 4px 14px rgba(200, 241, 53, 0.28);
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
    animation: ut-first-badge-glow 2.8s ease-in-out infinite;
}

.ut-feature-first-badge i.fa {
    font-size: 0.55rem;
    color: #2d4a0c;
}

@keyframes ut-first-badge-glow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(200, 241, 53, 0.45),
            0 4px 14px rgba(200, 241, 53, 0.28);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(200, 241, 53, 0.65),
            0 4px 18px rgba(200, 241, 53, 0.42);
    }
}

.ut-feature-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
    margin: 0;
}

.ut-feature-list > .ut-btn[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ut-ease), transform 0.5s var(--ut-ease), background 0.3s, color 0.3s;
}

.ut-feature-list > .ut-btn[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* —— Özellikler (ut-props) —— */
.ut-props {
    padding: clamp(4.5rem, 10vw, 7.5rem) 0;
    position: relative;
    overflow: hidden;
}

.ut-props::before {
    content: "";
    position: absolute;
    top: 0;
    right: -15%;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse, var(--ut-lime-glow) 0%, transparent 65%);
    opacity: 0.35;
    pointer-events: none;
}

.ut-props__shell {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--ut-radius-lg);
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
    box-shadow: var(--ut-shadow-lg);
}

@media (min-width: 992px) {
    .ut-props__shell {
        grid-template-columns: minmax(260px, 0.95fr) 1.35fr;
        gap: 2rem;
    }
}

.ut-props__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ut-blue);
    padding: 0.35rem 0.75rem;
    background: rgba(61, 110, 181, 0.1);
    border-radius: var(--ut-radius-pill);
    margin-bottom: 1.25rem;
}

html[data-theme="dark"] .ut-props__tag {
    background: rgba(126, 184, 255, 0.12);
}

.ut-props__headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--ut-heading);
    margin: 0 0 1rem;
}

.ut-props__brand {
    display: inline-block;
    background: linear-gradient(120deg, var(--ut-lime) 0%, #9ed600 45%, var(--ut-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ut-props__sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ut-muted);
    margin: 0 0 1.75rem;
    max-width: 340px;
}

.ut-props__pulse {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.ut-props__pulse span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ut-lime);
    animation: ut-props-dot 1.6s ease-in-out infinite;
}

.ut-props__pulse span:nth-child(2) { animation-delay: 0.2s; opacity: 0.7; }
.ut-props__pulse span:nth-child(3) { animation-delay: 0.4s; opacity: 0.4; }

@keyframes ut-props-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.5; }
}

.ut-props__mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .ut-props__mosaic { grid-template-columns: repeat(2, 1fr); }
}

.ut-props__card {
    position: relative;
    padding: 1.65rem 1.5rem 1.75rem;
    border-radius: var(--ut-radius);
    background: var(--ut-bg);
    border: 1px solid var(--ut-border);
    overflow: hidden;
    transition: transform 0.45s var(--ut-ease), box-shadow 0.45s, border-color 0.35s;
}

.ut-props__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--ut-lime) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.ut-props__card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
    border-color: transparent;
}

.ut-props__card:hover::before { opacity: 1; }

html[data-theme="dark"] .ut-props__card:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.ut-props__card--a { --ut-card-accent: #3d6eb5; }
.ut-props__card--b { --ut-card-accent: #c8f135; }
.ut-props__card--c { --ut-card-accent: #5a9fd4; }
.ut-props__card--d { --ut-card-accent: #8eb8f0; }

.ut-props__ring {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--ut-navy);
    color: var(--ut-lime);
    font-size: 1.15rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.2);
    transition: transform 0.4s var(--ut-ease), box-shadow 0.4s;
}

.ut-props__card--b .ut-props__ring {
    background: var(--ut-lime);
    color: var(--ut-navy);
}

.ut-props__card:hover .ut-props__ring {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 28px var(--ut-lime-glow);
}

.ut-props__card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--ut-heading);
    margin: 0 0 0.45rem;
    letter-spacing: -0.02em;
}

.ut-props__card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--ut-muted);
    margin: 0;
}

.ut-props__line {
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 1.15rem;
    border-radius: 3px;
    background: var(--ut-card-accent, var(--ut-lime));
    transition: width 0.4s var(--ut-ease);
}

.ut-props__card:hover .ut-props__line { width: 72px; }

/* —— Çözümler (ut-caps) —— */
.ut-caps {
    position: relative;
    padding: clamp(5rem, 11vw, 8rem) 0;
    overflow: hidden;
}

.ut-caps__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--ut-navy) 0%, #0d1a2e 50%, var(--ut-navy) 100%);
    z-index: 0;
}

.ut-caps__bg::after {
    display: none;
}

.ut-caps .ut-container {
    position: relative;
    z-index: 1;
}

.ut-caps__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.ut-caps__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.ut-caps__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 1rem;
}

.ut-caps__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1.75rem;
}

.ut-caps__deck {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ut-caps__deck {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.15rem;
    }
}

@media (min-width: 1200px) {
    .ut-caps__deck {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.ut-caps__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 1.5rem 1.35rem 1.25rem;
    border-radius: var(--ut-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    overflow: hidden;
    transition: transform 0.35s var(--ut-ease), border-color 0.3s, box-shadow 0.35s;
}

.ut-caps__panel:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.ut-caps__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 106, 254, 0.15);
    color: #7eb8ff;
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.ut-caps__panel:hover .ut-caps__icon {
    background: rgba(0, 106, 254, 0.22);
}

.ut-caps__body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ut-caps__body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.ut-caps__body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.ut-caps__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ut-brand);
    transition: gap 0.25s, color 0.25s;
}

.ut-caps__link:hover {
    color: #fff;
    gap: 0.55rem;
}

@media (max-width: 767px) {
    .ut-caps__panel { min-height: 240px; }
    .ut-caps__header { margin-bottom: 2rem; }
}

/* —— Eco —— */
.ut-eco {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--ut-navy);
    overflow: hidden;
}

.ut-eco__mesh {
    display: none;
}

.ut-eco__lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.75rem 0 0;
    max-width: 400px;
}

.ut-eco__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ut-eco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .ut-eco-grid { grid-template-columns: repeat(4, 1fr); }
}

.ut-eco-card {
    padding: 1.35rem 1.25rem;
    border-radius: var(--ut-radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, transform 0.3s var(--ut-ease);
}

.ut-eco-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.ut-eco-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem;
}

.ut-eco-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

/* —— About —— */
.ut-about__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ut-about__grid { grid-template-columns: 1fr 1fr; }
}

.ut-about__media {
    position: relative;
    border-radius: var(--ut-radius-lg);
    overflow: hidden;
    box-shadow: var(--ut-shadow-lg);
}

.ut-about__media--viz {
    aspect-ratio: 4 / 3;
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
}

.ut-about__media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.ut-about__media:not(.ut-about__media--viz)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(10, 22, 40, 0.15));
    pointer-events: none;
}

/* About — kurumsal bento panel (açık tema) */
.ut-corp-viz {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: clamp(1.35rem, 3vw, 1.75rem);
    color: var(--ut-text);
}

.ut-corp-viz__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 106, 254, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(200, 241, 53, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #ffffff 0%, #f4f7fb 55%, #eef2f8 100%);
    pointer-events: none;
}

.ut-corp-viz__top {
    position: relative;
    z-index: 1;
    margin-bottom: 1.15rem;
}

.ut-corp-viz__eyebrow {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ut-brand);
    margin-bottom: 0.35rem;
}

.ut-corp-viz__title {
    display: block;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--ut-heading);
}

.ut-corp-viz__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    flex: 1;
}

.ut-corp-viz__tile {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
    box-shadow: var(--ut-shadow);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.ut-corp-viz__tile--wide {
    grid-column: 1 / -1;
}

.ut-corp-viz__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--ut-feat-icon-bg);
    border: 1px solid var(--ut-border);
    color: var(--ut-brand);
    font-size: 0.85rem;
}

.ut-corp-viz__tile h4 {
    margin: 0 0 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ut-heading);
    line-height: 1.25;
}

.ut-corp-viz__tile p {
    margin: 0;
    font-size: 0.65rem;
    line-height: 1.45;
    color: var(--ut-muted);
}

.ut-corp-viz__tile--metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    justify-content: center;
}

.ut-corp-viz__metric-val {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ut-heading);
    line-height: 1;
}

.ut-corp-viz__metric-lbl {
    font-size: 0.62rem;
    color: var(--ut-muted);
    font-weight: 600;
}

.ut-corp-viz__tile--accent {
    background: rgba(0, 106, 254, 0.06);
    border-color: rgba(0, 106, 254, 0.18);
}

.ut-corp-viz__tile--accent .ut-corp-viz__metric-val {
    color: var(--ut-brand);
}

.ut-corp-viz__foot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--ut-border);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--ut-muted);
    letter-spacing: 0.01em;
}

.ut-corp-viz__live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
    flex-shrink: 0;
    animation: ut-corp-live-pulse 2s ease-in-out infinite;
}

@keyframes ut-corp-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

html[data-theme="dark"] .ut-about__media--viz {
    background: var(--ut-surface);
    border-color: var(--ut-border);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .ut-corp-viz__mesh {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 106, 254, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(200, 241, 53, 0.05) 0%, transparent 50%),
        linear-gradient(160deg, var(--ut-surface) 0%, var(--ut-bg) 100%);
}

/* —— Process —— */
.ut-process {
    background: var(--ut-surface);
    border-radius: var(--ut-radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--ut-shadow);
    border: 1px solid var(--ut-border);
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.ut-process .ut-section-head {
    margin-bottom: 0.75rem;
}

.ut-process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .ut-process__steps { grid-template-columns: repeat(4, 1fr); }
}

.ut-step {
    text-align: center;
    position: relative;
}

.ut-step__circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ut-feat-icon-bg);
    color: var(--ut-brand);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--ut-border);
    transition: transform 0.3s var(--ut-ease), border-color 0.3s;
}

.ut-step:hover .ut-step__circle {
    transform: translateY(-2px);
    border-color: var(--ut-brand);
}

.ut-step__label {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--ut-heading);
    margin-bottom: 0.35rem;
}

.ut-step__desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--ut-muted);
    margin: 0;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .ut-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 32px;
        left: calc(50% + 36px);
        width: calc(100% - 72px);
        height: 1px;
        background: var(--ut-border-strong);
    }
}

/* —— App CTA —— */
.ut-app-cta {
    background: var(--ut-app-cta-bg);
    border-radius: var(--ut-radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    border: 1px solid var(--ut-border);
    transition: background 0.5s, border-color 0.4s;
}

.ut-app-cta__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ut-app-cta__grid { grid-template-columns: 1fr 1fr; }
}

.ut-app-cta__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ut-app-cta__visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(10, 22, 40, 0.12));
    animation: ut-float-phone 7s ease-in-out infinite;
}

.ut-store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ut-store-badge {
    display: inline-block;
    line-height: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s var(--ut-ease), opacity 0.25s;
}

.ut-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.ut-store-badge img {
    display: block;
    height: 44px;
    width: auto;
}

/* —— FAQ —— */
.ut-faq {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ut-faq .accordion-item {
    border: none;
    background: transparent;
    margin: 0;
}

.ut-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ut-heading);
    background: var(--ut-surface);
    border-radius: var(--ut-radius-lg) !important;
    padding: 1rem 1.15rem;
    box-shadow: none;
    border: 1px solid var(--ut-border);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.ut-faq .accordion-button:not(.collapsed) {
    background: var(--ut-surface);
    color: var(--ut-brand);
    border-color: var(--ut-brand);
    box-shadow: none;
}

.ut-faq .accordion-button:not(.collapsed)::after {
    filter: none;
}

.ut-faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--ut-brand);
}

.ut-faq .accordion-body {
    padding: 0 1.15rem 1rem;
    color: var(--ut-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    background: transparent;
    border: none;
}

/* —— Footer —— */
.ut-footer {
    background: var(--ut-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}

.ut-footer__grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .ut-footer__grid { grid-template-columns: 1.3fr 0.75fr 0.75fr 1fr; gap: 2rem; }
}

@media (min-width: 992px) {
    .ut-footer__grid { gap: 2.5rem; }
}

.ut-footer__brand {
    max-width: 320px;
}

.ut-footer .ut-logo {
    margin-bottom: 1.25rem;
    filter: brightness(1.08);
}

.ut-footer p { font-size: 0.86rem; line-height: 1.65; margin: 0; }

.ut-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 1.15rem;
}

.ut-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    transition: color 0.2s;
}

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

.ut-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ut-footer__cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ut-footer__cta .ut-btn--primary {
    background: var(--ut-brand);
}

.ut-footer__cta .ut-btn--primary:hover {
    background: var(--ut-brand-hover);
}

.ut-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* —— Features grid —— */
.ut-feat__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 576px) {
    .ut-feat__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .ut-feat__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.ut-feat__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 168px;
    padding: 1.35rem 1.25rem;
    background: var(--ut-surface);
    border: 1px solid var(--ut-border);
    border-radius: var(--ut-radius-lg);
    box-shadow: var(--ut-shadow);
    transition: transform 0.3s var(--ut-ease), box-shadow 0.3s, border-color 0.3s;
}

.ut-feat__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ut-shadow-lg);
    border-color: var(--ut-border-strong);
}

.ut-feat__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ut-feat-icon-bg);
    color: var(--ut-brand);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.ut-feat__card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ut-heading);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.ut-feat__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.ut-feature-first-badge--feat {
    font-size: 0.58rem;
    padding: 0.18rem 0.5rem;
}

.ut-feat__card:has(.ut-feat__title-row) {
    min-height: 200px;
}

.ut-feat__card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--ut-muted);
    margin: 0;
    margin-top: auto;
}

/* —— Animations —— */
@keyframes ut-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-12px, 16px) scale(1.03); }
}

@keyframes ut-float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ut-ease), transform 0.7s var(--ut-ease);
}

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

/* Hero: kartlar ve üst içerik JS/AOS beklemeden görünsün */
.ut-hero__copy[data-reveal],
.ut-hero__copy[data-aos],
.ut-hero__visual[data-aos],
.ut-hero__stats [data-reveal],
.ut-hero__stats [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.ut-hero__stats .ut-stat-card {
    opacity: 1;
    visibility: visible;
}

/* Dark: logo & section surfaces */
html[data-theme="dark"] .ut-header__logo .ut-logo {
    filter: brightness(1.08);
}

html[data-theme="dark"] .ut-showcase {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .ut-btn-cta {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 10px 24px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .ut-hero__phone-wrap {
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
}

html[data-theme="dark"] .ut-hero__phone-wrap img {
    mix-blend-mode: normal;
    filter: brightness(1.08) contrast(1.06) saturate(1.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Smooth theme transition on key surfaces */
.ut-surface-transition,
.ut-header,
.ut-stat-card,
.ut-props__shell,
.ut-props__card,
.ut-caps__panel,
.ut-process,
.ut-app-cta,
.ut-faq .accordion-button,
.ut-faq .accordion-body,
.ut-mobile-drawer__panel {
    transition: background-color 0.4s var(--ut-ease), color 0.4s var(--ut-ease),
        border-color 0.4s var(--ut-ease), box-shadow 0.4s var(--ut-ease);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ut-hero__badge,
    .ut-hero__badge-dot {
        animation: none !important;
    }

    @media (min-width: 992px) {
        .ut-hero__phone-wrap {
            animation: none !important;
            transform: scale(0.98) !important;
        }
    }

    @media (min-width: 1200px) {
        .ut-hero__phone-wrap {
            transform: scale(1.02) !important;
        }
    }
    [data-reveal] { opacity: 1; transform: none; }
}
