:root {
    --blue: #1CB5A3;
    --blue-dark: #15967F;
    --blue-light: #E6F7F4;
    --navy: #282E45;
    --text: #212322;
    --muted: #686D7D;
    --bg-soft: #F3F6FB;
    --border: #E2E8F0;
    --radius: 16px;
    --shadow: 0 8px 30px rgba(15, 31, 28, 0.08);
    --header-h: 96px;

    /* Apsiyon tipografi ölçeği */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-xs: 0.6875rem;    /* 11px */
    --fs-sm: 0.8125rem;    /* 13px */
    --fs-base: 0.9375rem;  /* 15px */
    --fs-md: 1rem;         /* 16px */
    --fs-lg: 1.125rem;     /* 18px */
    --fs-xl: 1.25rem;      /* 20px */
    --fs-2xl: 1.75rem;     /* 28px */
    --fs-3xl: 2rem;        /* 32px */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-base: 26px;
    --lh-tight: 1.25;
    --lh-ui: 24px;

    --bs-body-font-family: var(--font-family);
    --bs-body-font-size: var(--fs-base);
    --bs-body-font-weight: var(--fw-regular);
    --bs-body-line-height: var(--lh-base);
    --bs-body-color: var(--text);
    --bs-font-sans-serif: var(--font-family);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
    font-family: var(--font-family);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-base);
    color: var(--text);
    background: #fff;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family); color: var(--text); font-weight: var(--fw-semibold); line-height: var(--lh-tight); }
p { line-height: var(--lh-base); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea, .btn { font-family: var(--font-family); }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); }
.site-header .navbar { padding: 12px 0; min-height: 76px; }
main#main-content { padding-top: var(--header-h); }
.brand-logo { height: 68px; width: auto; max-width: 280px; object-fit: contain; }
.footer-logo { height: 72px; width: auto; max-width: 260px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.nav-link { color: var(--navy) !important; font-weight: var(--fw-medium) !important; font-size: var(--fs-base) !important; line-height: var(--lh-ui) !important; padding: 8px 14px !important; }
.nav-link:hover { color: var(--blue) !important; }
.dropdown-menu { border-radius: 12px; padding: 8px; margin-top: 8px !important; font-size: var(--fs-base); }
.dropdown-menu-lg { min-width: 280px; max-height: 400px; overflow-y: auto; }
.dropdown-item { border-radius: 8px; padding: 8px 14px; font-size: var(--fs-base); font-weight: var(--fw-regular); }
.dropdown-item:hover { background: var(--blue-light); color: var(--blue); }
.btn-apsiyon {
    background: var(--blue);
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-base);
    box-shadow: 0 4px 14px rgba(28,181,163,.28);
}
.btn-apsiyon:hover { background: var(--blue-dark); color: #fff; }
.btn-outline-primary { font-size: var(--fs-base); font-weight: var(--fw-semibold); line-height: var(--lh-base); }
.btn-apsiyon-outline { border-radius: 999px; padding: 10px 22px; font-size: var(--fs-base); font-weight: var(--fw-semibold); }
.btn-icon { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--navy); border: 1px solid var(--border); }
.btn-icon:hover { background: var(--bg-soft); color: var(--blue); }

/* HERO / PROMO */
.promo-top { background: linear-gradient(90deg, #1CB5A3, #17a693); padding: 11px 0; }
.promo-top-link { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-size: var(--fs-base); font-weight: var(--fw-medium); line-height: var(--lh-ui); text-align: center; }
.promo-top-link strong { font-weight: var(--fw-semibold); }
.promo-top-link i { font-size: .8rem; }

.hero-apsiyon {
    position: relative;
    padding: 40px 0 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8fc 40%, #eef6f4 100%);
    overflow: hidden;
}
.hero-apsiyon::before,
.hero-apsiyon::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-apsiyon::before {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.28) 0%, transparent 70%);
}
.hero-apsiyon::after {
    width: 480px;
    height: 480px;
    top: 40px;
    right: -100px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, transparent 70%);
}
.hero-apsiyon > .container { position: relative; z-index: 1; }
.hero-slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 32px;
    min-height: 400px;
    align-items: center;
}
.hero-slider-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100%;
}
.hero-slider-content-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}
.hero-slider-content-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}
.hero-slider-content-item.exit-left { opacity: 0; transform: translateX(-32px); }
.hero-slider-content-item.enter-right { opacity: 1; transform: translateX(0); }
.hero-slider-content-item-title {
    font-size: clamp(1.625rem, 2.4vw, var(--fs-2xl));
    font-weight: var(--fw-semibold);
    color: var(--text);
    line-height: 1.22;
    margin-bottom: 18px;
    max-width: 14em;
    letter-spacing: -0.025em;
}
.hero-slider-content-item-title .text-primary { color: var(--blue); font-weight: var(--fw-semibold); display: inline; }
.hero-slider-content-item-description {
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    font-weight: var(--fw-regular);
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 38ch;
}
.hero-slider-content-item-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-apsiyon-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 26px;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    box-shadow: 0 10px 28px rgba(28, 181, 163, 0.32);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-apsiyon-hero:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(28, 181, 163, 0.38); }

