﻿body {
 
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
    color: #232323;
    background-color: #fff;
}

header, footer, nav, section {
    display: block;
}


/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

.editor-label {
    margin: 1em 0 0 0;
}

.editor-field {
    margin: 0.5em 0 0 0;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #f00;
    background-color: #fee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}


/* ==========================================================
   SOVERKO EYS - Ortak Sayfa Stilleri
   TM Otomasyon / SOVERKO
   ========================================================== */

:root {
    --eys-orange: #f47b20;
    --eys-orange-dark: #d76008;
    --eys-navy: #162536;
    --eys-navy-soft: #22384f;
    --eys-text: #212b36;
    --eys-text-soft: #5f6b78;
    --eys-white: #ffffff;
    --eys-surface: #ffffff;
    --eys-surface-alt: #f7f8fa;
    --eys-border: #e3e7eb;
    --eys-water: #0c8fce;
    --eys-electric: #f5a800;
    --eys-gas: #70ae2d;
    --eys-carbon: #2b8a6e;
    --eys-compensation: #7b61c9;
    --eys-reporting: #3168b2;
    --eys-success: #18864b;
    --eys-warning: #b76b00;
    --eys-danger: #c53c3c;
    --eys-accent: var(--eys-orange);
    --eys-accent-rgb: 244, 123, 32;
    --eys-shadow-sm: 0 6px 18px rgba(22, 37, 54, 0.07);
    --eys-shadow-md: 0 14px 36px rgba(22, 37, 54, 0.11);
    --eys-shadow-lg: 0 24px 60px rgba(22, 37, 54, 0.16);
    --eys-radius-sm: 10px;
    --eys-radius-md: 18px;
    --eys-radius-lg: 28px;
    --eys-container: 1200px;
    --eys-transition: 180ms ease;
}

/* Sayfa ve temel tipografi */
.eys-page,
.eys-container {
    color: var(--eys-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.65;
}



    .eys-page,
    .eys-page *,
    .eys-page *::before,
    .eys-page *::after,
    .eys-container,
    .eys-container *,
    .eys-container *::before,
    .eys-container *::after {
        box-sizing: border-box;
    }

        .eys-container,
        .eys-page .container {
            width: min(100% - 40px, var(--eys-container));
            margin-inline: auto;
        }

            .eys-page img,
            .eys-container img {
                display: block;
                max-width: 100%;
                height: auto;
            }

            .eys-page h1,
            .eys-page h2,
            .eys-page h3,
            .eys-page h4,
            .eys-container h1,
            .eys-container h2,
            .eys-container h3,
            .eys-container h4 {
                margin-top: 0;
                color: var(--eys-navy);
                font-weight: 750;
                line-height: 1.2;
                text-wrap: balance;
            }

            .eys-page h1,
            .eys-container h1 {
                margin-bottom: 22px;
                font-size: clamp(2.25rem, 5vw, 4.6rem);
                letter-spacing: -0.045em;
            }

            .eys-page h2,
            .eys-container h2 {
                margin-bottom: 16px;
                font-size: clamp(1.75rem, 3vw, 2.75rem);
                letter-spacing: -0.025em;
            }

            .eys-page h3,
            .eys-container h3 {
                margin-bottom: 10px;
                font-size: clamp(1.08rem, 2vw, 1.35rem);
            }

            .eys-page p,
            .eys-container p {
                margin-top: 0;
            }

            .eys-page a,
            .eys-container a {
                color: var(--eys-accent);
                text-decoration-thickness: 1px;
                text-underline-offset: 3px;
            }

                .eys-page a:hover,
                .eys-container a:hover {
                    color: var(--eys-orange-dark);
                }

            .eys-page :focus-visible,
            .eys-container :focus-visible {
                outline: 3px solid rgba(var(--eys-accent-rgb), 0.35);
                outline-offset: 3px;
            }

/* Sayfa türüne göre vurgu renkleri */
.eys-water,
.eys-page--water {
    --eys-accent: var(--eys-water);
    --eys-accent-rgb: 12, 143, 206;
}

.eys-electric,
.eys-page--electric {
    --eys-accent: var(--eys-electric);
    --eys-accent-rgb: 245, 168, 0;
}

.eys-gas,
.eys-page--gas {
    --eys-accent: var(--eys-gas);
    --eys-accent-rgb: 112, 174, 45;
}

.eys-carbon,
.eys-page--carbon {
    --eys-accent: var(--eys-carbon);
    --eys-accent-rgb: 43, 138, 110;
}

.eys-compensation,
.eys-page--compensation {
    --eys-accent: var(--eys-compensation);
    --eys-accent-rgb: 123, 97, 201;
}

.eys-reporting,
.eys-page--reporting {
    --eys-accent: var(--eys-reporting);
    --eys-accent-rgb: 49, 104, 178;
}

/* Breadcrumb */
.eys-breadcrumb,
.eys-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--eys-text-soft);
    font-size: 0.9rem;
    list-style: none;
}

    .eys-breadcrumb li + li::before,
    .eys-breadcrumbs li + li::before {
        content: "/";
        margin-right: 8px;
        color: #9aa4ae;
    }

