/*
 * Oguz TechAI — brief references (same palette, calmer spacing like health AI sites):
 *   https://hevi.ai/          — airy sections, clear nav, soft cards, demo-style CTAs
 *   https://www.tempus.com/   — clinical / precision tone
 *   https://butterflynetwork.com (butterfly.ai) — med-tech clarity
 * No parallax / heavy motion. Load DM Sans via <link> in HTML.
 */
:root {
    --oguz-navy: #0c1929;
    --oguz-navy-mid: #132a45;
    --oguz-text: #1e293b;
    --oguz-muted: #64748b;
    --oguz-line: #e2e8f0;
    --oguz-accent: #0e7490;
    --oguz-accent-soft: #ecfeff;
    --oguz-white: #ffffff;
    --oguz-radius: 14px;
    --oguz-radius-lg: 18px;
    /* Page chrome — slate blue-grey zemin (referans ~#6a8591) */
    --oguz-canvas: #6a8591;
    --oguz-canvas-mid: #7a919b;
    --oguz-canvas-deep: #5d7885;
}

.oguz-body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--oguz-text);
    background: linear-gradient(
        180deg,
        var(--oguz-canvas-mid) 0%,
        var(--oguz-canvas) 32%,
        var(--oguz-canvas-deep) 72%,
        var(--oguz-canvas) 100%
    );
    background-color: var(--oguz-canvas);
    -webkit-font-smoothing: antialiased;
}

/* —— Header —— */
.oguz-header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* Ana sayfa kart bandı + gövde ile aynı aile; üstte hafif mint (teal paletten) */
    background: linear-gradient(
            180deg,
            rgba(236, 254, 255, 0.55) 0%,
            rgba(255, 255, 255, 0) 42%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.82) 45%,
            var(--oguz-canvas-mid) 100%
        );
    border-bottom: 1px solid var(--oguz-line);
    backdrop-filter: saturate(1.15) blur(10px);
    -webkit-backdrop-filter: saturate(1.15) blur(10px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 8px 32px rgba(12, 25, 41, 0.04);
}

.oguz-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(13, 148, 136, 0.45) 22%,
        rgba(14, 165, 233, 0.5) 50%,
        rgba(99, 102, 241, 0.4) 78%,
        transparent 100%
    );
    opacity: 0.85;
}

.oguz-header .header-menu-area {
    background: transparent;
    border-bottom: 0;
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
}

.oguz-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.22rem;
    letter-spacing: -0.035em;
    color: var(--oguz-navy);
    text-decoration: none;
    line-height: 1;
}

.oguz-logo:hover {
    color: var(--oguz-navy);
    text-decoration: none;
}

.oguz-logo:hover .oguz-logo-mark {
    color: #0d9488;
}