.hero-slider-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px 0;
}
.hero-media-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 181, 163, 0.12) 0%, transparent 68%);
    z-index: 0;
    pointer-events: none;
}
.hero-media-plus {
    position: absolute;
    width: 260px;
    height: 260px;
    z-index: 1;
    transform: rotate(8deg);
    pointer-events: none;
}
.hero-media-plus::before,
.hero-media-plus::after {
    content: '';
    position: absolute;
    background: linear-gradient(145deg, #3dd4c0, #1CB5A3);
    border-radius: 32px;
    opacity: 0.55;
    box-shadow: 0 8px 32px rgba(28, 181, 163, 0.2);
}
.hero-media-plus::before { width: 64px; height: 260px; left: 98px; top: 0; }
.hero-media-plus::after { width: 260px; height: 64px; left: 0; top: 98px; }
.hero-slider-media-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(36px) scale(0.96);
    transition: opacity .45s ease, transform .45s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.hero-slider-media-item.active { opacity: 1; transform: translateX(0) scale(1); position: relative; }
.hero-slider-media-item.exit-right { opacity: 0; transform: translateX(36px) scale(0.96); }
.hero-slider-media-item.enter-left { opacity: 1; transform: translateX(0) scale(1); }
.hero-slider-media-item-image {
    width: 100%;
    max-width: 460px;
    max-height: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 28px 48px rgba(15, 31, 28, 0.18));
}

.hero-slider-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    justify-content: center;
}
.hero-slider-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: 100%;
    background: #EAF4FB;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background .25s, border-color .25s, box-shadow .25s, transform .25s;
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(40, 46, 69, 0.04);
}
.hero-slider-nav-item:hover {
    background: #f0f8fd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 46, 69, 0.08);
}
.hero-slider-nav-item.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 12px 32px rgba(40, 46, 69, 0.12);
    pointer-events: none;
}
.hero-slider-nav-thumb {
    width: 92px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    background: #dce8f2;
}
.hero-slider-nav-item span {
    font-size: var(--fs-sm);
    line-height: 1.4;
    font-weight: var(--fw-regular);
    color: var(--text);
}

.hero-audience {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
    padding-top: 12px;
}
.audience-card {
    position: relative;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    min-height: 120px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 28px rgba(40, 46, 69, 0.08);
    overflow: visible;
    transition: transform .2s, box-shadow .2s;
}
.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(40, 46, 69, 0.12);
    color: inherit;
}
.audience-card-media {
    position: relative;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-left: 18px;
}
.audience-card-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 12px;
    transform: translateY(-14px);
    box-shadow: 0 10px 24px rgba(15, 31, 28, 0.14);
    background: #f3f6f9;
}
.audience-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
    padding: 18px 22px 18px 10px;
}
.audience-card-body i {
    font-size: 1.75rem;
    color: var(--blue);
    line-height: 1;
}
.audience-card-body span {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--text);
    line-height: 1.35;
    max-width: 12em;
}

/* PROMO */
.promo-band { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; font-size: var(--fs-base); line-height: var(--lh-ui); }