/* Hero */
.eys-hero,
.eys-page .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(70px, 9vw, 124px) 0;
    color: var(--eys-white);
    background: radial-gradient(circle at 82% 20%, rgba(var(--eys-accent-rgb), 0.34), transparent 30%), linear-gradient(135deg, #101c29 0%, var(--eys-navy) 55%, #213a52 100%);
}

    .eys-hero::after,
    .eys-page .hero::after {
        position: absolute;
        z-index: -1;
        right: -140px;
        bottom: -220px;
        width: 520px;
        height: 520px;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
        content: "";
    }

.eys-hero-grid,
.eys-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
}

.eys-hero-content {
    max-width: 760px;
}

.eys-hero h1,
.eys-hero h2,
.eys-hero h3,
.eys-page .hero h1,
.eys-page .hero h2,
.eys-page .hero h3 {
    color: var(--eys-white);
}

.eys-hero p,
.eys-page .hero p {
    color: rgba(255, 255, 255, 0.78);
}

.eys-eyebrow,
.eys-kicker,
.eys-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--eys-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

    .eys-eyebrow::before,
    .eys-kicker::before,
    .eys-page .eyebrow::before {
        width: 28px;
        height: 3px;
        border-radius: 99px;
        background: currentColor;
        content: "";
    }

.eys-lead,
.eys-page .lead {
    max-width: 720px;
    margin-bottom: 30px;
    color: var(--eys-text-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.8;
}

.eys-hero .eys-lead,
.eys-page .hero .lead {
    color: rgba(255, 255, 255, 0.8);
}

.eys-hero-actions,
.eys-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.eys-hero-media,
.eys-hero-card,
.eys-page .hero-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--eys-radius-lg);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: var(--eys-shadow-lg);
    backdrop-filter: blur(14px);
}

.eys-hero-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 42px);
}

    .eys-hero-card h3,
    .eys-hero-card strong {
        color: var(--eys-white);
    }

/* Butonlar */
.eys-btn,
.eys-page .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--eys-transition), background-color var(--eys-transition), border-color var(--eys-transition), box-shadow var(--eys-transition);
}

    .eys-btn:hover,
    .eys-page .btn:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }

.eys-btn-primary,
.eys-page .btn-primary {
    color: #ffffff !important;
    background: var(--eys-accent);
    box-shadow: 0 9px 24px rgba(var(--eys-accent-rgb), 0.27);
}

    .eys-btn-primary:hover,
    .eys-page .btn-primary:hover {
        color: #ffffff !important;
        background: var(--eys-orange-dark);
        box-shadow: 0 13px 28px rgba(var(--eys-accent-rgb), 0.36);
    }

.eys-water .eys-btn-primary:hover,
.eys-electric .eys-btn-primary:hover,
.eys-gas .eys-btn-primary:hover,
.eys-carbon .eys-btn-primary:hover,
.eys-compensation .eys-btn-primary:hover,
.eys-reporting .eys-btn-primary:hover {
    background: var(--eys-accent);
    filter: brightness(0.88);
}

.eys-btn-secondary,
.eys-page .btn-secondary {
    color: var(--eys-navy) !important;
    border-color: var(--eys-border);
    background: var(--eys-white);
}

    .eys-btn-secondary:hover,
    .eys-page .btn-secondary:hover {
        border-color: var(--eys-accent);
        color: var(--eys-accent) !important;
    }

