/* =========================================================
   ROOT ART CLINIC
   Main stylesheet
========================================================= */

:root {
    --white: #ffffff;
    --bg: #f7fbff;
    --blue: #1976d2;
    --blue-dark: #125ca8;
    --blue-light: #eaf5ff;
    --navy: #12304a;
    --text: #284052;
    --muted: #718392;
    --border: #dce8f0;
    --shadow: 0 20px 60px rgba(30, 80, 120, .10);
    --container: 1180px;
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.section {
    padding: 120px 0;
}

.skip-link {
    position: fixed;
    left: 15px;
    top: 15px;
    z-index: 10000;
    transform: translateY(-150%);
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
}

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

.section-label,
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.section-label::before,
.eyebrow span {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    line-height: 1.15;
}

h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    letter-spacing: -.055em;
}

h1 strong {
    display: block;
    color: var(--blue);
}

h2 {
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 800;
    letter-spacing: -.045em;
}

h2 em {
    color: var(--blue);
    font-style: normal;
}

h3 {
    font-size: 22px;
}

p {
    color: var(--muted);
}

.large-text {
    font-size: 21px;
    line-height: 1.65;
    color: var(--navy);
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 232, 240, .7);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;


}



.logo-mark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 25px;
}

.logo-mark span {
    display: block;
    width: 5px;
    border-radius: 5px;
    background: var(--blue);
}

.logo-mark span:nth-child(1) {
    height: 12px;
}

.logo-mark span:nth-child(2) {
    height: 19px;
}

.logo-mark span:nth-child(3) {
    height: 25px;
}

.logo-text {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--navy);
}

.logo-text span {
    color: var(--blue);
}

.logo-img {
    width: 100px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #536a7a;
    transition: color .25s ease;
}

.desktop-nav a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switch {

    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    transition: .25s;
    padding: 10px 10px;
}

.language-switch:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.header-button {
    padding: 12px 19px;
    border-radius: 9px;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(25, 118, 210, .18);
    transition: .25s;
}

.header-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--navy);
    margin: 5px;
}

.mobile-nav {
    display: none;
}

/* HERO */

.hero {
    min-height: 850px;
    padding-top: 82px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(25, 118, 210, .07), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f5faff 100%);
}

.hero-background {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: 80px;
    border-radius: 50%;
    background: rgba(25, 118, 210, .05);
    filter: blur(2px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 70px 0;
}

.hero h1 {
    margin: 25px 0;
}

.hero-text {
    max-width: 650px;
    font-size: 18px;
    margin-bottom: 12px;
}

.hero-text.secondary {
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.button span {
    font-size: 20px;
}

.button-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 15px 35px rgba(25, 118, 210, .20);
}

.button-primary:hover {
    transform: translateY(-3px);
    background: var(--blue-dark);
}

.button-outline {
    border: 1px solid var(--border);
    background: white;
    color: var(--navy);
}

.button-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-trust {
    display: flex;
    gap: 40px;
    margin-top: 55px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-family: "Manrope";
    font-size: 25px;
    color: var(--navy);
}

.hero-trust span {
    color: var(--muted);
    font-size: 12px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.doctor-card {
    position: absolute;

    /* Görselin üst tarafında havada */
    bottom: 100px;
    right: 250px;

    left: auto;

    display: flex;
    align-items: center;
    gap: 13px;

    background: rgba(255, 255, 255, 0.97);
    padding: 16px 22px;

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(18, 48, 74, .18),
        0 5px 15px rgba(18, 48, 74, .08);

    z-index: 5;

    /* Hafif havada durma efekti */
    animation: doctorCardFloat 4s ease-in-out infinite;
}

@keyframes doctorCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.doctor-card strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.doctor-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.doctor-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 800;
}



/* INTRO */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 50px;
}

.intro-grid p {
    margin-bottom: 20px;
}

/* CLINIC */

.clinic-section {
    padding-bottom: 120px;
}

.clinic-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

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

.clinic-overlay {
    position: absolute;
    left: 35px;
    bottom: 35px;
    max-width: 380px;
    padding: 25px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-radius: 16px;
}

.clinic-overlay span {
    display: block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 8px;
}

.clinic-overlay strong {
    color: var(--navy);
    font-family: "Manrope";
    font-size: 22px;
    line-height: 1.3;
}

