@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-latin-ext-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-latin-ext-500-normal.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-latin-ext-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-latin-ext-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-navy: #0B3041;
    --color-deep-ocean: #075B70;
    --color-turquoise: #0F8B8D;
    --color-mint: #DDF4F1;
    --color-soft-blue: #EAF5F7;
    --color-background: #F8FAFA;
    --color-surface: #FFFFFF;
    --color-text: #142F3A;
    --color-text-muted: #5B7079;
    --color-border: #D9E6E9;
    --color-success: #16835D;
    --color-warning: #B66A12;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-shadow: rgba(37, 211, 102, .28);
    --shadow-soft: 0 12px 30px rgba(11, 48, 65, .08);
    --shadow-card: 0 18px 45px rgba(11, 48, 65, .10);
    --radius-card: 20px;
    --radius-soft: 16px;
    --radius-button: 12px;
    --container: 1240px;
    --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.admin-page {
    font-size: 16px;
}

img,
svg {
    display: block;
    max-width: 100%;
}

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(15, 139, 141, .42);
    outline-offset: 4px;
}

::selection {
    color: #fff;
    background: var(--color-deep-ocean);
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 200;
    transform: translateY(-140%);
    border-radius: 10px;
    background: var(--color-navy);
    color: #fff;
    padding: 10px 14px;
    font-weight: 700;
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.top-info {
    background: var(--color-navy);
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
}

.top-info__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-info__branches,
.top-info__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info a {
    font-weight: 700;
    transition: color .18s ease;
}

.top-info a:hover {
    color: #BEEDEA;
}

.top-info__actions span {
    color: rgba(255, 255, 255, .72);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(217, 230, 233, .8);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 24px rgba(11, 48, 65, .08);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 188px;
    height: 70px;
    object-fit: contain;
    object-position: center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #334F5A;
    font-size: 15px;
    font-weight: 700;
}

.main-nav > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    transition: color .18s ease, background .18s ease;
}

.main-nav > a:hover {
    color: var(--color-deep-ocean);
}

.header-call {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: var(--radius-button);
    background: var(--color-navy);
    color: #fff;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(11, 48, 65, .16);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.header-call:hover {
    transform: translateY(-1px);
    background: var(--color-deep-ocean);
    box-shadow: 0 16px 32px rgba(7, 91, 112, .20);
}

.nav-toggle,
.mobile-nav-actions {
    display: none;
}

.nav-toggle {
    min-height: 46px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    color: var(--color-navy);
    padding: 10px 12px;
    font-weight: 800;
}

.nav-toggle__bars {
    display: grid;
    gap: 4px;
}

.nav-toggle__bars i {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
}

.section {
    padding: 92px 0;
}

.section--soft {
    background: var(--color-soft-blue);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading > span,
.section-kicker,
.eyebrow {
    color: var(--color-turquoise);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.section-heading h2,
.why-content h2,
.appointment-card__intro h2,
.faq-layout h2,
.final-cta h2,
.page-hero h1,
.article-hero h1,
.admin-card h1,
.admin-card h2 {
    margin: 10px 0 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.section-heading h2,
.why-content h2,
.appointment-card__intro h2,
.faq-layout h2,
.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading p,
.why-content p,
.appointment-card__intro p,
.faq-layout > div > p,
.final-cta p {
    margin: 16px 0 0;
    color: var(--color-text-muted);
    font-size: 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(234, 245, 247, .96) 0%, rgba(248, 250, 250, .78) 52%, rgba(221, 244, 241, .72) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(15, 139, 141, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 139, 141, .12) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero__grid {
    position: relative;
    z-index: 1;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    align-items: center;
    gap: 64px;
    padding: 76px 0 90px;
}

.hero__content {
    max-width: 640px;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    border: 1px solid rgba(15, 139, 141, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    padding: 10px 16px;
    box-shadow: 0 8px 22px rgba(11, 48, 65, .06);
}

.eyebrow span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 7px rgba(22, 131, 93, .12);
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(42px, 5.3vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hero h1 strong {
    display: block;
    color: var(--color-deep-ocean);
    font-weight: 700;
}

.hero__lead {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--color-text-muted);
    font-size: 20px;
    line-height: 1.72;
}

.hero__actions,
.form-actions,
.final-cta__actions,
.branch-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__actions {
    margin-top: 32px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-button);
    padding: 12px 18px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-navy);
    color: #fff;
    box-shadow: 0 12px 26px rgba(11, 48, 65, .17);
}

.btn--primary:hover {
    background: var(--color-deep-ocean);
    box-shadow: 0 16px 32px rgba(7, 91, 112, .20);
}

.btn--whatsapp {
    border-color: var(--whatsapp-green);
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 12px 26px var(--whatsapp-shadow);
}

.btn--whatsapp:hover {
    border-color: var(--whatsapp-dark);
    background: var(--whatsapp-dark);
    box-shadow: 0 16px 32px rgba(18, 140, 126, .24);
}

.btn--whatsapp img,
.floating-whatsapp img {
    filter: none;
}

.btn--outline,
.btn--light {
    border-color: var(--color-border);
    background: #fff;
    color: var(--color-navy);
}

.btn--outline:hover,
.btn--light:hover {
    border-color: rgba(15, 139, 141, .42);
    color: var(--color-deep-ocean);
}

.hero__trust,
.check-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #38555F;
    font-weight: 700;
}

.hero__trust li,
.check-list li {
    position: relative;
    padding-left: 28px;
}

.hero__trust li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-turquoise);
    font-weight: 800;
}