/* TRUST BAND */
.trust-band { padding: 48px 0; background: #fff; border-bottom: 1px solid var(--border); }
.trust-band-title { text-align: center; font-size: var(--fs-lg); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 28px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.trust-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.trust-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.trust-photo { height: 160px; overflow: hidden; }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-body { padding: 20px; }
.trust-body strong { display: block; font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 6px; }
.trust-body p { font-size: var(--fs-sm); line-height: var(--lh-ui); color: var(--muted); margin: 0; }

/* SECTIONS */
.section { padding: 80px 0; }
.bg-soft { background: var(--bg-soft); }
.section-head h2 { font-size: var(--fs-2xl); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.section-head p { font-size: var(--fs-md); line-height: var(--lh-ui); color: var(--text); max-width: 640px; margin: 0 auto; font-weight: var(--fw-regular); }

/* PRODUCTS */
.products-slider { position: relative; padding: 0 40px; }
.product-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; height: 100%; transition: .25s; color: inherit; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #C8DBFA; color: inherit; }
.product-cover { height: 170px; overflow: hidden; background: var(--bg-soft); }
.product-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.product-card:hover .product-cover img { transform: scale(1.05); }
.product-body { padding: 22px; }
.product-card h3 { font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 8px; line-height: var(--lh-ui); }
.product-card p { font-size: var(--fs-sm); line-height: var(--lh-ui); color: var(--muted); margin: 0; }
.swiper-button-next, .swiper-button-prev { color: var(--blue) !important; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; margin-bottom: 36px; }
.stat-item { text-align: center; background: #fff; border-radius: var(--radius); padding: 24px 16px; border: 1px solid var(--border); }
.stat-num { font-size: var(--fs-3xl); font-weight: var(--fw-semibold); color: var(--blue); line-height: 1.1; letter-spacing: -0.02em; }
.stat-label { font-size: var(--fs-base); line-height: var(--lh-ui); color: var(--muted); margin-top: 8px; font-weight: var(--fw-regular); }

/* FEATURES */
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; height: 100%; transition: .2s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-cover { height: 200px; overflow: hidden; }
.feature-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-body { padding: 24px; }
.feature-card h4 { font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 8px; line-height: var(--lh-ui); }
.feature-card p { font-size: var(--fs-base); line-height: var(--lh-base); color: var(--muted); margin: 0; }

/* GALLERY */
/* GALLERY */
.gallery-grid { display: grid; gap: 20px; }
.gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-page { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
@media (min-width: 768px) {
    .gallery-grid-home { grid-template-columns: repeat(5, 1fr); }
}
.gallery-card {
    display: block; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; text-align: center;
    transition: transform .25s, box-shadow .25s; color: inherit; text-decoration: none;
}
.gallery-card-link { cursor: zoom-in; }
.gallery-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); color: inherit; }
.gallery-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-soft); }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }
.gallery-card-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(28, 181, 163, .0); color: #fff; font-size: 1.75rem;
    transition: background .25s;
}
.gallery-card:hover .gallery-card-overlay { background: rgba(28, 181, 163, .45); }
.gallery-card-title {
    display: block; padding: 12px 10px; font-size: var(--fs-sm);
    font-weight: var(--fw-semibold); color: var(--text);
}

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-item { text-align: center; padding: 24px; }
.process-no { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: var(--fw-semibold); font-size: var(--fs-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-item h4 { font-weight: var(--fw-semibold); font-size: var(--fs-md); color: var(--text); margin-bottom: 8px; }
.process-item p { font-size: var(--fs-base); line-height: var(--lh-base); color: var(--muted); }

/* REFERENCES */
/* REFERENCES */
.ref-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; height: 100%; transition: transform .2s, box-shadow .2s; }
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ref-logo-wrap {
    height: 72px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; padding: 8px 12px;
    background: #fafbfc; border-radius: 10px; border: 1px solid #f0f2f5;
}
.ref-card img { height: auto; max-height: 56px; max-width: 130px; width: auto; object-fit: contain; margin: 0; filter: grayscale(15%); opacity: .92; transition: filter .25s, opacity .25s; }
.ref-card:hover img { filter: none; opacity: 1; }
.ref-card-page { padding: 28px 20px; }
.ref-card-page .ref-logo-wrap { height: 80px; margin-bottom: 18px; }
.ref-card-page img { max-height: 64px; max-width: 150px; }
.ref-card-page .ref-desc { font-size: var(--fs-sm); color: var(--muted); margin: 10px 0 0; line-height: 1.45; }
.ref-card-page .ref-category { display: inline-block; margin-top: 4px; padding: 4px 10px; border-radius: 999px; background: var(--blue-light); color: var(--blue); font-size: var(--fs-xs); font-weight: var(--fw-medium); }
.ref-placeholder { width: 56px; height: 56px; border-radius: 12px; background: var(--blue-light); color: var(--blue); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.ref-card-page .ref-placeholder { width: 64px; height: 64px; font-size: 1.5rem; }
.ref-card h5 { font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--text); margin-top: 4px; }
.ref-card span { font-size: var(--fs-sm); color: var(--muted); }
.ref-cat-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.ref-cat-chip {
    display: inline-block; padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--border); background: #fff; color: var(--text);
    font-size: var(--fs-sm); font-weight: var(--fw-medium); transition: .2s; cursor: pointer;
}
.ref-cat-chip:hover, .ref-cat-chip.active {
    background: var(--blue); border-color: var(--blue); color: #fff;
}
.ref-card-page .ref-placeholder { width: 64px; height: 64px; font-size: 1.5rem; margin-bottom: 16px; }