/* WHY */

.why-section {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.experience-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 80, 120, .06);
}

.experience-number {
    font-family: "Manrope";
    font-size: 70px;
    line-height: 1;
    font-weight: 800;
    color: var(--blue);
}

.experience-box strong {
    color: var(--navy);
}

.experience-box p {
    font-size: 14px;
    margin-top: 6px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.benefit-number {
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
}

.benefit-card h3 {
    margin: 35px 0 12px;
}

.benefit-card p {
    font-size: 14px;
}

/* METHODS */

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    margin: 22px 0;
}

.section-heading p {
    font-size: 17px;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 60px;
}

.method-card {
    min-height: 410px;
    padding: 35px;
    background: #f8fbfe;
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: .3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.method-card.featured {
    background: var(--blue);
    border-color: var(--blue);
}

.method-card.featured h3,
.method-card.featured p,
.method-card.featured li {
    color: white;
}

.method-card.featured .method-top {
    color: rgba(255, 255, 255, .7);
}

.method-top {
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.method-content {
    margin-top: 90px;
}

.method-content h3 {
    margin-bottom: 15px;
}

.method-content p {
    font-size: 15px;
}

.method-content ul {
    list-style: none;
    margin-top: 25px;
}

.method-content li {
    margin: 8px 0;
    font-size: 14px;
}

.method-content li::before {
    content: "✓";
    color: var(--blue);
    margin-right: 10px;
}

.featured .method-content li::before {
    color: white;
}

/* SUITABLE */

.suitable {
    background: var(--bg);
}

.suitable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.suitable-card {
    padding: 45px;
    border-radius: 25px;
}

.suitable-card.positive {
    background: white;
    border: 1px solid var(--border);
}

.suitable-card.warning {
    background: #f1f7fc;
    border: 1px solid var(--border);
}

.card-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 30px;
}

.suitable-card h2 {
    font-size: 42px;
    margin: 20px 0 30px;
}

.suitable-card ul {
    list-style: none;
}

.suitable-card li {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.suitable-card li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 800;
    margin-right: 10px;
}

.suitable-card.warning li::before {
    content: "•";
}

.suitable-card p {
    margin-top: 25px;
    font-size: 13px;
}

/* PROCESS */

.timeline {
    max-width: 850px;
    margin-top: 70px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item>span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.timeline-item h3 {
    margin-bottom: 7px;
}

.timeline-item p {
    font-size: 14px;
}

/* HEALING */

.healing {
    background: var(--bg);
}

.healing-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    padding: 70px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
}

.healing-box>div:first-child p {
    margin-top: 25px;
}

.healing-stages {
    display: grid;
    gap: 20px;
}

.healing-stages div {
    padding: 20px;
    border-left: 3px solid var(--blue);
    background: var(--bg);
}

.healing-stages strong {
    display: block;
    color: var(--navy);
}

.healing-stages span {
    font-size: 13px;
    color: var(--muted);
}

/* AFTERCARE */

.aftercare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.aftercare-grid p {
    margin-bottom: 18px;
}

/* FAQ */

.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 900px;
    margin-top: 55px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    background: transparent;
    border: 0;
    color: var(--navy);
    text-align: left;
    font-size: 16px;
    font-weight: 700;
}

.faq-question span {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 25px;
    transition: transform .3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 50px 25px 0;
    font-size: 14px;
}

/* CTA */