.eys-hero .eys-btn-secondary,
.eys-hero .eys-btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

    .eys-hero .eys-btn-secondary:hover,
    .eys-hero .eys-btn-outline:hover {
        border-color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.12);
    }

/* Bölümler */
.eys-section,
.eys-page .section {
    padding: clamp(66px, 8vw, 108px) 0;
    scroll-margin-top: 110px;
}

.eys-section-sm {
    padding: clamp(44px, 6vw, 72px) 0;
}

.eys-section-light,
.eys-section-muted,
.eys-page .section-light {
    background: var(--eys-surface-alt);
}

.eys-section-dark {
    color: rgba(255, 255, 255, 0.78);
    background: var(--eys-navy);
}

    .eys-section-dark h2,
    .eys-section-dark h3,
    .eys-section-dark h4 {
        color: var(--eys-white);
    }

.eys-section-head,
.eys-section-heading,
.eys-page .intro {
    max-width: 820px;
    margin: 0 auto clamp(34px, 5vw, 58px);
    text-align: center;
}

    .eys-section-head p,
    .eys-section-heading p,
    .eys-page .intro p {
        margin-bottom: 0;
        color: var(--eys-text-soft);
        font-size: 1.05rem;
    }

.eys-section-dark .eys-section-head p,
.eys-section-dark .eys-section-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.eys-section-head--left {
    margin-inline: 0;
    text-align: left;
}

/* Grid yardımcıları */
.eys-grid,
.eys-grid-2,
.eys-grid-3,
.eys-grid-4,
.eys-page .grid-3 {
    display: grid;
    gap: 24px;
}

.eys-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eys-grid-3,
.eys-page .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eys-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eys-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(36px, 7vw, 84px);
}

.eys-split--reverse .eys-split-media {
    order: -1;
}

/* Kartlar */
.eys-card,
.eys-page .card {
    position: relative;
    height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--eys-border);
    border-radius: var(--eys-radius-md);
    background: var(--eys-surface);
    box-shadow: var(--eys-shadow-sm);
    transition: transform var(--eys-transition), border-color var(--eys-transition), box-shadow var(--eys-transition);
}

    .eys-card:hover,
    .eys-page .card:hover {
        transform: translateY(-5px);
        border-color: rgba(var(--eys-accent-rgb), 0.45);
        box-shadow: var(--eys-shadow-md);
    }

    .eys-card h3,
    .eys-page .card h3 {
        margin-bottom: 10px;
    }

    .eys-card p:last-child,
    .eys-page .card p:last-child {
        margin-bottom: 0;
    }

.eys-card--accent {
    overflow: hidden;
    border-top: 4px solid var(--eys-accent);
}

    .eys-card--accent::after {
        position: absolute;
        top: -55px;
        right: -55px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(var(--eys-accent-rgb), 0.08);
        content: "";
    }

.eys-card-icon,
.eys-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    color: var(--eys-accent);
    background: rgba(var(--eys-accent-rgb), 0.11);
    font-size: 1.45rem;
}

    .eys-card-icon svg,
    .eys-icon svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

/* Özellik ve kontrol listeleri */
.eys-feature-list,
.eys-check-list,
.eys-page .feature-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

    .eys-feature-list li,
    .eys-check-list li,
    .eys-page .feature-list li {
        position: relative;
        padding-left: 30px;
    }

        .eys-feature-list li::before,
        .eys-check-list li::before,
        .eys-page .feature-list li::before {
            position: absolute;
            top: 0.52em;
            left: 2px;
            width: 14px;
            height: 8px;
            transform: rotate(-45deg);
            border-bottom: 2px solid var(--eys-accent);
            border-left: 2px solid var(--eys-accent);
            content: "";
        }

.eys-feature-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
}

/* Etiketler */
.eys-tags,
.eys-chip-list,
.eys-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.eys-tag,
.eys-chip,
.eys-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid rgba(var(--eys-accent-rgb), 0.22);
    border-radius: 999px;
    color: var(--eys-accent);
    background: rgba(var(--eys-accent-rgb), 0.075);
    font-size: 0.8rem;
    font-weight: 750;
    line-height: 1.3;
}