.oguz-logo-badge {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d9488 0%, #0ea5e9 55%, #6366f1 100%);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.oguz-logo-mark {
    font-weight: 700;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.oguz-header .header__menu nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oguz-header .header__menu nav > ul > li {
    display: block;
    float: none;
    margin-left: 0;
    position: relative;
}

.oguz-header .header__menu nav > ul > li > a.oguz-nav-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: #475569 !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: 10px;
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.oguz-header .header__menu nav > ul > li > a.oguz-nav-link:hover {
    color: var(--oguz-navy) !important;
    background: rgba(241, 245, 249, 0.95);
}

.oguz-header .header__menu nav > ul > li > a.oguz-nav-link.is-active {
    color: var(--oguz-navy) !important;
    background: linear-gradient(180deg, #ecfeff 0%, #e0f2fe 100%);
    box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.2);
}

/* Meanmenu (≤992px): hamburger dikeyde aşağı + teal ( !important: meanmenu.css mavi ezilmesin ) */
@media (max-width: 991.98px) {
    .oguz-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .oguz-header .header-menu-area {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
        position: relative;
    }

    .oguz-header .header-menu-area .col-12:last-child {
        position: static;
    }

    .oguz-body .oguz-header .mean-container {
        position: static;
    }

    .oguz-body .oguz-header .mean-container .mean-bar {
        min-height: 0;
        padding: 0;
        float: none;
        position: static;
        background: none;
    }

    .oguz-body .oguz-header .mean-container a.meanmenu-reveal {
        position: absolute !important;
        top: 50% !important;
        right: 15px !important;
        transform: translateY(-50%);
        margin-top: 0 !important;
        z-index: 101;
        border: 1px solid rgba(13, 148, 136, 0.7) !important;
        color: #0d9488 !important;
        border-radius: 10px;
        height: 38px;
        line-height: 34px;
        padding: 4px 9px;
        width: 38px;
    }

    .oguz-body .oguz-header .mean-container a.meanmenu-reveal span {
        background: #0d9488 !important;
        margin-top: 4px;
        top: 5px;
    }

    .oguz-body .oguz-header .mean-container .mean-nav {
        margin-top: 0.5rem;
        background: linear-gradient(
            165deg,
            var(--oguz-navy) 0%,
            var(--oguz-navy-mid) 50%,
            #134e4a 100%
        );
        border-radius: 0 0 var(--oguz-radius) var(--oguz-radius);
        box-shadow: 0 14px 36px rgba(12, 25, 41, 0.22);
    }

    .oguz-body .oguz-header .mean-container .mean-nav ul li a {
        float: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.95rem 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        letter-spacing: 0.07em;
        font-size: 0.8125rem;
        font-weight: 600;
        font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        color: rgba(255, 255, 255, 0.95);
    }

    .oguz-body .oguz-header .mean-container .mean-nav ul li:first-child > a {
        border-top: none;
    }

    .oguz-body .oguz-header .mean-container .mean-nav ul li a:hover {
        background: rgba(13, 148, 136, 0.2);
        color: #ecfdf5;
    }
}

/* —— Home hero (static image + overlay, no motion) —— */
.oguz-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 4.5rem 0 4rem;
    background-color: var(--oguz-navy);
    background-size: cover;
    background-position: center;
}

.oguz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 60%,
        transparent 100%
    );
    z-index: 0;
}

.oguz-hero .container {
    position: relative;
    z-index: 1;
}

.oguz-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.oguz-hero-brand {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--oguz-white);
    margin: 0 0 0.85rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Match logo gradient on “AI” inside hero title */
.oguz-hero-brand .oguz-logo-mark {
    -webkit-text-fill-color: transparent;
}

.oguz-hero-line {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    max-width: 36rem;
    margin: 0 0 1.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.oguz-hero .oguz-lead-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 38rem;
    margin: 0 0 1.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.oguz-btn {
    display: inline-block;
    padding: 0.8rem 1.65rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.oguz-btn--primary {
    background: var(--oguz-white);
    color: var(--oguz-navy);
    border: 1px solid var(--oguz-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.oguz-btn--primary:hover {
    background: var(--oguz-accent-soft);
    color: var(--oguz-navy);
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.15);
    text-decoration: none;
}

.oguz-btn--ghost {
    background: transparent;
    color: var(--oguz-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

.oguz-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--oguz-white);
    text-decoration: none;
}

@media (max-width: 575px) {
    .oguz-btn--ghost {
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

.oguz-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1.75rem;
    margin-bottom: 0;
}

/* —— Hero Slider —— */
.oguz-hero-slider {
    position: relative;
    min-height: 82vh;
    overflow: hidden;
    background-color: var(--oguz-navy);
}

.oguz-hero-slider__track {
    position: relative;
    width: 100%;
    min-height: 82vh;
}

.oguz-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 4.5rem 0 4rem;
    background-color: var(--oguz-navy);
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}

.oguz-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.oguz-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 60%,
        transparent 100%
    );
    z-index: 0;
}

.oguz-hero-slide .container {
    position: relative;
    z-index: 1;
}

.oguz-hero-slide .oguz-hero-brand {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.oguz-hero-slide .oguz-hero-line {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.oguz-hero-slide .oguz-lead-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 38rem;
    margin: 0 0 1.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
.oguz-hero-slide .pt-10 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.oguz-hero-slide .oguz-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1.75rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.85s, transform 0.6s ease 0.85s;
}

.oguz-hero-slide.is-active .oguz-hero-brand,
.oguz-hero-slide.is-active .oguz-hero-line,
.oguz-hero-slide.is-active .oguz-lead-body,
.oguz-hero-slide.is-active .pt-10,
.oguz-hero-slide.is-active .oguz-note {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.oguz-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(12, 25, 41, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    backdrop-filter: blur(4px);
}
.oguz-hero-slider__arrow:hover {
    background: rgba(13, 148, 136, 0.55);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}
.oguz-hero-slider__arrow--prev { left: 1.5rem; }
.oguz-hero-slider__arrow--next { right: 1.5rem; }

/* Dots */
.oguz-hero-slider__dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.6rem;
}
.oguz-hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    padding: 0;
}
.oguz-hero-slider__dot:hover {
    border-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.15);
}
.oguz-hero-slider__dot.is-active {
    background: var(--oguz-white);
    border-color: var(--oguz-white);
    transform: scale(1.15);
}