.cta {
    padding: 100px 0;
    background: var(--blue);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta h2 {
    color: white;
    margin-top: 20px;
}

.cta h2 em {
    color: #d9efff;
}

.cta p {
    color: rgba(255, 255, 255, .75);
    margin-top: 15px;
}

.cta .section-label {
    color: #d9efff;
}

.cta .section-label::before {
    background: #d9efff;
}

.button-white {
    background: white;
    color: var(--blue);
    min-width: 220px;
    width: 50%;
}

.button-white:hover {
    transform: translateY(-3px);
}


/* /////////////////////////// */

.cta-form {
    width: 100%;
    max-width: 560px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    box-shadow:
        0 25px 60px rgba(18, 48, 74, .18),
        0 8px 25px rgba(18, 48, 74, .10);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.form-group2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #dce8f0;
    background: #f8fbfd;
    color: var(--navy);

    border-radius: 11px;

    padding: 13px 14px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.form-group input {
    height: 48px;
}

.form-group textarea {
    min-height: 48px;
    height: 48px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #91a0ac;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: white;

    box-shadow:
        0 0 0 4px rgba(25, 118, 210, .08);
}

/* Gönder butonu */

.cta-submit {
    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 12px;

    background: var(--blue);
    color: white;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.cta-submit span {
    font-size: 18px;
    transition: transform .25s ease;
}

.cta-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(25, 118, 210, .25);
}

.cta-submit:hover span {
    transform: translateX(4px);
}


/* .logoİmg {
    background: url("/favicon/root_art_clinic_logo2.png");
    width: 800px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* FOOTER */

.footer {
    background: #0d2538;
    padding-top: 65px;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer .logo-text {
    color: white;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 20px;
    color: #91a6b5;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: #b5c6d1;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #7890a1;
    font-size: 12px;
}

/* MOUSE */

.mouse-glow {
    position: fixed;
    left: 0;
    top: 0;

    width: 180px;
    height: 180px;

    pointer-events: none;
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(25, 118, 210, 0.12) 0%,
            rgba(25, 118, 210, 0.06) 35%,
            transparent 70%);

    margin-left: -90px;
    margin-top: -90px;

    z-index: 9999;

    opacity: 0;

    transition: opacity 0.3s ease;

    will-change: transform;
}

/* ==========================================
   COOKIE BİLDİRİMİ
========================================== */

.cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(430px, calc(100% - 48px));

    padding: 18px 20px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(18, 48, 74, .16);

    z-index: 9997;

    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);

    transition:
        opacity .4s ease,
        transform .4s ease,
        visibility .4s ease;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-right: 20px;
}

.cookie-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;
    background: var(--blue-light);
    font-size: 18px;
}

.cookie-copy {
    flex: 1;
}