/* TESTIMONIALS */
.testimonial-card-apsiyon { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; height: 100%; }
.testimonial-card-apsiyon .stars { color: #F59E0B; margin-bottom: 14px; }
.testimonial-card-apsiyon p { font-size: var(--fs-md); line-height: var(--lh-base); color: var(--text); font-style: italic; margin-bottom: 20px; font-weight: var(--fw-regular); }
.testimonial-card-apsiyon .author strong { display: block; color: var(--text); font-weight: var(--fw-semibold); font-size: var(--fs-base); }
.testimonial-card-apsiyon .author span { font-size: var(--fs-sm); line-height: var(--lh-ui); color: var(--muted); }
.testimonials-slider { position: relative; padding: 0 44px 40px; }
.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next { color: var(--blue) !important; top: 42%; }
.testimonials-slider .swiper-pagination { bottom: 0; }

/* BLOG */
.blog-card-apsiyon { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; height: 100%; transition: .2s; }
.blog-card-apsiyon:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-thumb { height: 180px; overflow: hidden; background: var(--blue-light); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb-fallback { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--blue); opacity: .4; }
.blog-body { padding: 20px; }
.blog-body span { font-size: var(--fs-sm); color: var(--muted); }
.blog-body h3 { font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--text); margin: 8px 0; line-height: var(--lh-ui); }
.blog-body p { font-size: var(--fs-sm); line-height: var(--lh-ui); color: var(--muted); margin: 0; }

/* FAQ */
.section-faq {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 45%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.section-faq::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28,181,163,.12) 0%, transparent 70%);
    pointer-events: none;
}
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 18px;
}
.faq-aside h2 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: var(--lh-tight);
}
.faq-aside > p {
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    margin-bottom: 28px;
}
.faq-help-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.faq-help-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.faq-help-card strong {
    display: block;
    font-size: var(--fs-base);
    margin-bottom: 6px;
    color: var(--text);
}
.faq-help-card p {
    font-size: var(--fs-sm);
    color: var(--muted);
    margin: 0 0 10px;
    line-height: 1.5;
}
.faq-help-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}
.faq-help-link:hover { color: var(--blue-dark); }
.faq-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow);
}
.faq-accordion { --bs-accordion-bg: transparent; }
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: background .2s, box-shadow .2s;
}
.faq-item + .faq-item { margin-top: 6px; }
.faq-item-more { display: none; }
.section-faq.is-expanded .faq-item-more { display: block; }
.faq-header { margin: 0; }
.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}
.faq-button:hover { background: rgba(28,181,163,.04); }
.faq-button:not(.collapsed) {
    background: var(--blue-light);
}
.faq-button-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.faq-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--muted);
    transition: .2s;
}
.faq-button:not(.collapsed) .faq-num {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .faq-num { display: none; }
    .faq-icon { display: flex; }
}
.faq-question {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-ui);
    color: var(--text);
}
.faq-button:not(.collapsed) .faq-question { color: var(--blue-dark); }
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    position: relative;
    transition: .2s;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--muted);
    transform: translate(-50%, -50%);
    transition: .2s;
}
.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-button:not(.collapsed) .faq-toggle {
    background: var(--blue);
    border-color: var(--blue);
}
.faq-button:not(.collapsed) .faq-toggle::before,
.faq-button:not(.collapsed) .faq-toggle::after { background: #fff; }
.faq-button:not(.collapsed) .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}
.faq-body {
    padding: 0 20px 20px 70px;
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    color: var(--muted);
}
@media (max-width: 767px) {
    .faq-body { padding-left: 20px; padding-top: 0; }
}
.faq-more-wrap {
    text-align: center;
    padding: 16px 12px 8px;
    border-top: 1px dashed var(--border);
    margin-top: 8px;
}
.faq-more-btn .faq-more-hide { display: none; }
.section-faq.is-expanded .faq-more-btn .faq-more-show { display: none; }
.section-faq.is-expanded .faq-more-btn .faq-more-hide { display: inline; }
.faq-more-count {
    color: var(--blue);
    font-weight: var(--fw-semibold);
}