.hero-visual {
    position: relative;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 24px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow-card);
}

.hero-visual img {
    width: 100%;
    height: 520px;
    border-radius: 18px;
    object-fit: cover;
}

.hero-visual figcaption {
    position: absolute;
    left: 32px;
    bottom: 32px;
    max-width: 320px;
    border: 1px solid rgba(217, 230, 233, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    padding: 18px 20px;
    color: var(--color-navy);
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(11, 48, 65, .12);
    backdrop-filter: blur(10px);
}

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 22px;
    border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
    border-right: 0;
}

.line-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 139, 141, .22);
    border-radius: 14px;
    background: var(--color-mint);
    color: var(--color-deep-ocean);
}

.line-icon::before {
    font-weight: 800;
}

.line-icon--check::before,
.line-icon--shield::before {
    content: "✓";
}

.line-icon--user::before {
    content: "◎";
}

.line-icon--tool::before {
    content: "⌁";
}

.line-icon--wave::before {
    content: "≈";
}

.line-icon--chat::before {
    content: "□";
}

.line-icon--sliders::before {
    content: "≡";
}

.line-icon--ear::before {
    content: "◖";
}

.line-icon--battery::before {
    content: "▭";
}

.line-icon--conversation::before {
    content: "◌";
}

.line-icon--volume::before {
    content: "≈";
}

.line-icon--phone::before {
    content: "☎";
}

.line-icon--repeat::before {
    content: "↻";
}

.line-icon--charge::before {
    content: "↯";
}

.line-icon--noise::before {
    content: "◍";
}

.line-icon--bluetooth::before {
    content: "⌁";
}

.line-icon--subtle::before {
    content: "◖";
}

.line-icon--document::before {
    content: "▤";
}

.trust-item h2,
.service-card h3,
.device-card h3,
.hearing-signal-card h3,
.finder-card h3,
.support-highlight-card h3,
.process-steps h3,
.branch-card h3,
.blog-card h3,
.blog-card h2,
.faq-item h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.trust-item h2 {
    font-size: 18px;
}

.trust-item p {
    margin: 4px 0 0;
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.device-card,
.hearing-signal-card,
.finder-card,
.support-highlight-card,
.branch-card,
.blog-card,
.appointment-card,
.faq-item,
.admin-section,
.admin-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-surface);
    box-shadow: 0 8px 24px rgba(11, 48, 65, .045);
}

.service-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.device-card:hover,
.hearing-signal-card:hover,
.finder-card:hover,
.support-highlight-card:hover,
.branch-card:hover,
.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 139, 141, .36);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-size: 22px;
}

.service-card p,
.device-card p,
.hearing-signal-card p,
.finder-card p,
.support-highlight-card p,
.branch-card p,
.blog-card p,
.process-steps p {
    margin: 0;
    color: var(--color-text-muted);
}

.service-card a,
.text-link,
.blog-card footer a {
    color: var(--color-deep-ocean);
    font-weight: 800;
}

.hearing-guide-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(221, 244, 241, .72), transparent 34%),
        #fff;
}

.hearing-guide {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.hearing-guide__intro {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 139, 141, .16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(15, 139, 141, .16), transparent 36%),
        linear-gradient(145deg, #fff, rgba(234, 245, 247, .92));
    padding: clamp(26px, 4vw, 40px);
    box-shadow: var(--shadow-soft);
}

.hearing-guide__intro::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border: 28px solid rgba(15, 139, 141, .09);
    border-radius: 50%;
}