.cookie-copy h2 {
    margin: 0 0 5px;
    font-size: 16px;
    letter-spacing: -.02em;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cookie-link {
    display: inline-block;
    margin-top: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.cookie-button {
    min-height: 36px;
    padding: 0 13px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #f4f8fb;
    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    transition: .2s ease;
}

.cookie-button:hover {
    border-color: var(--blue);
}

.cookie-accept {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.cookie-close {
    position: absolute;
    top: 8px;
    right: 9px;

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--muted);

    font-size: 20px;
    line-height: 1;
}

.cookie-close:hover {
    background: #f2f6f9;
    color: var(--navy);
}


/* ==========================================
   YUKARI ÇIK BUTONU
========================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: rgba(255, 255, 255, .96);
    color: var(--blue);

    font-size: 22px;
    font-weight: 700;

    box-shadow: 0 10px 30px rgba(18, 48, 74, .12);

    cursor: pointer;

    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .2s ease,
        color .2s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-3px);
}


/* ==========================================
   COOKIE MODAL
========================================== */

.cookie-modal[hidden] {
    display: none;
}


/* ==========================================
   MOBİL COOKIE
========================================== */

@media (max-width: 600px) {

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 16px;
        border-radius: 14px;
    }

    .cookie-content {
        gap: 9px;
        padding-right: 18px;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-copy h2 {
        font-size: 15px;
    }

    .cookie-copy p {
        font-size: 11px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-accept {
        grid-column: 1 / -1;
        order: -1;
    }

    .back-to-top {
        right: 40px;
        bottom: 30px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        padding: 20px 24px 25px;
        background: white;
        border-top: 1px solid var(--border);
        flex-direction: column;
        gap: 18px;
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        color: var(--navy);
        font-weight: 600;
    }

    .hero-grid,
    .intro-grid,
    .why-grid,
    .aftercare-grid,
    .healing-box {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-image-wrapper img {
        height: 520px;
    }

    .doctor-card {
        left: 20px;
    }

    .benefits-grid,
    .methods-grid,
    .suitable-grid {
        grid-template-columns: 1fr;
    }

    .healing-box {
        gap: 50px;
        padding: 45px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;
    }

    .hero-image-wrapper img {
        height: 430px;
    }

    .clinic-image img {
        height: 420px;
    }

    .clinic-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .experience-box {
        padding: 25px;
    }

    .experience-number {
        font-size: 50px;
    }

    .suitable-card {
        padding: 30px;
    }

    .suitable-card h2 {
        font-size: 35px;
    }

    .healing-box {
        padding: 30px 22px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 17px;
    }

    .cookie-content {
        gap: 10px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-accept {
        grid-column: 1 / -1;
        order: -1;
    }

    .cookie-modal-box {
        padding: 28px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .mouse-glow {
        display: none;
    }
}


/* =========================================================
   ROOT ART CLINIC - FINAL MOBILE / ANIMATION FIX
   ========================================================= */


/* =========================================================
   YATAY TAŞMAYI ENGELLE
   ========================================================= */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

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

    max-width: 100%;
}


/* Grid elemanlarının içeriği
   ekranı zorlayıp genişletmesini engelle */

.hero-grid>*,
.intro-grid>*,
.why-grid>*,
.benefits-grid>*,
.methods-grid>*,
.suitable-grid>*,
.healing-box>*,
.aftercare-grid>*,
.cta-inner>*,
.footer-inner>* {
    min-width: 0;
    max-width: 100%;
}


/* Uzun kelimeler / metinler taşmasın */

h1,
h2,
h3,
p,
a,
li,
button {
    overflow-wrap: anywhere;
}


/* =========================================================
   SSS - GARANTİLİ AÇILMA
   ========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height .4s cubic-bezier(.22, .61, .36, 1);
}

.faq-answer p {
    padding:
        0 50px 25px 0;

    font-size: 14px;
}

.faq-item.active .faq-answer {
    /* JS gerçek yüksekliği verir */
    overflow: hidden;
}


/* =========================================================
   MOBİL MENÜ
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    background: transparent;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    position: relative;
    z-index: 1002;
}

.mobile-menu-button span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 0;

    border-radius: 10px;

    background: var(--navy);

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* Hamburger → X */

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px) rotate(-45deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .desktop-nav,
    .header-actions {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .mobile-nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;
        max-width: 100%;

        display: flex;

        flex-direction: column;

        padding:
            18px 24px 24px;

        gap: 0;

        background:
            rgba(255, 255, 255, .98);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 18px 35px rgba(18, 48, 74, .08);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-8px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 1001;
    }


    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0);
    }


    .mobile-nav a {
        width: 100%;

        padding:
            13px 0;

        border-bottom:
            1px solid #edf2f6;

        color: var(--navy);

        font-weight: 600;
    }


    .mobile-nav a:last-child {
        border-bottom: 0;
    }


    /* Mobil gridleri tek sütun */

    .hero-grid,
    .intro-grid,
    .why-grid,
    .aftercare-grid,
    .healing-box {
        grid-template-columns: 1fr;
    }


    .benefits-grid,
    .methods-grid,
    .suitable-grid {
        grid-template-columns: 1fr;
    }


    /* Doktor kartı kesinlikle ekran dışına çıkmasın */

    .doctor-card {
        left: 15px;
        right: 15px;

        width: auto;
        max-width:
            calc(100% - 30px);
    }


    /* Büyük healing kutusu */

    .healing-box {
        gap: 45px;
        padding: 45px;
    }


    /* CTA */

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 32px);

        max-width: 100%;
    }


    .section {
        padding:
            80px 0;
    }


    h1 {
        font-size: 45px;

        max-width: 100%;
    }


    h2 {
        font-size: 38px;

        max-width: 100%;
    }


    /* Butonlar ekranı aşmasın */

    .hero-actions {
        width: 100%;

        flex-direction: column;
    }


    .button {
        width: 100%;
        max-width: 100%;
    }


    /* Hero */

    .hero {
        padding-top: 100px;
    }


    .hero-content {
        padding:
            30px 0;
    }


    .hero-text {
        max-width: 100%;
    }


    /* Trust alanı */

    .hero-trust {
        width: 100%;

        display: flex;

        flex-wrap: wrap;

        gap: 20px;
    }


    .hero-trust div {
        min-width: 70px;
    }


    /* Doktor resmi */

    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
    }


    .hero-image-wrapper img {
        width: 100%;
        max-width: 100%;

        height: 430px;
    }


    /* Doktor bilgi kartı */

    .doctor-card {
        left: 12px;
        right: 12px;

        width: auto;
        max-width:
            calc(100% - 24px);

        padding:
            13px 15px;

        width: 250px;
    }


    /* Klinik */

    .clinic-image {
        width: 100%;
        max-width: 100%;
    }


    .clinic-image img {
        width: 100%;
        max-width: 100%;

        height: 420px;
    }


    .clinic-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;

        max-width:
            calc(100% - 24px);

        padding: 18px;
    }


    /* Kartlar */

    .benefit-card,
    .method-card,
    .suitable-card,
    .experience-box {
        width: 100%;
        max-width: 100%;
    }


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


    .method-content {
        margin-top: 55px;
    }


    .suitable-card {
        padding: 30px;
    }


    /* Healing */

    .healing-box {
        padding:
            30px 22px;
    }


    /* FAQ */

    .faq-list {
        width: 100%;
        max-width: 100%;
    }


    .faq-question {
        gap: 12px;

        padding:
            20px 0;

        font-size: 15px;
    }


    .faq-answer p {
        padding:
            0 0 20px 0;

        font-size: 14px;
    }


    /* Footer */

    .footer-inner {
        flex-direction: column;

        width: 100%;
    }


    .footer-links {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   HAFİF SCROLL ANİMASYONU
   ========================================================= */

.scroll-reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22,
            .61,
            .36,
            1);

    will-change:
        opacity,
        transform;
}


