:root {
    --bg: #343536;
    --bg-soft: #4A4A49;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --surface: #ffffff;
    --surface-text: #3F3D3C;
    --primary: #008CC7;
    --primary-soft: #16B5E4;
    --accent-cyan: #16B5E4;
    --accent-cyan-soft: #69D3F1;
    --radius: 14px;
    --shadow: 0 16px 40px rgba(63, 61, 60, .16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Yatay taşmayı kes – sayfada yatay scroll barı çıkmasın */
html, body {
    overflow-x: hidden;
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: #f4f7fb;
    color: var(--surface-text);
    line-height: 1.55;
}

a { color: inherit; }

.container {
    width: min(1240px, 100% - 40px);
    margin: 0 auto;
}

.section { padding: 56px 0; }
.section-sm { padding: 32px 0; }
.section-compact-top { padding-top: 0; }

.contact-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.home-content-sections {
    display: flex;
    flex-direction: column;
}

.home-content-sections .home-products {
    order: 1;
}

.home-content-sections .section-home-about {
    order: 2;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.muted { color: #64748b; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.btn-ghost {
    border: 1px solid rgba(148, 163, 184, .35);
    color: #e2e8f0;
    background: rgba(63, 61, 60, .35);
}

.btn-light-outline {
    border: 1.5px solid rgba(226, 232, 240, .45);
    color: #f8fafc;
    background: rgba(63, 61, 60, .35);
}

.btn-light-outline:hover {
    border-color: rgba(22, 181, 228, .9);
    color: #EAF9FD;
    background: rgba(22, 181, 228, .25);
}

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ----- Header ----- */
.topbar {
    position: relative;
    z-index: 60;
    overflow: visible;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 28px rgba(63, 61, 60, .06);
    color: #3F3D3C;
    transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: min(1480px, 100% - 72px);
    gap: clamp(12px, 1.2vw, 22px);
    min-height: 80px;
    overflow: visible;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    padding: 0;
    color: #3F3D3C;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #3F3D3C;
    display: block;
}

.nav-brand {
    flex: 0 0 auto;
    text-decoration: none;
    font-size: 1.42rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #3F3D3C;
    transition: opacity .2s ease, color .2s ease;
}

.nav-brand:hover {
    color: #008CC7;
    opacity: 1;
}

.nav-brand-img {
    display: block;
    height: 4rem;
    width: auto;
    object-fit: contain;
    transition: filter .28s ease, opacity .28s ease;
}

.nav-links {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(0px, .2vw, 4px);
    margin-left: 0;
    overflow: visible;
    left: auto;
}

.nav-links > a {
    flex: 0 1 auto;
    text-decoration: none;
    color: #3F3D3C;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 10px clamp(10px, .75vw, 16px);
    border-radius: 999px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-links > a:hover {
    color: #008CC7;
    background: #EAF9FD;
    box-shadow: inset 0 0 0 1px rgba(22, 181, 228, .35);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(226, 232, 240, .9);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}

.nav-dropdown-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.nav-dropdown-chevron {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 2px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(-135deg);
}

/* Mega menu */
.nav-mega-wrap {
    position: relative;
    overflow: visible;
}

.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    text-decoration: none;
    color: #3F3D3C;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 10px clamp(10px, .75vw, 16px);
    border-radius: 999px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-mega-trigger:hover {
    color: #008CC7;
    background: #EAF9FD;
    box-shadow: inset 0 0 0 1px rgba(22, 181, 228, .35);
}

.nav-mega-wrap.is-open .nav-mega-trigger {
    color: #008CC7;
    background: #F5FBFD;
    box-shadow: inset 0 0 0 1px rgba(22, 181, 228, .4);
}

.nav-mega-chevron {
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
    opacity: .9;
    transition: transform .25s ease;
}

.nav-mega-wrap:hover .nav-mega-chevron {
    transform: rotate(-135deg);
}

.nav-mega-panel {
    position: fixed;
    left: 50%;
    width: min(1540px, calc(100vw - 32px));
    transform: translate(-50%, 10px);
    top: var(--header-bottom, 80px);
    min-width: 0;
    max-height: calc(100vh - var(--header-bottom, 80px));
    background: #fff;
    border-radius: 0 0 8px 8px;
    border: 1px solid #edf0f5;
    border-top: 0;
    box-shadow: 0 18px 32px rgba(63, 61, 60, .08);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity .22s ease, transform .26s ease, visibility .22s ease;
}

@keyframes megaIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-mega-wrap.is-open .nav-mega-panel,
.nav-mega-wrap:hover .nav-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-products-mobile {
    display: none;
}

.nav-products-panel {
    padding: 26px 24px 34px;
}

.nav-products-grid {
    display: grid;
    grid-template-columns: minmax(360px, 470px) minmax(0, 1fr);
    gap: 38px;
    min-height: 470px;
    background: #fff;
}

.nav-products-overview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 470px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dfe4ec;
    overflow: hidden;
    padding: 12px;
}

.nav-products-overview::before {
    display: none;
}

.nav-products-overview-preview {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
    object-position: center;
    transition: opacity .18s ease, transform .22s ease;
}

.nav-products-overview.is-loading .nav-products-overview-preview {
    opacity: .35;
    transform: scale(.985);
}

.nav-products-overview-placeholder,
.nav-products-overview.is-empty::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
}

.nav-products-overview.is-empty .nav-products-overview-preview {
    display: none;
}

.nav-products-overview:not(.is-empty) .nav-products-overview-placeholder {
    display: none;
}

.nav-products-categories {
    min-width: 0;
    padding: 0 12px 0 0;
}

.nav-products-category-list {
    display: block;
    columns: 3 190px;
    column-gap: 42px;
}

.nav-products-category-link {
    display: block;
    break-inside: avoid;
    min-width: 0;
    min-height: 0;
    padding: 7px 0;
    color: #008CC7;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.nav-products-category-link span {
    min-width: 0;
}

.nav-products-category-link svg {
    display: none;
}

.nav-products-category-link:hover,
.nav-products-category-link:focus-visible {
    color: #16B5E4;
    transform: translateX(3px);
}

@media (min-width: 1200px) {
    .nav-products-category-list {
        columns: 3 190px;
    }
}

@media (min-width: 981px) and (max-width: 1199px) {
    .nav-mega-panel {
        width: calc(100vw - 32px);
    }

    .nav-products-grid {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 26px;
    }

    .nav-products-category-list {
        columns: 2 160px;
        column-gap: 26px;
    }
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(63, 61, 60, .12), 0 0 0 1px rgba(0, 0, 0, .03);
    padding: 6px;
    display: none;
    z-index: 80;
    animation: navDropdownIn .2s ease;
}

@keyframes navDropdownIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    color: #334155;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.nav-dropdown-menu a:hover {
    background: #f0f9ff;
    color: var(--primary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    gap: clamp(8px, .8vw, 12px);
    margin-left: 0;
    transform: none;
}

@media (max-width: 1320px) and (min-width: 981px) {
    .nav-links {
        flex-grow: 1;
    }

    .nav-links > a,
    .nav-mega-trigger {
        font-size: 13px;
        padding-inline: 9px;
    }
}


.lang {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 4px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.lang-btn {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
}

.lang-btn:hover {
    color: #3F3D3C;
}

.lang-btn.active {
    color: #3F3D3C;
    background: #F5FBFD;
    box-shadow: inset 0 0 0 1px rgba(22, 181, 228, .25);
}

/* Transparent header over the home hero */
.home-page .topbar {
    position: absolute;
    inset: 0 0 auto;
    z-index: 80;
    background: rgba(255, 255, 255, 0);
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-page .topbar:hover,
.home-page .topbar:focus-within,
.home-page .topbar.is-mobile-open {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: rgba(226, 232, 240, .9);
    box-shadow: 0 14px 34px rgba(63, 61, 60, .1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .nav-links > a,
.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .nav-mega-trigger {
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .nav-mega-chevron {
    opacity: 1;
}

.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .topbar-search-input,
.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .lang {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.home-page .topbar:not(:hover):not(:focus-within):not(.is-mobile-open) .nav-brand-img {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

/* ----- Footer ----- */
.site-footer {
    margin-top: 64px;
    background: linear-gradient(160deg, #3F3D3C 0%, #585756 50%, #3F3D3C 100%);
    color: #b8c4da;
    border-top: 1px solid rgba(22, 181, 228, .15);
}

.footer-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 36px 0 28px;
    align-items: start;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s ease;
}

.footer-logo:hover {
    color: #e2e8f0;
}

.footer-logo-img {
    display: block;
    height: 3.75rem;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #9aa9c3;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-left: 90px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #16B5E4;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-col a:hover {
    color: #69D3F1;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(22, 181, 228, .2);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.footer-col-contact {
    min-width: 260px;
    margin-left: auto;
}

.footer-contact-list {
    margin-top: 6px;
    display: grid;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #EAF9FD 0, rgba(22, 181, 228, .1) 40%, transparent 70%),
        linear-gradient(135deg, #16B5E4 0%, #69D3F1 100%);
    box-shadow: 0 6px 16px rgba(63, 61, 60, .45);
    color: #3F3D3C;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
}

.footer-contact-value {
    font-size: 14px;
    color: #e5e7eb;
}

.footer-contact-value:hover {
    color: #facc6b;
}

/* ----- Sticky contact FABs (phone + WhatsApp) ----- */
.sticky-contact-fabs {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.sticky-contact-fabs .sticky-fab {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sticky-contact-fabs .sticky-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}

.sticky-contact-fabs .sticky-fab:active {
    transform: scale(0.98);
}

.sticky-fab-phone {
    background: linear-gradient(135deg, #16B5E4, #008CC7);
}

.sticky-fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* ----- Hero ----- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    z-index: 2;
    content: "";
    position: absolute;
    left: 0;
    bottom: -5.83333vw;
    width: 28.59375vw;
    height: 11.66667vw;
    border-radius: 0 10.41667vw 0 0;
    background-color: #fff;
    overflow: hidden;
}

@media screen and (max-aspect-ratio: 1 / 1) and (max-width: 1200px),
       screen and (max-width: 639px) {
    .hero::before {
        left: -20.53333vw;
        bottom: -14.93333vw;
        width: 73.2vw;
        height: 29.86667vw;
        border-radius: 0 53.33333vw 0 0;
    }
}

.hero-track { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Gelen slide hafif öne zoom, giden slide arkaya küçülüp soluklaşır */
.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider videos are decorative backgrounds; never expose browser media UI. */
.hero-slide-video {
    pointer-events: none;
}

.hero-slide-video::-webkit-media-controls,
.hero-slide-video::-webkit-media-controls-enclosure,
.hero-slide-video::-webkit-media-controls-panel,
.hero-slide-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(63, 61, 60, .88) 10%, rgba(63, 61, 60, .56) 50%, rgba(63, 61, 60, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 88px;
    display: grid;
    align-items: center;
}

.hero-copy {
    max-width: 700px;
    color: #fff;
    background: transparent;
    padding: 24px 0 22px;
}

.hero-kicker {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(22, 181, 228, .25);
    border: 1px solid rgba(22, 181, 228, .5);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.hero-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    padding: 0;
    transition: .2s ease;
}

.hero-dot:hover {
    background: rgba(22, 181, 228, .6);
}

.hero-dot.active {
    background: #16B5E4;
}

/* ----- Site pagination ----- */
.site-pagination {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.site-pagination nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.site-pagination nav > div:first-child {
    display: none;
}

.site-pagination nav > div:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.site-pagination nav > div:last-child > div:first-child {
    min-width: 0;
}

.site-pagination nav > div:last-child > div:first-child p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.site-pagination nav > div:last-child > div:first-child .font-medium {
    font-weight: 600;
    color: #3F3D3C;
}

.site-pagination nav > div:last-child > div:last-child {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(63, 61, 60, .06);
}

.site-pagination nav > div:last-child > div:last-child > span > * + *,
.site-pagination nav > div:last-child > div:last-child > span > * + * > span {
    margin-left: -1px;
}

.site-pagination nav a,
.site-pagination nav span[aria-disabled] > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.site-pagination nav a:hover {
    color: #16B5E4;
    background: #f0f9ff;
    border-color: #bae6fd;
}

.site-pagination nav > div:last-child > div:last-child > span > *:first-child,
.site-pagination nav > div:last-child > div:last-child > span > *:first-child > span {
    border-radius: 10px 0 0 10px;
}

.site-pagination nav > div:last-child > div:last-child > span > *:last-child,
.site-pagination nav > div:last-child > div:last-child > span > *:last-child > span {
    border-radius: 0 10px 10px 0;
}

.site-pagination nav span[aria-current="page"] > span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #16B5E4, #008CC7);
    border: 1px solid #008CC7;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.site-pagination nav span[aria-disabled] > span {
    color: #94a3b8;
    background: #f1f5f9;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

.site-pagination nav svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .site-pagination nav > div:last-child {
        flex-direction: column;
    }
    .site-pagination nav > div:last-child > div:first-child {
        text-align: center;
    }
}

/* ----- Section Head ----- */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 20px;
}

.section-kicker {
    color: #16B5E4;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 7px;
}

.section-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -.01em;
    color: #3F3D3C;
}

.section-desc {
    margin: 10px 0 0;
    color: #64748b;
    max-width: 640px;
}

.soft-link {
    color: #008CC7;
    text-decoration: none;
    font-weight: 600;
}

.soft-link:hover {
    color: #16B5E4;
}

.soft-link.is-static-link {
    color: #64748b;
    cursor: default;
}

/* ----- Ürünlerimiz showcase (Denizler Medikal tarzı: sol başlık, sağ carousel) ----- */
.section-products-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 78px 0;
    overflow: hidden;
    content-visibility: auto;
}

/* Başlık üstte, carousel tam genişlik */
.home-products-container {
    width: min(1240px, 100% - 40px);
    margin: 0 auto;
}

.home-products-head {
    margin-bottom: 32px;
}

.home-products-accent {
    width: 64px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-cyan-soft) 100%);
}

/* Ürünlerimiz: altın vurgu (Kurumsal ile uyumlu) */
.section-products-denizler .home-products-accent {
    background: linear-gradient(90deg, #16B5E4 0%, #69D3F1 100%);
}

.home-products-title {
    font-size: clamp(28px, 2.2vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    color: #242728;
    margin: 0;
}

.home-products-desc {
    margin: 14px 0 0;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.618;
    color: #727171;
    max-width: 640px;
}

.home-products-cta {
    margin-top: 22px;
}

.home-products-carousel-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.products-showcase {
    display: block;
}

.products-showcase-head {
    margin-bottom: 30px;
}

.products-reveal .home-products-head,
.products-reveal .section-products-denizler .showcase-card.denizler-card {
    opacity: 0;
    transform: translateY(22px);
}

.products-reveal .home-products-head {
    transition: opacity .95s ease, transform .95s cubic-bezier(.22, 1, .36, 1);
}

.products-reveal .section-products-denizler .showcase-card.denizler-card {
    transition:
        opacity .78s ease,
        transform .78s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        border-color .28s ease;
}

.products-reveal.is-visible .home-products-head,
.products-reveal.is-visible .section-products-denizler .showcase-card.denizler-card {
    opacity: 1;
    transform: translateY(0);
}

.products-reveal.is-visible .home-products-head {
    transition-delay: .22s;
}

.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(1) { transition-delay: .34s; }
.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(2) { transition-delay: .42s; }
.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(3) { transition-delay: .50s; }
.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(4) { transition-delay: .58s; }
.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(5) { transition-delay: .66s; }
.products-reveal.is-visible .products-showcase-grid .showcase-card.denizler-card:nth-child(6) { transition-delay: .74s; }

.section-title-accent {
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #008CC7 0%, #16B5E4 100%);
    margin-bottom: 16px;
}

.products-showcase-head .section-title,
.home-products-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.15;
    color: #3F3D3C;
}

.products-showcase-head .section-desc,
.home-products-desc {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    max-width: 760px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1.5px solid #dbe2ea;
    background: #fff;
    color: #3F3D3C;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: .28s ease;
    box-shadow: 0 8px 18px rgba(63, 61, 60, .05);
}

.btn-outline:hover {
    border-color: #008CC7;
    color: #008CC7;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(22, 181, 228, .16);
}

.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dfe7f0;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(63, 61, 60, .06);
    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        border-color .28s ease;
}

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    pointer-events: none;
    z-index: 2;
    transition: border-color .28s ease;
}

.showcase-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #008CC7 0%, #16B5E4 100%);
    transition: width .35s cubic-bezier(.22, 1, .36, 1);
    z-index: 3;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(63, 61, 60, .12);
    border-color: #d4deea;
}

.showcase-card:hover::before {
    border-color: rgba(22, 181, 228, .18);
}

.showcase-card:hover::after {
    width: 100%;
}

/* dağınık efekt */
.showcase-card:nth-child(4n + 1) { margin-top: 10px; }
.showcase-card:nth-child(4n + 2) { margin-top: 0; }
.showcase-card:nth-child(4n + 3) { margin-top: 42px; }
.showcase-card:nth-child(4n + 4) { margin-top: 18px; }

.showcase-card:nth-child(5n + 1) { min-height: 290px; }
.showcase-card:nth-child(5n + 3) { min-height: 330px; }
.showcase-card:nth-child(5n + 5) { min-height: 270px; }

.showcase-card-media {
    position: relative;
    height: 190px;
    background: linear-gradient(145deg, #eef4fb 0%, #f8fbff 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.showcase-card:nth-child(5n + 1) .showcase-card-media { height: 220px; }
.showcase-card:nth-child(5n + 3) .showcase-card-media { height: 250px; }
.showcase-card:nth-child(5n + 5) .showcase-card-media { height: 210px; }

.showcase-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(63, 61, 60, 0) 40%, rgba(63, 61, 60, .08) 100%);
    pointer-events: none;
}

.showcase-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.showcase-card:hover .showcase-card-media img {
    transform: scale(1.06);
}

.showcase-card-body {
    position: relative;
    padding: 20px 20px 22px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.showcase-card-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #3F3D3C;
    transition: color .28s ease;
}

.showcase-card-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    max-width: 220px;
    transition: color .28s ease;
}

.showcase-card:hover .showcase-card-body h3 {
    color: #008CC7;
}

.showcase-card:hover .showcase-card-body p {
    color: #475569;
}

.showcase-card-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    position: relative;
    transition:
        background .28s ease,
        border-color .28s ease,
        transform .28s ease,
        box-shadow .28s ease;
}

.showcase-card-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #334155;
    border-right: 2px solid #334155;
    transform: translate(-58%, -50%) rotate(45deg);
    transition: border-color .28s ease;
}

.showcase-card:hover .showcase-card-arrow {
    background: linear-gradient(135deg, #008CC7 0%, #16B5E4 100%);
    border-color: #008CC7;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(22, 181, 228, .24);
}

.showcase-card:hover .showcase-card-arrow::before {
    border-color: #fff;
}

.showcase-card-empty {
    min-width: 320px;
    min-height: 220px;
    padding: 40px;
    text-align: center;
    color: #64748b;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
}

.showcase-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #008CC7 0%, #16B5E4 100%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(22, 181, 228, .24);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, opacity .22s ease;
}

.showcase-nav-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 36px rgba(22, 181, 228, .30);
    filter: brightness(1.03);
}

.showcase-nav-arrow:active {
    transform: translateY(-50%) scale(.98);
}

.showcase-nav-arrow span::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -3px;
}