/* Vurgulu bilgi alanı */
.eys-highlight,
.eys-water-highlight,
.eys-page .water-highlight {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(var(--eys-accent-rgb), 0.23);
    border-radius: var(--eys-radius-lg);
    background: linear-gradient(135deg, rgba(var(--eys-accent-rgb), 0.13), rgba(var(--eys-accent-rgb), 0.025)), var(--eys-surface);
}

.eys-water-highlight,
.eys-page .water-highlight {
    --eys-accent: var(--eys-water);
    --eys-accent-rgb: 12, 143, 206;
}

    .eys-highlight > :last-child,
    .eys-water-highlight > :last-child {
        margin-bottom: 0;
    }

/* KPI / sayısal göstergeler */
.eys-kpi-grid,
.eys-stats,
.eys-page .kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.eys-kpi,
.eys-stat,
.eys-page .kpi {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--eys-border);
    border-radius: var(--eys-radius-md);
    background: var(--eys-surface);
    box-shadow: var(--eys-shadow-sm);
}

    .eys-kpi-value,
    .eys-stat-value,
    .eys-kpi strong,
    .eys-stat strong,
    .eys-page .kpi strong {
        display: block;
        margin-bottom: 5px;
        color: var(--eys-accent);
        font-size: clamp(1.55rem, 3vw, 2.3rem);
        font-weight: 820;
        line-height: 1.1;
    }

    .eys-kpi-label,
    .eys-stat-label,
    .eys-page .kpi span {
        color: var(--eys-text-soft);
        font-size: 0.88rem;
    }

.eys-hero .eys-kpi,
.eys-hero .eys-stat {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

.eys-hero .eys-kpi-label,
.eys-hero .eys-stat-label {
    color: rgba(255, 255, 255, 0.67);
}

/* Adımlar / süreç */
.eys-steps,
.eys-process,
.eys-page .steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    counter-reset: eys-step;
    list-style: none;
}

.eys-step,
.eys-process-item,
.eys-page .step {
    position: relative;
    min-width: 0;
    padding: 26px 20px;
    border: 1px solid var(--eys-border);
    border-radius: var(--eys-radius-md);
    background: var(--eys-surface);
    counter-increment: eys-step;
}

    .eys-step::before,
    .eys-process-item::before,
    .eys-page .step::before {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        margin-bottom: 18px;
        border-radius: 50%;
        color: #ffffff;
        background: var(--eys-accent);
        content: counter(eys-step, decimal-leading-zero);
        font-size: 0.75rem;
        font-weight: 800;
    }

    .eys-step:not(:last-child)::after,
    .eys-process-item:not(:last-child)::after {
        position: absolute;
        z-index: 2;
        top: 44px;
        right: -19px;
        width: 19px;
        height: 2px;
        background: var(--eys-accent);
        content: "";
    }

/* Tablo */
.eys-table-wrap,
.eys-table-responsive {
    overflow-x: auto;
    border: 1px solid var(--eys-border);
    border-radius: var(--eys-radius-md);
    background: var(--eys-surface);
    box-shadow: var(--eys-shadow-sm);
    -webkit-overflow-scrolling: touch;
}