/* Legacy accordion (service pages) */
.accordion-apsiyon .accordion-item { border: 1px solid var(--border); border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-apsiyon .accordion-button { font-weight: var(--fw-semibold); font-size: var(--fs-base); line-height: var(--lh-ui); color: var(--text); box-shadow: none !important; }
.accordion-apsiyon .accordion-body { font-size: var(--fs-base); line-height: var(--lh-base); color: var(--muted); }
.accordion-apsiyon .accordion-button:not(.collapsed) { background: var(--blue-light); color: var(--blue); }

/* CTA */
.cta-apsiyon { padding-bottom: 100px; }
.cta-box { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: 24px; padding: 48px; color: #fff; }
.cta-box h2 { font-size: var(--fs-2xl); font-weight: var(--fw-semibold); margin-bottom: 12px; line-height: var(--lh-tight); }
.cta-box p { font-size: var(--fs-base); line-height: var(--lh-base); opacity: .92; margin-bottom: 20px; }
.quote-form-apsiyon { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border-radius: 16px; padding: 24px; border: 1px solid rgba(255,255,255,.2); }
.quote-form-apsiyon .form-control, .quote-form-apsiyon .form-select { border: none; border-radius: 10px; padding: 12px 14px; font-size: var(--fs-base); line-height: var(--lh-base); }

/* CONTACT & BRANCHES */
.branch-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.branch-card-main {
    background: linear-gradient(180deg, #fff 0%, var(--blue-light) 100%);
    border-color: rgba(28,181,163,.2);
}
.branch-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.branch-badge-alt {
    background: var(--navy);
}
.branch-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: 8px;
}
.branch-district {
    color: var(--blue);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 16px;
}
.branch-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.branch-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    color: var(--muted);
}
.branch-info-list li:last-child { margin-bottom: 0; }
.branch-info-list i {
    color: var(--blue);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.branch-info-list a {
    color: var(--text);
    font-weight: var(--fw-semibold);
}
.branch-info-list a:hover { color: var(--blue); }
.footer-branches-title {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-branches { margin-top: 4px; }
.footer-branch {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-branch:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.footer-branch-name {
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
    white-space: nowrap;
}
.footer-branch-lines {
    margin: 0;
}
.footer-branch-lines li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
}
.footer-branch-lines i {
    color: var(--blue);
    font-size: .95rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}
.footer-branch-lines span {
    color: rgba(255,255,255,.65);
    font-size: var(--fs-sm);
    line-height: 1.5;
    min-width: 0;
}
.footer-branch-lines a {
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    white-space: nowrap;
}
.footer-branch-lines a:hover { color: var(--blue); }

/* PAGE HEADER */
.page-header { padding: 60px 0; background: linear-gradient(180deg, #E6F7F4, #fff); text-align: center; }
.page-header h1 { font-size: var(--fs-3xl); font-weight: var(--fw-semibold); color: var(--text); letter-spacing: -0.01em; }

.team-section { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); padding-top: 0; }
.team-section .section-head h2 { font-size: var(--fs-2xl); font-weight: var(--fw-semibold); margin-bottom: 10px; }
.team-section .section-head p { color: var(--muted); max-width: 42ch; margin: 0 auto; }
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 31, 28, 0.08);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15, 31, 28, 0.12); }
.team-card-photo { aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(180deg, #f3f6fb, #eef6f4); }
.team-card-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 20px; }
.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--blue);
    background: linear-gradient(180deg, #E6F7F4, #f3f6fb);
}
.team-card-body { padding: 24px 22px 28px; text-align: center; }
.team-card-body h3 { font-size: var(--fs-lg); font-weight: var(--fw-semibold); margin-bottom: 8px; color: var(--text); }
.team-card-title { font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--blue); margin-bottom: 6px; }
.team-card-dept { font-size: var(--fs-sm); color: var(--muted); margin: 0; line-height: 1.45; }
.breadcrumb-nav { margin-top: 12px; font-size: var(--fs-sm); line-height: var(--lh-ui); color: var(--muted); }
.breadcrumb-nav a { color: var(--blue); }