.hearing-guide__intro h2,
.support-journey h2 {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.13;
    letter-spacing: -.025em;
}

.hearing-guide__intro p,
.support-journey > div:first-child p {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--color-text-muted);
}

.hearing-guide__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.medical-mini-note {
    position: relative;
    z-index: 1;
    border-left: 4px solid var(--color-turquoise);
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.55;
}

.hearing-signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hearing-signal-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hearing-signal-card h3 {
    font-size: 21px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.device-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 22px;
    padding: 22px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.device-card__visual {
    min-height: 150px;
    border: 1px solid rgba(15, 139, 141, .18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 70% 24%, rgba(15, 139, 141, .20), transparent 32%),
        linear-gradient(145deg, #fff, var(--color-mint));
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-card__visual span {
    width: 62px;
    height: 88px;
    border: 10px solid var(--color-deep-ocean);
    border-left-width: 18px;
    border-radius: 50% 50% 44% 44%;
    transform: rotate(14deg);
    opacity: .9;
}

.device-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.device-card small {
    display: block;
    margin: 12px 0;
    color: var(--color-navy);
    font-weight: 700;
}

.device-finder-section {
    background: linear-gradient(180deg, #fff 0%, var(--color-background) 100%);
}

.device-finder {
    display: grid;
    grid-template-columns: .46fr .54fr;
    gap: 34px;
    align-items: start;
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.finder-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 236px;
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.finder-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(221, 244, 241, .72);
}

.finder-card__icon,
.finder-card > span,
.finder-card h3,
.finder-card p {
    position: relative;
    z-index: 1;
}

.finder-card > span {
    color: var(--color-turquoise);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.finder-card h3 {
    font-size: 22px;
}

.process-section {
    background: #fff;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 41px;
    height: 2px;
    background: var(--color-border);
}

.process-steps article {
    position: relative;
    z-index: 1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: #fff;
    padding: 24px;
}

.process-steps span {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--color-navy);
    color: #fff;
    font-weight: 800;
}

.process-steps h3 {
    margin-bottom: 8px;
    font-size: 23px;
}

.support-journey-section {
    background:
        linear-gradient(135deg, rgba(234, 245, 247, .96), rgba(255, 255, 255, .98));
}

.support-journey {
    display: grid;
    grid-template-columns: .43fr .57fr;
    gap: 34px;
    align-items: center;
}

.support-highlight-grid {
    display: grid;
    gap: 16px;
}

.support-highlight-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 22px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.support-highlight-card .line-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
}

.support-highlight-card h3 {
    margin-bottom: 6px;
    font-size: 21px;
}

.split-layout {
    display: grid;
    grid-template-columns: .92fr 1fr;
    align-items: center;
    gap: 56px;
}

.why-image {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.why-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.why-content {
    max-width: 650px;
}

.check-list {
    display: grid;
    gap: 12px;
    color: #274651;
    font-weight: 700;
}

.appointment-section {
    background:
        linear-gradient(135deg, rgba(221, 244, 241, .86), rgba(234, 245, 247, .96));
}

.appointment-card {
    overflow: hidden;
    padding: clamp(24px, 4vw, 44px);
}

.appointment-card__intro {
    max-width: 720px;
    margin-bottom: 28px;
}

.form-alert {
    margin-bottom: 22px;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 800;
}

.form-alert--success {
    background: #E9F8F1;
    color: #0D6B48;
}

.form-alert--error {
    background: #FFF1EA;
    color: #9B4B0E;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form label,
.admin-form label {
    display: grid;
    gap: 8px;
    color: var(--color-text);
    font-weight: 800;
}

.contact-form small {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 500;
}

.form-wide {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    color: var(--color-text);
    padding: 14px 15px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(15, 139, 141, .58);
    box-shadow: 0 0 0 4px rgba(15, 139, 141, .10);
    outline: none;
}

textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.kvkk-check {
    grid-template-columns: 24px 1fr;
    align-items: flex-start;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.kvkk-check input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    accent-color: var(--color-turquoise);
}

.kvkk-check a {
    color: var(--color-deep-ocean);
    font-weight: 800;
}

.privacy-note {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 14px;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.branch-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.branch-map {
    min-height: 156px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(11, 48, 65, .86), rgba(7, 91, 112, .78)),
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,.18) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,.18) 50%, transparent 51%);
    background-size: auto, 42px 42px, 42px 42px;
}

.branch-map span {
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--color-navy);
    padding: 8px 12px;
    font-weight: 800;
}

.branch-card__body {
    padding: 24px;
}

.branch-card__body > span,
.blog-card > span {
    color: var(--color-turquoise);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.branch-card h3 {
    margin-top: 8px;
    font-size: 26px;
}

.branch-card p {
    margin: 10px 0 18px;
}

.branch-card dl,
.branch-info-card dl {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.branch-card dl div,
.branch-info-card dl div {
    display: grid;
    gap: 2px;
}

.branch-card dt,
.branch-info-card dt {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.branch-card dd,
.branch-info-card dd {
    margin: 0;
    color: var(--color-text);
    font-weight: 700;
}

.branch-card__actions {
    align-items: stretch;
    margin-bottom: 14px;
}

.branch-card__actions .btn {
    min-height: 46px;
    padding-inline: 14px;
}

.faq-layout {
    display: grid;
    grid-template-columns: .42fr .58fr;
    gap: 46px;
    align-items: flex-start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: #fff;
    color: var(--color-text);
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.faq-item button span {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-mint);
    position: relative;
}

.faq-item button span::before,
.faq-item button span::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 11px;
    height: 2px;
    background: var(--color-deep-ocean);
}

.faq-item button span::after {
    transform: rotate(90deg);
    transition: transform .18s ease;
}

.faq-item button[aria-expanded="true"] span::after {
    transform: rotate(0deg);
}

.faq-item div {
    border-top: 1px solid var(--color-border);
    padding: 16px 20px 20px;
}

.faq-item p {
    margin: 0;
    color: var(--color-text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-card h3,
.blog-card h2 {
    font-size: 23px;
}

.blog-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.final-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--color-mint), var(--color-soft-blue));
}

.final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    padding: clamp(24px, 4vw, 42px);
}

.final-cta__inner > div:first-child {
    max-width: 720px;
}

.page-hero,
.article-hero {
    padding: 82px 0 62px;
    background:
        linear-gradient(135deg, rgba(234, 245, 247, .94), rgba(255, 255, 255, .94));
    border-bottom: 1px solid var(--color-border);
}

.page-hero__inner,
.article-hero__inner {
    max-width: 880px;
}

.page-hero h1,
.article-hero h1 {
    font-size: clamp(36px, 5vw, 54px);
}

.page-hero p,
.article-hero p {
    margin: 18px 0 0;
    color: var(--color-text-muted);
    font-size: 19px;
}

.page-hero span,
.article-hero span,
.back-link {
    color: var(--color-turquoise);
    font-weight: 800;
}

.article-body {
    max-width: 820px;
    padding: 64px 0 88px;
}

.article-body section + section {
    margin-top: 40px;
}

.article-body h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.2;
}