.eys-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.94rem;
}

    .eys-table th,
    .eys-table td {
        padding: 17px 20px;
        border-bottom: 1px solid var(--eys-border);
        text-align: left;
        vertical-align: top;
    }

    .eys-table th {
        color: var(--eys-navy);
        background: var(--eys-surface-alt);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .eys-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .eys-table tbody tr:hover td {
        background: rgba(var(--eys-accent-rgb), 0.035);
    }

/* Alarm / bilgi kutuları */
.eys-alert,
.eys-note,
.eys-legal-note,
.eys-page .legal-note {
    position: relative;
    margin: 24px 0;
    padding: 18px 20px 18px 52px;
    border: 1px solid var(--eys-border);
    border-left: 4px solid var(--eys-accent);
    border-radius: var(--eys-radius-sm);
    color: var(--eys-text-soft);
    background: var(--eys-surface-alt);
    font-size: 0.92rem;
}

    .eys-alert::before,
    .eys-note::before,
    .eys-legal-note::before,
    .eys-page .legal-note::before {
        position: absolute;
        top: 18px;
        left: 20px;
        color: var(--eys-accent);
        content: "i";
        font-size: 1rem;
        font-weight: 900;
        line-height: 1;
    }

.eys-alert--success {
    --eys-accent: var(--eys-success);
}

.eys-alert--warning {
    --eys-accent: var(--eys-warning);
}

.eys-alert--danger {
    --eys-accent: var(--eys-danger);
}

/* SCADA / ekran görselleri */
.eys-dashboard,
.eys-screen,
.eys-product-visual {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border: 1px solid var(--eys-border);
    border-radius: var(--eys-radius-lg);
    background: #101a25;
    box-shadow: var(--eys-shadow-lg);
}

    .eys-dashboard img,
    .eys-screen img,
    .eys-product-visual img {
        width: 100%;
        border-radius: calc(var(--eys-radius-lg) - 10px);
    }

.eys-device-stack {
    position: relative;
    min-height: 440px;
}

    .eys-device-stack .eys-mobile {
        position: absolute;
        right: -10px;
        bottom: -30px;
        width: min(35%, 190px);
        border: 8px solid #101a25;
        border-radius: 28px;
        box-shadow: var(--eys-shadow-lg);
    }

/* Çağrı alanı */
.eys-cta,
.eys-page .cta {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 68px);
    border-radius: var(--eys-radius-lg);
    color: rgba(255, 255, 255, 0.78);
    background: radial-gradient(circle at 90% 15%, rgba(var(--eys-accent-rgb), 0.42), transparent 28%), linear-gradient(135deg, #111e2b, var(--eys-navy));
    box-shadow: var(--eys-shadow-lg);
}

.eys-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.eys-cta h2,
.eys-cta h3,
.eys-page .cta h2,
.eys-page .cta h3 {
    color: var(--eys-white);
}

.eys-cta p:last-child,
.eys-page .cta p:last-child {
    margin-bottom: 0;
}

.eys-cta .eys-btn-secondary,
.eys-page .cta .btn-secondary {
    color: var(--eys-navy) !important;
    border-color: #ffffff;
    background: #ffffff;
}

/* Basit boşluk yardımcıları */
.eys-mt-0 {
    margin-top: 0 !important;
}

.eys-mt-2 {
    margin-top: 16px !important;
}

.eys-mt-3 {
    margin-top: 24px !important;
}

.eys-mt-4 {
    margin-top: 36px !important;
}

.eys-mb-0 {
    margin-bottom: 0 !important;
}

.eys-mb-2 {
    margin-bottom: 16px !important;
}

.eys-mb-3 {
    margin-bottom: 24px !important;
}

.eys-mb-4 {
    margin-bottom: 36px !important;
}

.eys-text-center {
    text-align: center !important;
}

.eys-text-accent {
    color: var(--eys-accent) !important;
}

.eys-text-muted {
    color: var(--eys-text-soft) !important;
}

/* Koyu tema: sitenin kullandığı sınıfa göre otomatik çalışır */
html[data-theme="dark"] .eys-page,
html[data-theme="dark"] .eys-container,
html[data-bs-theme="dark"] .eys-page,
html[data-bs-theme="dark"] .eys-container,
body.dark-mode .eys-page,
body.dark-mode .eys-container,
.theme-dark .eys-page,
.theme-dark.eys-page {
    --eys-text: #d9e1e8;
    --eys-text-soft: #9eabb8;
    --eys-navy: #f4f7fa;
    --eys-surface: #15212d;
    --eys-surface-alt: #101a24;
    --eys-border: #293949;
    --eys-shadow-sm: 0 7px 20px rgba(0, 0, 0, 0.18);
    --eys-shadow-md: 0 15px 38px rgba(0, 0, 0, 0.25);
    --eys-shadow-lg: 0 25px 64px rgba(0, 0, 0, 0.33);
}

html[data-theme="dark"] .eys-page,
html[data-bs-theme="dark"] .eys-page,
body.dark-mode .eys-page,
.theme-dark.eys-page {
    background: #0c141d;
}

html[data-theme="dark"] .eys-btn-secondary,
html[data-bs-theme="dark"] .eys-btn-secondary,
body.dark-mode .eys-btn-secondary,
.theme-dark .eys-btn-secondary {
    color: var(--eys-text) !important;
    background: var(--eys-surface);
}

html[data-theme="dark"] .eys-hero,
html[data-bs-theme="dark"] .eys-hero,
body.dark-mode .eys-hero,
.theme-dark .eys-hero {
    background: radial-gradient(circle at 82% 20%, rgba(var(--eys-accent-rgb), 0.27), transparent 30%), linear-gradient(135deg, #070c12 0%, #0c1722 55%, #12273a 100%);
}

/* Tablet */
@media (max-width: 1050px) {
    .eys-grid-4,
    .eys-kpi-grid,
    .eys-stats,
    .eys-page .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eys-steps,
    .eys-process,
    .eys-page .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eys-step::after,
    .eys-process-item::after {
        display: none;
    }
}

@media (max-width: 850px) {
    .eys-hero-grid,
    .eys-page .hero-grid,
    .eys-split,
    .eys-cta-grid {
        grid-template-columns: 1fr;
    }

    .eys-hero-content {
        max-width: 100%;
    }

    .eys-hero-media,
    .eys-hero-card,
    .eys-page .hero-card {
        min-height: 300px;
    }

    .eys-grid-3,
    .eys-page .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eys-cta-grid {
        text-align: center;
    }

    .eys-cta .eys-actions {
        justify-content: center;
    }

    .eys-split--reverse .eys-split-media {
        order: 0;
    }
}

/* Mobil */
@media (max-width: 620px) {
    .eys-container,
    .eys-page .container {
        width: min(100% - 28px, var(--eys-container));
    }

    .eys-hero,
    .eys-page .hero {
        padding: 64px 0;
    }

    .eys-grid-2,
    .eys-grid-3,
    .eys-grid-4,
    .eys-page .grid-3,
    .eys-kpi-grid,
    .eys-stats,
    .eys-page .kpi-grid,
    .eys-steps,
    .eys-process,
    .eys-page .steps,
    .eys-feature-list--columns {
        grid-template-columns: 1fr;
    }

    .eys-card,
    .eys-page .card,
    .eys-kpi,
    .eys-stat,
    .eys-page .kpi {
        padding: 22px;
    }

    .eys-hero-actions,
    .eys-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .eys-btn,
    .eys-page .btn {
        width: 100%;
    }

    .eys-device-stack {
        min-height: 330px;
    }

        .eys-device-stack .eys-mobile {
            right: 6px;
            bottom: -18px;
            width: 34%;
            border-width: 5px;
            border-radius: 20px;
        }

    .eys-cta,
    .eys-page .cta {
        padding: 34px 22px;
        border-radius: var(--eys-radius-md);
    }
}

/* Hareket hassasiyeti */
@media (prefers-reduced-motion: reduce) {
    .eys-page *,
    .eys-page *::before,
    .eys-page *::after,
    .eys-container *,
    .eys-container *::before,
    .eys-container *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Yazdırılabilir EYS rapor ve içerikleri */
@media print {
    .eys-page,
    .eys-container {
        --eys-text: #111111;
        --eys-text-soft: #444444;
        --eys-navy: #111111;
        --eys-surface: #ffffff;
        --eys-surface-alt: #ffffff;
        --eys-border: #cccccc;
        color: #111111;
        background: #ffffff;
    }

    .eys-hero,
    .eys-section-dark,
    .eys-cta {
        color: #111111;
        background: #ffffff !important;
        box-shadow: none;
    }

        .eys-hero h1,
        .eys-hero h2,
        .eys-section-dark h2,
        .eys-cta h2 {
            color: #111111;
        }

    .eys-btn,
    .eys-actions {
        display: none !important;
    }

    .eys-card,
    .eys-kpi,
    .eys-stat,
    .eys-highlight,
    .eys-table-wrap {
        break-inside: avoid;
        box-shadow: none;
    }
}


/* EYS hero bilgi kutuları */
.eys-hero .eys-container {
    color: #fff;
}

.eys-hero__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.eys-fact {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

    .eys-fact strong {
        display: block;
        margin-bottom: 6px;
        color: #fff;
        font-size: 1rem;
        font-weight: 750;
    }

    .eys-fact span {
        display: block;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.88rem;
        line-height: 1.55;
    }

@media (max-width: 900px) {
    .eys-hero__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .eys-hero__facts {
        grid-template-columns: 1fr;
    }
}