/* Slider progress bar */
.oguz-hero-slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oguz-accent-soft), rgba(255,255,255,0.8));
    z-index: 5;
    width: 0%;
    transition: width linear;
}

@media (max-width: 991px) {
    .oguz-hero-slider {
        min-height: auto;
    }
    .oguz-hero-slider__track {
        min-height: auto;
    }
    .oguz-hero-slide {
        position: relative;
        min-height: 70vh;
        padding: 3.5rem 0 3rem;
    }
    .oguz-hero-slide:not(.is-active) {
        position: absolute;
    }
    .oguz-hero-slide .col-xl-8,
    .oguz-hero-slide .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .oguz-hero-slide .oguz-lead-body {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .oguz-hero-slider__arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .oguz-hero-slider__arrow--prev { left: 0.5rem; }
    .oguz-hero-slider__arrow--next { right: 0.5rem; }
    .oguz-hero-slider__dots { bottom: 0.75rem; }
    .oguz-hero-slider__dot { width: 10px; height: 10px; }

    .oguz-hero-slide {
        min-height: 65vh;
        padding: 3rem 0 2.5rem;
    }
    .oguz-hero-slide .oguz-hero-brand {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .oguz-hero-slide .oguz-hero-line {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }
    .oguz-hero-slide .oguz-lead-body {
        font-size: 0.92rem;
        line-height: 1.6;
        max-width: 100%;
    }
    .oguz-hero-slide .oguz-note {
        font-size: 0.78rem;
    }
    .oguz-hero-slide .pt-10 {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .oguz-hero-slide .pt-10 .oguz-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
    }
    .oguz-hero-slide .pt-10 .oguz-btn--ghost {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .oguz-hero-slider {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    .oguz-hero-slide .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .oguz-hero-slider__track {
        min-height: auto;
    }
    .oguz-hero-slide {
        min-height: auto;
        height: auto;
        padding: 2rem 0 2.5rem;
        align-items: flex-start;
    }
    .oguz-hero-slide .oguz-hero-brand {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    .oguz-hero-slide .oguz-hero-line {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    .oguz-hero-slide .oguz-lead-body {
        display: block;
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }
    .oguz-hero-slide .oguz-note {
        font-size: 0.75rem;
        margin-top: 1rem;
    }
    .oguz-hero-slide .pt-10 {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .oguz-hero-slide .pt-10 .oguz-btn {
        padding: 0.55rem 1.2rem;
        font-size: 0.8rem;
    }
    .oguz-hero-slide .pt-10 .oguz-btn--ghost {
        margin-left: 0;
    }
    .oguz-hero-slider__arrow {
        display: none;
    }
    .oguz-hero-slider__dots {
        bottom: 0.5rem;
    }
    .oguz-hero-slider__dot {
        width: 8px;
        height: 8px;
    }
}


/* —— Feature cards —— */
.oguz-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oguz-muted);
    margin-bottom: 0.5rem;
}

.oguz-section-head {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--oguz-navy);
    margin-bottom: 2.5rem;
}

.oguz-heading-panel {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--oguz-navy);
    margin-bottom: 1.25rem;
}

.oguz-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    background: var(--oguz-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    color: var(--oguz-accent);
    margin-bottom: 1.35rem;
}

.oguz-feature-card {
    background: var(--oguz-white);
    border: 1px solid var(--oguz-line);
    border-radius: var(--oguz-radius-lg);
    padding: 2rem 1.65rem;
    height: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.oguz-feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 20px 48px rgba(12, 25, 41, 0.07);
}

.oguz-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 0.5rem;
}

.oguz-feature-card p {
    font-size: 0.95rem;
    color: var(--oguz-muted);
    margin: 0;
}

/* Home: kart bandı — açık şerit, slate zemin üzerinde kontrast */
.oguz-home-features {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        #ffffff 50%,
        rgba(255, 255, 255, 0.82) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

/* —— Inner page hero (flat, fast — no parallax) —— */
.oguz-page-hero {
    padding: 5.5rem 0 3rem;
    background: linear-gradient(180deg, var(--oguz-navy) 0%, var(--oguz-navy-mid) 100%);
    border-bottom: 0;
}

.oguz-page-hero .oguz-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.6rem;
}

.oguz-page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--oguz-white);
    margin: 0 0 0.75rem;
}