/* SERVICE */
.service-hero { padding: 140px 0 80px; background: linear-gradient(180deg, #E6F7F4, #fff); color: var(--navy); }
.service-hero h1 { font-size: var(--fs-3xl); font-weight: var(--fw-semibold); letter-spacing: -0.01em; }
.service-link { color: var(--blue); font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.service-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: 100%; transition: .2s; color: inherit; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); color: inherit; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 14px; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { padding: 72px 0 32px; }
.footer-brand h3 { color: #fff; font-weight: var(--fw-semibold); }
.footer-desc { margin: 16px 0; max-width: 320px; font-size: var(--fs-base); line-height: var(--lh-base); }
.site-footer h5 { color: #fff; font-weight: var(--fw-semibold); margin-bottom: 16px; font-size: var(--fs-base); }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: rgba(255,255,255,.65); display: block; padding: 5px 0; font-size: var(--fs-base); line-height: var(--lh-ui); transition: .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; font-size: var(--fs-base); line-height: var(--lh-base); }
.footer-contact > li { padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact > li > i { color: var(--blue); flex-shrink: 0; margin-top: 3px; width: 16px; }
.footer-contact > li > span { min-width: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: #fff; }
.footer-social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border-radius: 10px; color: #fff; margin-right: 8px; }
.footer-social a:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: var(--fs-sm); line-height: var(--lh-ui); }
.footer-credit { color: rgba(255,255,255,.45); display: inline-flex; align-items: center; gap: 6px; transition: .2s; }
.footer-credit:hover { color: var(--blue); }
.footer-legal a { color: rgba(255,255,255,.5); margin-left: 16px; }
.footer-legal a:hover { color: #fff; }

/* FLOATING */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; border: none; box-shadow: var(--shadow); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--blue); }
.float-btn.instagram { background: transparent; padding: 0; overflow: hidden; }
.float-btn.instagram img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.float-btn.back-top { background: var(--navy); opacity: 0; visibility: hidden; }
.float-btn.back-top.visible { opacity: 1; visibility: visible; }

/* COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 998;
    padding: 16px;
    pointer-events: none;
}
.cookie-consent:not([hidden]) {
    pointer-events: auto;
}
.cookie-consent-panel {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    color: var(--text);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 118, 110, 0.12);
    overflow: hidden;
}
.cookie-consent-main,
.cookie-consent-settings {
    padding: 24px 28px;
}
.cookie-consent-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 20px;
    align-items: start;
}
.cookie-consent-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.cookie-consent-body h3,
.cookie-settings-head h3 {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--navy);
    margin: 0 0 8px;
}
.cookie-consent-body p,
.cookie-settings-head p {
    margin: 0 0 10px;
    font-size: var(--fs-sm);
    line-height: var(--lh-ui);
    color: var(--text-muted);
}
.cookie-consent-links {
    margin-bottom: 0 !important;
}
.cookie-consent-links a {
    color: var(--blue);
    font-weight: var(--fw-medium);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-actions,
.cookie-settings-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.btn-cookie-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}
.btn-cookie-primary:hover {
    background: var(--navy);
    color: #fff;
}
.btn-cookie-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}
.btn-cookie-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.btn-cookie-ghost {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: var(--fs-sm);
}
.btn-cookie-ghost:hover {
    color: var(--blue);
}
.cookie-settings-head {
    margin-bottom: 16px;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.cookie-category:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
}
.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cookie-category-info strong {
    font-size: var(--fs-sm);
    color: var(--navy);
}
.cookie-category-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
}
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 999px;
    transition: background 0.2s ease;
}
.cookie-switch-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cookie-switch input:checked + .cookie-switch-slider {
    background: var(--blue);
}
.cookie-switch input:checked + .cookie-switch-slider::before {
    transform: translateX(20px);
}
.cookie-switch-locked .cookie-switch-slider {
    background: rgba(15, 118, 110, 0.35);
    cursor: not-allowed;
}

.content-body { line-height: var(--lh-base); font-size: var(--fs-base); }
.content-body h2, .content-body h3 { color: var(--text); font-weight: var(--fw-semibold); margin: 1.5rem 0 .75rem; }

@media (max-width: 991px) {
    .hero-slider {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(260px, 320px) auto;
        min-height: 0;
        gap: 18px;
        max-width: 520px;
        margin: 0 auto;
    }
    .hero-slider-content { order: 3; text-align: center; justify-content: center; }
    .hero-slider-content-item-title { font-size: 1.5rem; max-width: none; margin-left: auto; margin-right: auto; }
    .hero-slider-content-item-description { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-slider-content-item-buttons { justify-content: center; }
    .hero-slider-media { order: 2; min-height: 260px; }
    .hero-media-plus { width: 160px; height: 160px; }
    .hero-media-plus::before { width: 42px; height: 160px; left: 59px; }
    .hero-media-plus::after { width: 160px; height: 42px; top: 59px; }
    .hero-slider-nav {
        order: 1;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
        gap: 10px;
    }
    .hero-slider-nav-item { min-width: 240px; flex: 0 0 auto; }
    .hero-audience { grid-template-columns: 1fr; gap: 28px; }
    .audience-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 108px; }
    .audience-card-media { height: 108px; padding-left: 14px; }
    .audience-card-photo { width: 104px; height: 104px; transform: translateY(-12px); }
    .audience-card-body { min-height: 108px; padding: 14px 18px 14px 8px; }
    .hero-apsiyon { padding-top: 20px; }
    .products-slider { padding: 0; }
    .cta-box { padding: 28px; }
}

/* MACHINES */
.machine-cat-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.machine-cat-chip {
    display: inline-block; padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--border); background: #fff; color: var(--text);
    font-size: var(--fs-sm); font-weight: var(--fw-medium); transition: .2s;
}
.machine-cat-chip:hover, .machine-cat-chip.active {
    background: var(--blue); border-color: var(--blue); color: #fff;
}
.machine-card .product-cover { height: 200px; }
.machine-fleet-badge {
    display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-semibold);
    color: #fff; background: var(--blue); padding: 3px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px;
}
.machine-fleet-badge.lg { font-size: var(--fs-sm); padding: 5px 14px; margin-bottom: 0; }
.machine-brand {
    display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-semibold);
    color: var(--blue); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px;
}
.machine-brand-badge {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: var(--blue-light); color: var(--blue); font-size: var(--fs-sm); font-weight: var(--fw-semibold);
}
.machine-cover-fallback {
    height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-soft); color: var(--muted); font-size: 2.5rem;
}
.machine-cover-fallback.lg { min-height: 360px; font-size: 4rem; }
.machine-detail-image img { width: 100%; max-height: 420px; object-fit: contain; background: var(--bg-soft); padding: 16px; border-radius: var(--radius); }
.machine-features-list { list-style: none; padding: 0; margin: 0; }
.machine-features-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: var(--fs-base); }
.machine-features-list li i { margin-top: 3px; flex-shrink: 0; }

@media (max-width: 767px) {
    .cookie-consent {
        padding: 10px;
    }
    .cookie-consent-main,
    .cookie-consent-settings {
        padding: 18px 16px;
    }
    .cookie-consent-main {
        grid-template-columns: 1fr;
    }
    .cookie-consent-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .cookie-consent-actions,
    .cookie-settings-actions {
        flex-direction: column;
    }
    .cookie-consent-actions .btn,
    .cookie-settings-actions .btn {
        width: 100%;
        text-align: center;
    }
}