.article-body p,
.article-body li {
    color: var(--color-text-muted);
    font-size: 18px;
}

.article-body ul {
    padding-left: 22px;
}

.medical-alert {
    margin-top: 38px;
    border: 1px solid #F1D6B8;
    border-radius: 16px;
    background: #FFF8EF;
    padding: 18px;
    color: #7A430E;
}

.medical-alert strong {
    display: block;
    margin-bottom: 6px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
}

.premium-panel,
.branch-info-card,
.support-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: #fff;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(11, 48, 65, .045);
}

.premium-panel h2,
.branch-info-card h2,
.support-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.18;
}

.site-footer {
    padding: 66px 0 28px;
    background: var(--color-navy);
    color: rgba(255, 255, 255, .78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .9fr 1fr 1fr;
    gap: 28px;
}

.footer-logo {
    width: 230px;
    height: 86px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 16px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

.site-footer nav,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
    font-style: normal;
}

.site-footer a {
    color: rgba(255, 255, 255, .86);
    font-weight: 650;
}

.site-footer a:hover {
    color: #BEEDEA;
}

.footer-contact span,
.site-footer p {
    color: rgba(255, 255, 255, .68);
}

.medical-note {
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 13px 18px;
    font-weight: 800;
    box-shadow: 0 18px 40px var(--whatsapp-shadow);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: var(--whatsapp-dark);
    box-shadow: 0 20px 42px rgba(18, 140, 126, .28);
}

.mobile-action-bar {
    display: none;
}

.admin-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 8%, rgba(221, 244, 241, .86), transparent 34%),
        linear-gradient(135deg, #F8FAFA, #EAF5F7);
}