.oguz-page-hero .oguz-page-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 40rem;
    margin: 0;
}

/* —— Services —— */
.oguz-service-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--oguz-line);
}

.oguz-service-block:last-child {
    border-bottom: 0;
}

.oguz-service-block__media {
    flex: 0 0 220px;
    max-width: 100%;
}

.oguz-service-block__media img {
    width: 100%;
    border-radius: var(--oguz-radius);
    object-fit: cover;
    aspect-ratio: 4/3;
    background: #f1f5f9;
}

.oguz-service-block__body {
    flex: 1;
    min-width: 260px;
}

.oguz-service-block__body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.oguz-service-block__body p {
    color: var(--oguz-muted);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* —— Services page: card layout, same Oguz palette —— */
.oguz-page-services .oguz-services-hero {
    position: relative;
    padding-bottom: 3.5rem;
}

.oguz-page-services .oguz-services-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(45, 212, 191, 0.55),
        rgba(14, 165, 233, 0.55),
        rgba(99, 102, 241, 0.45)
    );
}

.oguz-services-main {
    padding: 3rem 0 4.5rem;
    background: linear-gradient(
        180deg,
        var(--oguz-canvas-mid) 0%,
        rgba(255, 255, 255, 0.95) 44%,
        var(--oguz-canvas) 100%
    );
}

.oguz-page-services .oguz-services-main .oguz-section-head {
    margin-bottom: 2rem;
}

.oguz-page-services .oguz-service-block {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.35rem 1.4rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--oguz-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(12, 25, 41, 0.06);
    overflow: hidden;
    border-bottom: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.oguz-page-services .oguz-service-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0d9488, #0ea5e9);
    opacity: 0.88;
}

.oguz-page-services .oguz-service-block:last-of-type {
    margin-bottom: 0;
}

.oguz-page-services .oguz-service-block:hover {
    box-shadow: 0 14px 40px rgba(12, 25, 41, 0.09);
    border-color: rgba(13, 148, 136, 0.22);
}

.oguz-page-services .oguz-service-block__media {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

.oguz-page-services .oguz-service-block__media img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: #f1f5f9;
}

.oguz-page-services .oguz-service-block__body {
    flex: 1;
    min-width: 0;
}

.oguz-page-services .oguz-service-block__body h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .oguz-page-services .oguz-service-block {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 2.25rem;
        padding: 1.85rem 2.25rem 1.85rem 1.85rem;
    }

    .oguz-page-services .oguz-service-block__media {
        flex: 0 0 clamp(320px, 40vw, 600px);
        width: clamp(320px, 40vw, 600px);
        max-width: clamp(320px, 40vw, 600px);
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .oguz-page-services .oguz-service-block:nth-of-type(even) {
        flex-direction: row-reverse;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oguz-page-services .oguz-service-block {
        transition: none;
    }
}

@media (max-width: 767px) {
    .oguz-services-main {
        padding: 2.5rem 0 3.5rem;
    }
}

/* Hizmetler: satır genişliği (.container veya .container-fluid) */
.oguz-page-services main .container,
.oguz-page-services main .container-fluid.oguz-services-wide,
.oguz-page-services main .container-fluid.oguz-services-hero-inner {
    max-width: min(99vw, 1920px) !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
}

@media (min-width: 1200px) {
    .oguz-page-services .oguz-service-block {
        gap: 2.5rem;
        padding: 2.1rem 2.5rem 2.1rem 1.9rem;
    }
}

/* —— About —— */
.oguz-stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--oguz-radius);
    border: 1px solid var(--oguz-line);
    height: 100%;
}

.oguz-stat-box strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 0.35rem;
}

.oguz-stat-box span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--oguz-muted);
}

.oguz-focus-grid .oguz-focus-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--oguz-text);
}