.scroll-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   KART HOVER
   ========================================================= */

.benefit-card,
.method-card,
.suitable-card,
.experience-box {
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.benefit-card:hover,
.method-card:hover,
.experience-box:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 18px 45px rgba(30, 80, 120, .10);
}


.suitable-card:hover {
    transform:
        translateY(-4px);
}


/* =========================================================
   GÖRSEL HAFİF ZOOM
   ========================================================= */

.clinic-image img,
.hero-image-wrapper img {
    transition:
        transform .7s cubic-bezier(.22,
            .61,
            .36,
            1);
}


.clinic-image:hover img {
    transform:
        scale(1.02);
}


.hero-image-wrapper:hover img {
    transform:
        scale(1.01);
}


/* =========================================================
   MOBİLDE ANİMASYONLARI HAFİFLET
   ========================================================= */

@media (max-width: 600px) {

    .scroll-reveal {
        transform:
            translateY(15px);

        transition-duration:
            .5s;
    }


    .benefit-card:hover,
    .method-card:hover,
    .suitable-card:hover,
    .experience-box:hover {
        transform:
            translateY(-2px);
    }


    .clinic-image:hover img,
    .hero-image-wrapper:hover img {
        transform:
            none;
    }
}


/* =========================================================
   HAREKET AZALTMA
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .scroll-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .clinic-image img,
    .hero-image-wrapper img {
        transition: none;
    }
}



/* =========================================================
   COOKIE MODAL - PREMIUM
   ========================================================= */

.cookie-modal[hidden],
.cookie-banner[hidden] {
    display: none !important;
}

/* Arka plan */
.cookie-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(8, 27, 45, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 100000;
}

/* Modal kutusu */
.cookie-modal-box {
    position: relative;

    width: min(100%, 520px);
    max-height: min(90vh, 680px);

    overflow-y: auto;

    background: #ffffff;

    border: 1px solid rgba(25, 118, 210, 0.10);
    border-radius: 20px;

    padding: 36px;

    box-shadow:
        0 30px 80px rgba(8, 27, 45, 0.25),
        0 8px 30px rgba(8, 27, 45, 0.10);

    animation: cookieModalIn .28s ease-out;
}

@keyframes cookieModalIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Kapat butonu */
.cookie-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f3f7fb;
    color: #18344d;

    font-family: inherit;
    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.cookie-modal-close:hover {
    background: #e7f1fa;
    color: #1976d2;
    transform: rotate(90deg);
}


/* Başlık */
.cookie-modal-box h2 {
    margin: 0 45px 10px 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;

    font-weight: 800;

    color: #15344d;
}


/* Açıklama */
.cookie-modal-box>p {
    margin: 0 0 28px;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    line-height: 1.7;

    color: #66788a;
}


/* Cookie seçenekleri */
.cookie-option {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    width: 100%;

    padding: 18px 0;

    border-top: 1px solid #e8eef3;

    cursor: pointer;
}