.showcase-nav-arrow-prev {
    left: -6px;
}

.showcase-nav-arrow-prev span::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.showcase-nav-arrow-next {
    right: 0;
}

/* ----- Denizler Medikal "Ürünler ve Çözümler" tarzı: bento grid ----- */
.section-products-denizler .products-showcase {
    align-items: start;
}

/* Ürünlerimiz: altın vurgu (Kurumsal ile uyumlu) */
.section-products-denizler .section-title-accent {
    background: linear-gradient(90deg, #16B5E4 0%, #69D3F1 100%);
}

.section-products-denizler .btn-outline:hover,
.section-products-denizler .home-products-cta:hover {
    border-color: #16B5E4;
    color: #008CC7;
    box-shadow: 0 14px 30px rgba(22, 181, 228, .25);
}

.products-showcase-grid-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Carousel: tek slayt görünür, noktalarla geçiş */
.products-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.products-carousel-slide .products-showcase-grid {
    width: 100%;
    min-height: 0;
    align-items: stretch;
}

.products-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.products-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #94a3b8;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.products-dot:hover {
    border-color: #64748b;
    background: rgba(29, 78, 216, 0.15);
}

.section-products-denizler .products-dot:hover {
    background: rgba(22, 181, 228, 0.2);
}

.products-dot.active {
    background: #008CC7;
    border-color: #008CC7;
}