.oguz-focus-item i {
    color: var(--oguz-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.section-oguz-light {
    background: var(--oguz-canvas-mid);
}

.oguz-prose h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 1rem;
}

.oguz-prose p {
    color: var(--oguz-muted);
    max-width: 48rem;
}

/* —— Contact —— */
.oguz-contact-aside a {
    color: var(--oguz-accent);
}

.oguz-map-wrap {
    border-radius: var(--oguz-radius);
    overflow: hidden;
    border: 1px solid var(--oguz-line);
}

.oguz-map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.oguz-body .contact-form button[type="submit"].oguz-btn-submit,
.oguz-body .oguz-btn-submit {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0d9488 0%, #0e7490 50%, #0369a1 100%);
    color: var(--oguz-white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.oguz-body .oguz-btn-submit:hover {
    filter: brightness(1.06);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.45);
    color: var(--oguz-white);
}

/* —— Contact page: richer layout & color (still professional) —— */
.oguz-page-contact .oguz-contact-hero {
    position: relative;
    padding-bottom: 4rem;
    background: linear-gradient(
        165deg,
        #0a1628 0%,
        #0f2847 42%,
        #134e4a 100%
    );
}

.oguz-page-contact .oguz-contact-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, #2dd4bf, #0ea5e9, #818cf8, #2dd4bf);
    background-size: 200% 100%;
    animation: oguz-contact-shimmer 8s linear infinite;
}

@keyframes oguz-contact-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oguz-page-contact .oguz-contact-hero::after {
        animation: none;
        background: linear-gradient(90deg, #2dd4bf, #0ea5e9, #818cf8);
    }
}

.oguz-contact-trust {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.oguz-contact-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
}

.oguz-contact-trust li i {
    color: #5eead4;
    font-size: 0.85rem;
}

.oguz-contact-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.oguz-contact-main {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(
        180deg,
        rgba(240, 253, 250, 0.92) 0%,
        rgba(255, 255, 255, 0.88) 38%,
        var(--oguz-canvas-mid) 100%
    );
}

.oguz-contact-card {
    position: relative;
    background: var(--oguz-white);
    border-radius: 16px;
    padding: 2rem 1.75rem 2.25rem;
    height: 100%;
    border: 1px solid rgba(14, 116, 144, 0.12);
    box-shadow: 0 20px 50px rgba(12, 25, 41, 0.07);
    overflow: hidden;
}

.oguz-contact-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #0ea5e9);
}

.oguz-contact-card__accent--form {
    background: linear-gradient(90deg, #0369a1, #6366f1, #0d9488);
}

.oguz-contact-card__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e7490;
    margin: 0.35rem 0 0.4rem;
}

.oguz-contact-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--oguz-navy);
    margin: 0 0 0.5rem;
}

.oguz-contact-card__intro {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--oguz-muted);
    margin: 0 0 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--oguz-line);
}

.oguz-contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    transition: background 0.15s ease;
    border-radius: 10px;
    margin: 0 -0.35rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.oguz-contact-channel:last-child {
    border-bottom: 0;
}

.oguz-contact-channel:hover {
    background: rgba(14, 116, 144, 0.06);
    text-decoration: none;
    color: inherit;
}

.oguz-contact-channel--static {
    cursor: default;
}

.oguz-contact-channel--static:hover {
    background: transparent;
}

.oguz-contact-channel__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(145deg, #0d9488, #0891b2);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.oguz-contact-channel--phone .oguz-contact-channel__icon {
    background: linear-gradient(145deg, #059669, #0d9488);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.28);
}

.oguz-contact-channel--location .oguz-contact-channel__icon {
    background: linear-gradient(145deg, #0369a1, #4f46e5);
    box-shadow: 0 6px 16px rgba(3, 105, 161, 0.28);
}

.oguz-contact-channel--linkedin .oguz-contact-channel__icon {
    background: linear-gradient(145deg, #0a66c2, #0369a1);
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
}

.oguz-contact-channel__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.oguz-contact-channel__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.oguz-contact-channel__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--oguz-navy);
    word-break: break-word;
}

a.oguz-contact-channel .oguz-contact-channel__value {
    color: #0e7490;
}

a.oguz-contact-channel:hover .oguz-contact-channel__value {
    color: #0f766e;
}

.oguz-contact-card--form .oguz-contact-form-inner {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.95) 100%);
    border-radius: 12px;
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1px solid var(--oguz-line);
}

.oguz-page-contact .oguz-contact-form-inner .form-box {
    position: relative;
}

.oguz-page-contact .oguz-contact-form-inner .form-box::before {
    display: none !important;
}