.cookie-option:last-of-type {
    border-bottom: 1px solid #e8eef3;
}


/* Sol taraf */
.cookie-option>span {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;
}

.cookie-option strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;

    color: #173b58;
}

.cookie-option small {
    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    line-height: 1.5;

    color: #718294;
}


/* Checkbox */
.cookie-option input[type="checkbox"] {
    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    margin: 0;

    accent-color: #1976d2;

    cursor: pointer;
}


/* Kaydet butonu */
.cookie-save {
    width: 100%;

    margin-top: 26px;

    min-height: 50px;

    border-radius: 10px;

    font-weight: 700;
}


/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
    position: fixed;

    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 99999;

    width: auto;
    max-width: 1100px;

    margin: 0 auto;

    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(25, 118, 210, 0.12);
    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(8, 27, 45, 0.18),
        0 5px 20px rgba(8, 27, 45, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation: cookieBannerIn .35s ease-out;
}

@keyframes cookieBannerIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.cookie-content {
    display: flex;
    align-items: flex-start;

    gap: 16px;
}

.cookie-icon {
    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef6fd;

    font-size: 21px;
}

.cookie-copy {
    min-width: 0;
}

.cookie-copy h2 {
    margin: 0 0 5px;

    font-family: "Manrope", sans-serif;

    font-size: 17px;
    font-weight: 800;

    color: #173b58;
}

.cookie-copy p {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #687b8d;
}