.section-products-denizler .products-dot.active {
    background: #16B5E4;
    border-color: #16B5E4;
}

.products-dot:focus-visible {
    outline: 2px solid #008CC7;
    outline-offset: 2px;
}

.section-products-denizler .products-dot:focus-visible {
    outline-color: #16B5E4;
}

/* --- Denizler Medikal: asimetrik 2 satır x 3 sütun, büyük kartlar --- */
.products-showcase-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr 0.92fr;
    grid-template-rows: 320px 300px;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

/* Kart: sabit yükseklik, görsel ~62% / metin ~38%, hover'da mavi overlay (header CTA rengi) */
.section-products-denizler .showcase-card.denizler-card {
    position: relative;
    margin-top: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(63, 61, 60, .06);
    transition:
        opacity .82s ease,
        transform .82s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        border-color .28s ease;
    will-change: opacity, transform;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
}

.section-products-denizler .showcase-card.denizler-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(22, 181, 228, .2);
    border-color: rgba(22, 181, 228, .4);
}

.section-products-denizler .showcase-card.denizler-card::before,
.section-products-denizler .showcase-card.denizler-card::after {
    display: none;
}

/* Görsel: kartın büyük kısmı (~62%), kutuyu tamamen doldurur */
.section-products-denizler .showcase-card-media.denizler-card-media {
    position: relative;
    flex: 0 0 62%;
    width: 62%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    background: #fff;
    z-index: 1;
    overflow: hidden;
}