.admin-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 42px auto;
}

.admin-card {
    padding: clamp(26px, 4vw, 44px);
}

.admin-card > img,
.admin-header img {
    width: 220px;
    height: 82px;
    object-fit: contain;
    object-position: center;
}

.admin-card > img {
    margin-bottom: 24px;
}

.admin-card h1 {
    font-size: clamp(34px, 5vw, 52px);
}

.admin-card h2 {
    font-size: 28px;
}

.admin-status {
    margin: 18px 0;
    border-radius: 14px;
    background: var(--color-mint);
    color: var(--color-navy);
    padding: 14px 16px;
    font-weight: 800;
}

.admin-status--error {
    background: #FFF1EA;
    color: #A64D0C;
}

.admin-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.admin-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
}

.admin-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    align-content: start;
    gap: 10px;
}

.admin-sidebar a,
.admin-sidebar button {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    color: var(--color-navy);
    padding: 12px 14px;
    text-align: left;
    font-weight: 800;
}

.admin-section {
    padding: 24px;
    margin-bottom: 22px;
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-form .full {
    grid-column: 1 / -1;
}

.admin-list {
    display: grid;
    gap: 16px;
}

.admin-list article {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 14px;
        font-size: 14px;
    }

    .brand img {
        width: 176px;
        height: 66px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__content {
        max-width: 820px;
    }

    .hero-visual {
        max-width: 760px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .top-info__inner {
        justify-content: center;
    }

    .top-info__branches {
        display: none;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-call {
        display: none;
    }

    .main-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border: 1px solid var(--color-border);
        border-radius: 18px;
        background: #fff;
        padding: 12px;
        box-shadow: var(--shadow-card);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a {
        min-height: 48px;
        padding: 0 12px;
    }

    .mobile-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 8px;
    }

    .trust-strip__grid,
    .service-grid,
    .device-grid,
    .hearing-guide,
    .hearing-signal-grid,
    .device-finder,
    .finder-grid,
    .support-journey,
    .branch-grid,
    .blog-grid,
    .blog-grid--wide,
    .contact-form,
    .faq-layout,
    .split-layout,
    .split-grid,
    .admin-grid,
    .admin-form {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        left: 28px;
        right: auto;
        top: 30px;
        bottom: 30px;
        width: 2px;
        height: auto;
    }

    .final-cta__inner,
    .admin-header {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 88px;
    }

    body {
        font-size: 16px;
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .top-info {
        font-size: 13px;
    }

    .top-info__actions {
        justify-content: center;
        gap: 10px;
    }

    .brand img {
        width: 154px;
        height: 58px;
    }

    .site-header__inner {
        min-height: 70px;
        gap: 12px;
    }

    .hero__grid {
        gap: 30px;
        padding: 46px 0 64px;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 42px);
    }

    .hero__lead,
    .section-heading p,
    .why-content p,
    .appointment-card__intro p,
    .faq-layout > div > p,
    .final-cta p {
        font-size: 16px;
    }

    .hero__actions .btn,
    .hearing-guide__actions .btn,
    .form-actions .btn,
    .final-cta__actions .btn,
    .branch-card__actions .btn {
        width: 100%;
    }

    .hero__trust {
        display: grid;
        align-items: start;
    }

    .hero-visual img {
        height: 340px;
    }

    .hero-visual figcaption {
        position: static;
        margin-top: 12px;
        max-width: none;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-heading h2,
    .why-content h2,
    .appointment-card__intro h2,
    .faq-layout h2,
    .final-cta h2 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .device-card {
        grid-template-columns: 1fr;
    }

    .device-card__visual {
        min-height: 128px;
    }

    .finder-card {
        min-height: auto;
    }

    .support-highlight-card {
        grid-template-columns: 1fr;
    }

    .why-image img {
        height: 320px;
    }

    .branch-card__actions {
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        border-top: 1px solid var(--color-border);
        background: rgba(255, 255, 255, .96);
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        box-shadow: 0 -10px 30px rgba(11, 48, 65, .08);
        backdrop-filter: blur(14px);
    }

    .mobile-action-bar a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 12px;
        background: var(--color-navy);
        color: #fff;
        font-weight: 800;
    }

    .mobile-action-bar a:nth-child(2) {
        background: var(--whatsapp-green);
    }

    .admin-shell {
        width: min(100% - 24px, 1160px);
        margin: 24px auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