.cookie-link {
    display: inline-block;

    margin-top: 7px;

    color: #1976d2;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}


/* Banner butonları */
.cookie-actions {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 10px;

    margin-top: 18px;
}

.cookie-button {
    min-height: 42px;

    padding: 0 18px;

    border-radius: 9px;

    border: 1px solid #dce6ee;

    background: #ffffff;

    color: #31516a;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

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

.cookie-settings:hover {
    background: #f3f8fc;
    border-color: #c9dceb;
}

.cookie-reject:hover {
    background: #f8fafc;
}

.cookie-accept {
    border-color: #1976d2;

    background: #1976d2;

    color: #ffffff;
}

.cookie-accept:hover {
    background: #1565b8;
}


/* =========================================================
   COOKIE - MOBİL
   ========================================================= */

@media (max-width: 600px) {

    .cookie-modal {
        padding: 16px;
    }

    .cookie-modal-box {
        width: 100%;

        max-height: 90vh;

        padding: 28px 22px;

        border-radius: 18px;
    }

    .cookie-modal-box h2 {
        font-size: 25px;
    }

    .cookie-option {
        align-items: flex-start;
    }

    .cookie-option input[type="checkbox"] {
        margin-top: 2px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 18px;
    }

    .cookie-content {
        gap: 12px;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .cookie-button {
        width: 100%;
        padding: 0 10px;
    }

    .cookie-accept {
        grid-column: 1 / -1;
    }

}

/* =========================================================


/* =========================================================
   ROOT ART CLINIC — EDITORIAL IMAGE SYSTEM
   10 gerçek görseli sayfaya dengeli şekilde dağıtır.
   Görsel klasörü:
   images/sac-ekimi/
   ========================================================= */

/* Genel görsel dili */
.hero-image-wrapper,
.clinic-image,
.content-image,
.method-image,
.process-image-card,
.healing-image {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #eaf5ff;
}

.hero-image-wrapper img,
.clinic-image img,
.content-image img,
.method-image img,
.process-image-card img,
.healing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

/* Görsel üstünde temiz bir kontrast katmanı */
.hero-image-wrapper::after,
.clinic-image::after,
.content-image::after,
.method-image::after,
.process-image-card::after,
.healing-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(18, 48, 74, 0) 55%,
            rgba(18, 48, 74, .16) 100%);
}

.hero-image-wrapper:hover img,
.clinic-image:hover img,
.content-image:hover img,
.method-card:hover .method-image img,
.process-image-card:hover img,
.healing-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   01 — HERO
   Result-Portrait.webp
   Büyük, güçlü giriş görseli
   ========================================================= */

.hero-image-wrapper {
    border-radius: 30px;
    padding: 0;
    box-shadow:
        0 30px 80px rgba(18, 48, 74, .14),
        0 8px 25px rgba(25, 118, 210, .08);
}

.hero-image-wrapper>img {
    height: 620px;
    object-position: center top;
}

.hero-image-wrapper::before {
    content: "ROOTARTCLINIC";
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(12px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

/* Doktor bilgi kartı mevcut tasarımın üzerinde kalır */
.doctor-card {
    z-index: 5;
}


/* =========================================================
   02 — INTRO
   Analysis.webp
   Metnin altında geniş editorial fotoğraf
   ========================================================= */

.intro-image {
    height: 430px;
    margin-top: 65px;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 24px 65px rgba(18, 48, 74, .10);
}

.intro-image img {
    object-position: center center;
}

.intro-image::before {
    content: "PERSÖNLICHE ANALYSE / KİŞİSEL ANALİZ";
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(10px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}


/* =========================================================
   03 — CLINIC / LIFESTYLE
   Dynamic-Lifestyle.webp
   ========================================================= */

.clinic-image {
    border-radius: 30px;
    box-shadow: 0 28px 75px rgba(18, 48, 74, .12);
}

.clinic-image img {
    height: 560px;
    object-position: center;
}

.clinic-image::before {
    content: "NACH DER BEHANDLUNG / TEDAVİ SONRASI";
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(18, 48, 74, .76);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}


/* =========================================================
   04 — WHY US
   Gür-sac.webp
   ========================================================= */

.why-image {
    height: 440px;
    margin-top: 60px;
    border-radius: 28px;
    border: 0;
    box-shadow: 0 24px 65px rgba(18, 48, 74, .10);
}

.why-image img {
    object-position: center;
}

.why-image::before {
    content: "HAARSTRUKTUR & SPENDERBEREICH / SAÇ YAPISI VE SAÇ KÖKÜ BÖLGESİ";
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(10px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* =========================================================
   05 — FUE
   Hair-Texture.webp
   ========================================================= */

.methods-grid {
    align-items: stretch;
}

.method-card {
    padding: 0 35px 35px;
    min-height: 0;
    border-radius: 24px;
    overflow: hidden;
}

.method-card .method-top {
    padding-top: 35px;
}

.method-image {
    width: calc(100% + 70px);
    height: 275px;
    margin: 28px -35px 0;
    border: 0;
    border-radius: 0;
}

.method-image img {
    object-position: center;
}

.method-content {
    margin-top: 30px;
}

.method-card.featured .method-image::after {
    background: linear-gradient(180deg,
            rgba(18, 48, 74, 0) 45%,
            rgba(0, 30, 70, .22) 100%);
}


/* =========================================================
   06 — DHI
   The-Procedure.webp
   Aynı sistem, farklı görsel ağırlığı
   ========================================================= */

.method-card:nth-child(2) .method-image {
    height: 275px;
}

.method-card:nth-child(2) .method-image img {
    object-position: center;
}


/* =========================================================
   07 — SUITABLE / BEFORE-AFTER
   Before-After.webp
   ========================================================= */

.suitable-image {
    height: 420px;
    margin-top: 35px;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 24px 65px rgba(18, 48, 74, .10);
}

.suitable-image img {
    object-position: center;
}

.suitable-image::before {
    content: "VORHER & NACHHER / ÖNCE & SONRA";
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(10px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}


/* =========================================================
   08 + 09 — TREATMENT PROCESS
   Preparation-Tools.webp
   The-Procedure.webp
   İki görseli birbirinden ayır
   ========================================================= */

.process-images {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 22px;
    margin-top: 65px;
}

.process-images .content-image {
    height: 350px;
    border-radius: 24px;
    border: 0;
    box-shadow: 0 20px 55px rgba(18, 48, 74, .09);
}

/* İkinci görsel daha dikey/odaklı */
.process-images .content-image:nth-child(2) {
    height: 350px;
}

.process-images .content-image:nth-child(1)::before {
    content: "VORBEREITUNG / HAZIRLIK";
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.process-images .content-image:nth-child(2)::before {
    content: "DER EINGRIFF / MÜDAHALE";
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* =========================================================
   10 — HEALING
   Recovery-View.webp
   ========================================================= */

.healing-box {
    grid-template-columns: .70fr 1fr .82fr;
    gap: 40px;
    align-items: stretch;
}

.healing-image {
    min-height: 390px;
    height: auto;
    border-radius: 22px;
    border: 0;
    box-shadow: 0 20px 55px rgba(18, 48, 74, .10);
}

.healing-image img {
    min-height: 390px;
    height: 100%;
    object-position: center;
}

.healing-image::before {
    content: "HEILUNGSPHASE / İYİLEŞME DÖNEMİ";
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(8px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* =========================================================
   AFTERCARE — görselden sonra temiz nefes alanı
   ========================================================= */

.aftercare {
    position: relative;
}

.aftercare-grid {
    align-items: center;
}


/* =========================================================
   GÖRSELLER ARASI RİTİM
   Sayfa bir fotoğraf galerisi gibi görünmesin.
   ========================================================= */

.intro-image,
.why-image,
.suitable-image {
    transform: translateZ(0);
}

.content-image,
.clinic-image,
.hero-image-wrapper {
    will-change: transform;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-grid {
        gap: 45px;
    }

    .hero-image-wrapper>img {
        height: 560px;
    }

    .intro-image,
    .why-image {
        height: 380px;
    }

    .clinic-image img {
        height: 480px;
    }

    .healing-box {
        grid-template-columns: .75fr 1fr;
        gap: 30px;
    }

    .healing-box>.healing-image {
        grid-column: 1 / -1;
        height: 360px;
        min-height: 360px;
    }

    .healing-box>.healing-image img {
        min-height: 360px;
    }
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 900px) {

    .hero-image-wrapper>img {
        height: 520px;
    }

    .intro-image,
    .why-image,
    .suitable-image {
        height: 340px;
    }

    .clinic-image img {
        height: 450px;
    }

    .methods-grid {
        gap: 20px;
    }

    .method-image,
    .method-card:nth-child(2) .method-image {
        height: 250px;
    }

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

    .process-images .content-image,
    .process-images .content-image:nth-child(2) {
        height: 280px;
    }

    .healing-box {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .healing-box>div:first-child {
        grid-column: auto;
    }

    .healing-box>.healing-image {
        grid-column: auto;
        height: 330px;
        min-height: 330px;
    }

    .healing-box>.healing-image img {
        min-height: 330px;
    }
}


@media (max-width: 600px) {

    .hero-image-wrapper {
        border-radius: 20px;
    }

    .hero-image-wrapper>img {
        height: 430px;
    }

    .hero-image-wrapper::before {
        top: 14px;
        right: 14px;
        font-size: 8px;
    }

    .intro-image,
    .why-image,
    .suitable-image {
        height: 275px;
        margin-top: 35px;
        border-radius: 19px;
    }

    .clinic-image {
        border-radius: 20px;
    }

    .clinic-image img {
        height: 330px;
    }

    .clinic-image::before {
        left: 14px;
        top: 14px;
        font-size: 8px;
    }

    .method-card {
        padding: 0 28px 28px;
        border-radius: 20px;
    }

    .method-card .method-top {
        padding-top: 28px;
    }

    .method-image,
    .method-card:nth-child(2) .method-image {
        width: calc(100% + 56px);
        height: 210px;
        margin-left: -28px;
        margin-right: -28px;
        margin-top: 22px;
    }

    .method-content {
        margin-top: 24px;
    }

    .process-images {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 42px;
    }

    .process-images .content-image,
    .process-images .content-image:nth-child(2) {
        height: 245px;
    }

    .healing-box {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .healing-box>.healing-image,
    .healing-box>.healing-image img {
        height: 275px;
        min-height: 275px;
    }

    .intro-image::before,
    .why-image::before,
    .suitable-image::before,
    .healing-image::before {
        left: 14px;
        bottom: 14px;
        top: auto;
        font-size: 8px;
        padding: 8px 10px;
    }

    .suitable-image::before {
        top: 14px;
        bottom: auto;
    }

    .process-images .content-image:nth-child(1)::before,
    .process-images .content-image:nth-child(2)::before {
        left: 14px;
        bottom: 14px;
        font-size: 8px;
    }
}


/* =========================================================
   HAREKET AZALTMA
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image-wrapper img,
    .clinic-image img,
    .content-image img,
    .method-image img,
    .process-image-card img,
    .healing-image img {
        transition: none;
    }
}