.section-products-denizler .showcase-card-media.denizler-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.section-products-denizler .showcase-card.denizler-card:hover .showcase-card-media.denizler-card-media img {
    transform: scale(1.04);
}

/* Özet paneli: açık gri, hover'da mavi overlay (Bize Ulaşın / header CTA rengi) */
.denizler-card-summary {
    position: relative;
    flex: 0 0 38%;
    width: 38%;
    min-width: 0;
    height: 100%;
    padding: clamp(12px, 1.5625vw, 20px) clamp(10px, 0.78125vw, 14px);
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.denizler-card-summary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-soft) 100%);
    transition: left .5s ease-out;
    z-index: 0;
    pointer-events: none;
}

.section-products-denizler .denizler-card-summary::after {
    background: linear-gradient(135deg, #16B5E4 0%, #69D3F1 100%);
}

.section-products-denizler .showcase-card.denizler-card:hover .denizler-card-summary::after {
    left: 0;
}

.denizler-card-title {
    margin: 0 0 6px;
    font-size: clamp(13px, 1.25vw, 16px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #242728;
    transition: color .25s ease;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    position: relative;
    z-index: 1;
}

.denizler-card-desc {
    margin: 0;
    font-size: clamp(12px, 1.14583vw, 14px);
    line-height: 1.618;
    color: #727171;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.section-products-denizler .showcase-card.denizler-card:hover .denizler-card-title,
.section-products-denizler .showcase-card.denizler-card:hover .denizler-card-desc {
    color: #fff;
}

.denizler-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #008CC7;
    text-decoration: none;
    transition: color .2s ease, gap .2s ease;
}

.section-products-denizler .denizler-card-link {
    color: #008CC7;
}

.denizler-card-link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.section-products-denizler .showcase-card-body {
    display: none;
}

.section-products-denizler .showcase-card-top {
    display: none;
}

/* Sol ve sağ oklar: varsayılan cyan, Ürünlerimiz bölümünde altın */
.products-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(44px, 2.60417vw, 54px);
    height: clamp(44px, 2.60417vw, 54px);
    padding: 0;
    border: 0;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-soft) 100%);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, .3);
}