.oguz-page-contact .oguz-contact-form-inner .form-box input,
.oguz-page-contact .oguz-contact-form-inner .form-box textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--oguz-text);
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    height: auto;
    font-family: inherit;
}

.oguz-page-contact .oguz-contact-form-inner .form-box input::placeholder,
.oguz-page-contact .oguz-contact-form-inner .form-box textarea::placeholder {
    color: #94a3b8;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.oguz-page-contact .oguz-contact-form-inner .form-box input:focus,
.oguz-page-contact .oguz-contact-form-inner .form-box textarea:focus {
    border-color: #5eead4;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
    outline: none;
}

.oguz-contact-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.25rem;
}

.oguz-contact-submit-row .oguz-btn-submit {
    margin-right: 1.25rem;
    margin-bottom: 0.5rem;
}

.oguz-contact-form-note {
    font-size: 0.85rem;
    color: var(--oguz-muted);
}

.oguz-contact-form-note strong {
    color: #0e7490;
}

.oguz-contact-map {
    padding: 2.5rem 0 4.5rem;
    background: linear-gradient(
        180deg,
        var(--oguz-canvas) 0%,
        rgba(236, 254, 255, 0.55) 45%,
        #e0f2fe 100%
    );
}

.oguz-contact-map__header {
    margin-bottom: 1.25rem;
}

.oguz-contact-map__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0369a1;
    margin: 0 0 0.35rem;
}

.oguz-contact-map__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--oguz-navy);
    margin: 0 0 0.35rem;
}

.oguz-contact-map__sub {
    font-size: 0.95rem;
    color: var(--oguz-muted);
    margin: 0;
    max-width: 36rem;
}

.oguz-map-wrap--contact {
    border: none;
    box-shadow: 0 24px 60px rgba(12, 25, 41, 0.12);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(14, 165, 233, 0.25);
}

.oguz-map-wrap--contact iframe {
    height: 450px;
}

/* —— Contact page responsive —— */
@media (max-width: 991px) {
    .oguz-contact-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .oguz-contact-card {
        padding: 1.5rem 1.25rem 1.75rem;
        border-radius: 12px;
    }
    .oguz-contact-card--form .oguz-contact-form-inner {
        padding: 1.25rem 1rem 1rem;
    }
    .oguz-map-wrap--contact iframe {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .oguz-contact-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .oguz-contact-main {
        padding: 1.5rem 0 2rem;
    }
    .oguz-contact-card {
        padding: 1.25rem 1rem 1.5rem;
        border-radius: 10px;
    }
    .oguz-contact-card__title {
        font-size: 1.15rem;
    }
    .oguz-contact-card--form .oguz-contact-form-inner {
        padding: 1rem 0.75rem 0.75rem;
    }
    .oguz-contact-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    .oguz-contact-trust li {
        font-size: 0.72rem;
        padding: 0.4rem 0.7rem;
    }
    .oguz-contact-map {
        padding: 1.5rem 0 2.5rem;
    }
    .oguz-map-wrap--contact iframe {
        height: 280px;
    }
    .oguz-contact-map__title {
        font-size: 1.2rem;
    }
    .oguz-contact-channel__icon {
        width: 38px;
        height: 38px;
    }
    .oguz-contact-submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .oguz-contact-submit-row .oguz-btn-submit {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .oguz-contact-form-note {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* —— Footer —— */
.oguz-footer {
    background: var(--oguz-navy);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem !important;
    padding-bottom: 2.25rem !important;
}

.oguz-footer a {
    color: rgba(255, 255, 255, 0.88);
    margin-left: 1rem;
    font-size: 1.1rem;
}

.oguz-footer a:first-of-type {
    margin-left: 0;
}

.oguz-footer a:hover {
    color: var(--oguz-white);
}

/* —— About page: modern sections, same Oguz palette —— */
.oguz-page-about .oguz-about-hero {
    position: relative;
    padding-bottom: 3.5rem;
}

.oguz-page-about .oguz-about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(45, 212, 191, 0.55),
        rgba(14, 165, 233, 0.55),
        rgba(99, 102, 241, 0.45)
    );
}

.oguz-about-section {
    padding: 3.5rem 0;
}

.oguz-page-about .oguz-about-intro {
    background: #fff;
}

.oguz-about-photo {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 25, 41, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f1f5f9;
}

.oguz-about-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.oguz-about-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e7490;
    margin: 0 0 0.5rem;
}

.oguz-page-about .oguz-about-article h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--oguz-navy);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.oguz-page-about .oguz-about-apart {
    background: linear-gradient(180deg, var(--oguz-canvas-mid) 0%, var(--oguz-canvas) 100%);
}