.section-products-denizler .products-swiper-btn {
    background: linear-gradient(135deg, #16B5E4 0%, #69D3F1 100%);
    box-shadow: 0 8px 20px rgba(22, 181, 228, .35);
}

.products-swiper-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(14, 165, 233, .4);
}

.section-products-denizler .products-swiper-btn:hover {
    box-shadow: 0 10px 24px rgba(22, 181, 228, .45);
}

.products-swiper-btn:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.section-products-denizler .products-swiper-btn:focus-visible {
    outline-color: #16B5E4;
}

.products-swiper-btn-prev {
    left: 0;
    right: auto;
}

.products-swiper-btn-next {
    right: 0;
    left: auto;
}

.products-swiper-btn-icon {
    font-size: 1.35rem;
    line-height: 1;
}


/* Pagination geri planda / gizli */
.products-carousel-dots-minimal,
.home-products-carousel-wrap .products-carousel-dots.products-carousel-dots-minimal {
    margin-top: 14px;
    justify-content: flex-start;
    opacity: 0.35;
}

.home-products-carousel-wrap .products-carousel-dots {
    margin-top: 14px;
    justify-content: flex-start;
}

.denizler-grid-cta {
    align-self: flex-start;
}

.denizler-empty {
    grid-column: 1 / -1;
    min-width: auto;
}

/* ----- Categories ----- */
.category-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    text-decoration: none;
    color: inherit;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: .25s ease;
    box-shadow: 0 10px 24px rgba(63, 61, 60, .04);
}