.oguz-about-highlight {
    max-width: 52rem;
    padding: 2rem 1.75rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--oguz-line);
    box-shadow: 0 12px 40px rgba(12, 25, 41, 0.06);
    border-left: 4px solid #0d9488;
}

.oguz-about-highlight h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 0.85rem;
}

.oguz-about-highlight p {
    color: var(--oguz-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.oguz-page-about .oguz-about-focus {
    background: #fff;
}

.oguz-page-about .oguz-about-focus .oguz-section-head {
    margin-bottom: 1.75rem;
}

.oguz-page-about .oguz-about-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    margin-bottom: 0.75rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--oguz-line);
    box-shadow: 0 4px 18px rgba(12, 25, 41, 0.04);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--oguz-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.oguz-page-about .oguz-about-focus .col-md-6 .oguz-about-focus-item:last-child {
    margin-bottom: 0;
}

.oguz-page-about .oguz-about-focus-item:hover {
    border-color: rgba(13, 148, 136, 0.28);
    box-shadow: 0 8px 28px rgba(12, 25, 41, 0.07);
}

.oguz-page-about .oguz-about-focus-item i {
    color: var(--oguz-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.oguz-page-about .oguz-about-partners {
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.55) 0%, rgba(240, 249, 255, 0.45) 100%);
}

.oguz-about-partners-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 32px rgba(12, 25, 41, 0.05);
}

@media (min-width: 768px) {
    .oguz-about-partners-inner {
        flex-direction: row;
        align-items: center;
        gap: 1.75rem;
    }
}

.oguz-about-partners-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #0d9488, #0e7490);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.oguz-about-partners-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oguz-navy);
    margin-bottom: 0.5rem;
}

.oguz-about-partners-text p {
    color: var(--oguz-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: none;
}

.oguz-page-about .oguz-about-stats {
    background: linear-gradient(180deg, var(--oguz-canvas) 0%, var(--oguz-canvas-deep) 100%);
    padding-bottom: 4.5rem;
}

.oguz-stat-box--about {
    position: relative;
    padding-top: 1.65rem;
    background: #fff;
    border: 1px solid var(--oguz-line);
    box-shadow: 0 6px 24px rgba(12, 25, 41, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.oguz-stat-box--about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #0d9488, #0ea5e9);
    opacity: 0.8;
}

.oguz-stat-box--about:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 25, 41, 0.08);
}

@media (max-width: 991px) {
    .oguz-page-about .oguz-about-section {
        padding: 2.75rem 0;
    }

    .oguz-about-highlight {
        padding: 1.5rem 1.25rem;
    }

    .oguz-about-partners-inner {
        padding: 1.5rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oguz-stat-box--about {
        transition: none;
    }

    .oguz-stat-box--about:hover {
        transform: none;
    }

    .oguz-page-about .oguz-about-focus-item {
        transition: none;
    }
}

/* Meanmenu / mobile: keep readable */
@media (max-width: 991px) {
    .oguz-hero {
        min-height: auto;
        padding: 3.5rem 0 3rem;
    }
    .oguz-hero .col-xl-8,
    .oguz-hero .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .oguz-hero .oguz-lead-body {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .oguz-hero {
        padding: 3rem 0 2.5rem;
    }
    .oguz-hero .oguz-hero-brand {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .oguz-hero .oguz-hero-line {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }
    .oguz-hero .oguz-lead-body {
        font-size: 0.92rem;
    }
    .oguz-hero .pt-10 {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .oguz-hero .pt-10 .oguz-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
    }
    .oguz-hero .pt-10 .oguz-btn--ghost {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .oguz-hero {
        padding: 2.5rem 0 2rem;
    }
    .oguz-hero .oguz-hero-brand {
        font-size: 1.45rem;
    }
    .oguz-hero .oguz-hero-line {
        font-size: 1rem;
    }
    .oguz-hero .oguz-lead-body {
        font-size: 0.85rem;
    }
    .oguz-hero .pt-10 .oguz-btn {
        width: 100%;
        text-align: center;
    }
}