.category-card:hover {
    border-color: rgba(22, 181, 228, .5);
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(22, 181, 228, .18);
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.category-media {
    margin: -18px -18px 14px;
    height: 150px;
    background: linear-gradient(145deg, #EAF9FD 0%, #F5FBFD 100%);
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----- Product Chips ----- */
.product-chip-grid {
    margin-top: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-chip {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: .2s ease;
}

.product-chip:hover {
    border-color: rgba(22, 181, 228, .45);
    background: #EAF9FD;
}

.product-chip strong {
    display: block;
    color: #3F3D3C;
    margin-bottom: 4px;
}



.section-home-about {
    background: linear-gradient(160deg, #3F3D3C 0%, #585756 50%, #3F3D3C 100%);
    padding: 74px 0;
}

.home-about-reveal .home-about-slide-left {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.05s;
}

.home-about-reveal .home-about-slide-right {
    opacity: 0;
    transform: translateX(56px);
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
}

.home-about-reveal.is-visible .home-about-slide-left,
.home-about-reveal.is-visible .home-about-slide-right {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .home-about-reveal .home-about-slide-left,
    .home-about-reveal .home-about-slide-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


.home-about-wrap {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
    gap: 48px;
    align-items: stretch;
}

.home-about-content {
    padding: 40px 36px;
    border-radius: var(--radius, 14px);
    border: 1px solid rgba(22, 181, 228, .25);
    background: rgba(63, 61, 60, .6);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
}

.section-home-about .section-kicker {
    color: #16B5E4;
    font-weight: 600;
    letter-spacing: .04em;
}

.section-home-about .section-title {
    color: #f8fafc;
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.home-about-content p {
    margin: 0;
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.75;
    max-width: 100%;
}

.home-about-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-home-about .home-about-actions .btn-primary {
    background: #16B5E4;
    color: #3F3D3C;
}

.section-home-about .home-about-actions .btn-primary:hover {
    background: #69D3F1;
    color: #3F3D3C;
    filter: none;
}

.btn-about-outline {
    border: 1.5px solid rgba(22, 181, 228, .6);
    color: #16B5E4;
    background: transparent;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.btn-about-outline:hover {
    border-color: #16B5E4;
    color: #69D3F1;
    background: rgba(22, 181, 228, .12);
}

.home-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.home-stat-card {
    padding: 20px 16px;
    border-radius: 14px;
    border: 1px solid rgba(22, 181, 228, .2);
    background: rgba(63, 61, 60, .5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    color: #e2e8f0;
}

.home-stat-card strong {
    display: block;
    font-size: clamp(22px, 2.8vw, 32px);
    letter-spacing: -.02em;
    color: #16B5E4;
    line-height: 1.15;
}

.home-stat-card span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.home-about-video {
    position: relative;
    border-radius: var(--radius, 14px);
    overflow: hidden;
    background: rgba(63, 61, 60, .8);
    border: 1px solid rgba(22, 181, 228, .2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .4);
    min-height: clamp(430px, 35vw, 620px);
    height: 100%;
}

.home-about-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #3F3D3C;
}

.home-about-video-embed iframe,
.home-about-video-embed video {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    user-select: none;
}

.home-about-video-embed video {
    object-fit: contain;
}

.intro-video-sound-toggle {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: 999px;
    background: rgba(15, 23, 42, .72);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.intro-video-sound-toggle:hover,
.intro-video-sound-toggle.is-sound-on {
    background: rgba(22, 181, 228, .88);
    border-color: rgba(255, 255, 255, .7);
}

.intro-video-sound-toggle:focus-visible {
    outline: 3px solid rgba(105, 211, 241, .55);
    outline-offset: 3px;
}

.home-about-video-embed video::-webkit-media-controls {
    display: none !important;
}

.home-about-video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    background: linear-gradient(145deg, rgba(63, 61, 60, .8) 0%, rgba(30, 41, 59, .6) 100%);
    color: var(--muted, #94a3b8);
    text-align: center;
}

.home-about-video-placeholder-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-soft, #16B5E4);
    background: rgba(29, 78, 216, .2);
    border-radius: 50%;
}

.home-about-video-placeholder p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 280px;
}

/* ----- Contact page ----- */
.section-contact-page {
    padding: 42px 0 72px;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 28px;
}

.contact-breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color .2s ease;
}

.contact-breadcrumb a:hover {
    color: #008CC7;
}

.contact-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: .6;
}

.contact-intro {
    max-width: 720px;
    margin-bottom: 40px;
}

.contact-intro-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #008CC7;
    margin-bottom: 10px;
}

.contact-intro h1 {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #3F3D3C;
    font-weight: 800;
}

.contact-intro p {
    margin: 16px 0 0;
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(63, 61, 60, .06);
}

.contact-info h2,
.contact-form-card h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #3F3D3C;
    letter-spacing: -.01em;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-list p {
    margin: 0;
    color: #334155;
    line-height: 1.65;
    font-size: 15px;
}

.contact-info-list a {
    color: #008CC7;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 16px;
    font: inherit;
    font-size: 15px;
    color: #3F3D3C;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #16B5E4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 181, 228, .2);
}

.contact-form-submit {
    margin-top: 6px;
    padding: 14px 24px;
    font-weight: 600;
}

.section-contact-page .btn-primary {
    background: linear-gradient(135deg, #16B5E4 0%, #69D3F1 100%);
    color: #3F3D3C;
}

.section-contact-page .btn-primary:hover {
    filter: brightness(1.05);
    color: #3F3D3C;
}

.contact-success {
    margin-bottom: 16px;
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.contact-map {
    margin-top: 16px;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    flex: 1 1 auto;
    min-height: 220px;
}

/* Sol sütun: İletişim Bilgileri + Harita birlikte esnesin */
.contact-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-card {
    height: 100%;
}

/* İletişim sayfası: sadece mobilde tek sütun (bilgi → harita → form), web yapısı aynı kalır */
@media (max-width: 767px) {
    .section-contact-page .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        align-items: stretch;
        min-width: 0;
        overflow: hidden;
    }

    .section-contact-page .contact-left {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 0;
        min-width: 0;
        overflow: hidden;
    }

    .section-contact-page .contact-left .contact-info {
        margin-bottom: 0;
        min-width: 0;
    }

    .section-contact-page .contact-map {
        margin-top: 16px;
        min-height: 240px;
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .section-contact-page .contact-map iframe,
    .section-contact-page .contact-map > div {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 240px;
        display: block;
        box-sizing: border-box;
    }

    .section-contact-page .contact-form-card {
        height: auto;
        min-width: 0;
        overflow: hidden;
    }

    .section-contact-page .contact-form input,
    .section-contact-page .contact-form textarea {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Mobilde yatay taşmayı kes */
    .section-contact-page {
        overflow-x: hidden;
    }

    .section-contact-page .container {
        min-width: 0;
    }
}

/* ----- Team section (contact page) ----- */
.section-contact-page .team-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}

.section-contact-page .team-section-heading {
    margin: 0 0 40px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    text-align: center;
    color: #3F3D3C;
    letter-spacing: -.02em;
}

.section-contact-page .team-section-grid {
    display: grid;
    gap: 24px;
    justify-items: stretch;
}

/* Üye sayısına göre sütun: 1 kişi = 1 sütun, 2 = 2, 3 = 3, 4+ = 4 (boş alan kalmaz) */
.section-contact-page .team-section-grid.team-count-1 {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.section-contact-page .team-section-grid.team-count-2 {
    grid-template-columns: repeat(2, 1fr);
}

.section-contact-page .team-section-grid.team-count-3 {
    grid-template-columns: repeat(3, 1fr);
}

.section-contact-page .team-section-grid.team-count-4,
.section-contact-page .team-section-grid.team-count-5,
.section-contact-page .team-section-grid.team-count-6 {
    grid-template-columns: repeat(4, 1fr);
}

.section-contact-page .team-card-wrapper {
    min-width: 0;
}

.section-contact-page .team-card {
    height: 100%;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(63, 61, 60, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .3s ease, border-color .3s ease;
}

.section-contact-page .team-card:hover {
    border-color: rgba(22, 181, 228, .5);
    box-shadow: 0 0 0 1px rgba(22, 181, 228, .35),
                0 8px 24px rgba(22, 181, 228, .12);
}

.section-contact-page .team-card-image-wrap {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto;
}

.section-contact-page .team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.section-contact-page .team-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.section-contact-page .team-card-name {
    margin: 18px 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #3F3D3C;
}

.section-contact-page .team-card-position {
    margin: 0 0 8px;
    font-size: 14px;
    color: #64748b;
}

.section-contact-page .team-card-bio {
    margin: 0 0 16px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    flex: 1;
}

.section-contact-page .team-card-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.section-contact-page .team-card-social a {
    color: #64748b;
    transition: color .2s ease;
}

.section-contact-page .team-card-social a:hover {
    color: #16B5E4;
}

.section-contact-page .team-social-icon {
    width: 20px;
    height: 20px;
}

/* Ekibimiz: Telefon ikonu (SVG için boyut verilmeli) */
.section-contact-page .team-card-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 14px;
    color: #475569;
}

.section-contact-page .team-card-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 14px;
    color: #475569;
    overflow-wrap: anywhere;
}

.section-contact-page .team-card-phone a,
.section-contact-page .team-card-email a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.section-contact-page .team-card-phone a:hover,
.section-contact-page .team-card-email a:hover {
    color: #16B5E4;
}

.section-contact-page .team-card-phone-icon,
.section-contact-page .team-card-email-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

@media (max-width: 1024px) {
    .section-contact-page .team-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-contact-page .team-section-grid.team-count-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .section-contact-page .team-section {
        margin-top: 48px;
        padding-top: 36px;
    }

    .section-contact-page .team-section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-contact-page .team-card {
        padding: 24px 16px;
    }

    .section-contact-page .team-card-image-wrap {
        max-width: 240px;
        aspect-ratio: 4 / 5;
    }
}

/* ----- Static pages ----- */
.section-static-page {
    padding: 58px 0 68px;
}

.static-page-card {
    padding: 28px;
    border: 1px solid #dbe5f0;
}

.static-page-title {
    margin: 0 0 14px;
    font-size: clamp(32px, 3.4vw, 44px);
    letter-spacing: -.01em;
    color: #3F3D3C;
}

.static-page-content {
    color: #334155;
    line-height: 1.9;
    font-size: 15px;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
    .products-showcase-head .section-desc,
    .home-products-desc {
        max-width: 620px;
    }

    .home-products-head {
        margin-bottom: 28px;
    }

    .products-swiper-btn-prev {
        left: 4px;
    }

    .products-swiper-btn-next {
        right: 4px;
    }

    .products-showcase-grid {
        grid-template-columns: 1.1fr 0.9fr;
        grid-template-rows: 280px 260px 280px;
        gap: 14px;
    }

    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    /* Ana sayfa ürünlerimiz bloğunda kartları mobilde tek sütun (alt alta) göster */
    .home-products .products-showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 220px;
        gap: 12px;
    }

    /* Mobilde her slaytta sadece ilk 2 kart görünsün (2'li) */
    .home-products .products-showcase-grid .showcase-card.denizler-card:nth-child(n + 3) {
        display: none;
    }
}

@media (max-width: 980px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-inner {
        min-height: 72px;
        padding: 10px 0;
        gap: 8px;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
        position: static;
        transform: none;
        margin-left: 0;
        flex: 0 0 42px;
        order: 4;
    }

    .nav-brand {
        margin-right: auto;
        min-width: 0;
    }

    .nav-brand-img {
        height: 3.25rem;
        max-width: 150px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px;
        border-radius: 14px;
        background: #3F3D3C;
        border: 1px solid rgba(148, 163, 184, .22);
        box-shadow: 0 16px 40px rgba(63, 61, 60, .45);
        flex-direction: column;
        gap: 6px;
        z-index: 100;
        margin-left: 0;
        left: 0;
        transform: none;
    }

    .topbar.is-mobile-open .nav-links {
        display: flex;
    }

    .nav-mega-wrap {
        width: 100%;
        min-width: 0;
    }

    .nav-links > a,
    .nav-mega-trigger {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .04);
        color: rgba(226, 232, 240, .95);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }

    .nav-mega-panel {
        display: none;
    }

    .nav-products-mobile {
        display: none;
        flex-direction: column;
        gap: 4px;
        margin-top: 8px;
        padding: 8px 0;
    }

    .nav-mega-wrap.is-open .nav-products-mobile {
        display: flex;
    }

    .nav-products-mobile-link {
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        color: rgba(226, 232, 240, .95);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        background: rgba(255, 255, 255, .04);
        transition: background .15s ease, color .15s ease;
    }

    .nav-products-mobile-link:hover {
        background: rgba(22, 181, 228, .2);
        color: #EAF9FD;
    }

    .nav-products-panel {
        padding: 10px;
    }

    .nav-products-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .nav-products-col {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-products-col:last-child {
        border-bottom: 0;
    }

    .nav-products-list {
        display: flex;
        max-height: 220px;
    }

    .nav-products-item span {
        white-space: normal;
    }

    .topbar-actions {
        margin-left: auto;
        gap: 6px;
        order: 3;
        transform: none;
    }

    .lang {
        gap: 1px;
        padding: 2px;
        border-radius: 8px;
    }

    .lang-btn {
        padding: 5px 6px;
        font-size: 10px;
        border-radius: 5px;
    }

    .topbar-search {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 0 28px;
    }

    .footer-nav {
        gap: 32px;
    }

    .footer-col-contact {
        margin-left: 0;
    }

}

@media (max-width: 560px) {
    .topbar-inner {
        width: calc(100% - 16px);
        gap: 5px;
    }

    .nav-brand-img {
        height: 2.75rem;
        max-width: 112px;
    }

    .topbar-actions {
        gap: 4px;
    }

    .lang-btn {
        padding: 5px 4px;
        font-size: 9px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media (max-width: 760px) {
    .hero-copy { padding: 18px; }

    .hero-copy h1 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .section-products-showcase {
        padding: 54px 0;
    }

    .home-products-head {
        margin-bottom: 24px;
    }

    .section-home-about {
        padding: 54px 0;
    }

    .home-about-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-about-content {
        padding: 28px 24px;
    }

    .home-about-stats {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .home-about-video {
        order: -1;
        min-height: 260px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-left {
        height: auto;
    }

    .contact-form-card {
        height: auto;
    }

    .contact-map {
        min-height: 240px;
    }

    .contact-map iframe {
        min-height: 240px;
    }

    .section-contact-page {
        padding: 28px 0 48px;
    }

    .contact-breadcrumb {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .contact-intro {
        margin-bottom: 24px;
    }

    .contact-intro h1 {
        font-size: clamp(26px, 6vw, 32px);
    }

    .contact-intro p {
        font-size: 15px;
        margin-top: 12px;
    }

    .contact-card {
        padding: 18px 20px;
    }

    .contact-info h2,
    .contact-form-card h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form-submit {
        min-height: 48px;
        padding: 14px 20px;
    }


    .products-showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 220px;
        gap: 12px;
        min-height: 0;
    }

    .products-carousel-slide,
    .products-carousel-slide .products-showcase-grid {
        min-height: 0;
    }

    .section-products-denizler .showcase-card.denizler-card {
        min-height: 0;
    }

    .denizler-card-summary {
        padding: 10px 12px;
    }

    .denizler-card-title {
        font-size: 14px;
    }

    .denizler-card-desc {
        font-size: 12px;
    }

    .products-swiper-btn {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .products-swiper-btn-prev {
        left: 8px;
        right: auto;
    }

    .products-swiper-btn-next {
        right: 8px;
        left: auto;
    }

    .footer-main {
        padding: 32px 0 24px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        margin-left: 0;
    }

    .category-grid,
    .product-chip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 16px 0;
        text-align: center;
    }

    .footer-copy {
        font-size: 12px;
    }
}
