:root{
  --brand-50:#f0fafa;
  --brand-100:#d5f2f0;
  --brand-200:#a8e3df;
  --brand-300:#6ccdc8;
  --brand-400:#3aafa9;
  --brand-600:#0e7c7b;
  --brand-700:#0c5f5e;
  --brand-800:#0f4c4c;
  --brand-900:#0f3f40;
  --ink:#1c2b2b;
  --muted:#4b5c5c;
  --sand:#f6f4ef;
  --cta:#c45c26;
  --cta-dark:#a3481b;
  --wa:#1f7a4d;
  --white:#fff;
  --display:"Plus Jakarta Sans",system-ui,sans-serif;
  --sans:"Source Sans 3",system-ui,sans-serif;
  --wrap:1152px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--sand);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  padding-bottom:4rem;
}
@media(min-width:768px){body{padding-bottom:0}}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--display);color:var(--brand-900);line-height:1.15;margin:0}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 16px}
.notice-bar{background:#fff3cd;color:#7a5b12;padding:10px 16px;text-align:center;font-size:14px}
.notice-bar a{font-weight:700;text-decoration:underline}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:44px;padding:8px 20px;border-radius:999px;font-weight:600;font-size:14px;
  border:0;cursor:pointer;font-family:inherit;
}
.btn-cta{background:var(--cta);color:#fff}
.btn-cta:hover{background:var(--cta-dark)}
.btn-brand{background:var(--brand-700);color:#fff}
.btn-brand:hover{background:var(--brand-800)}
.btn-wa{background:var(--wa);color:#fff}
.btn-white{background:#fff;color:var(--brand-900)}
.btn-outline{background:#fff;color:var(--brand-800);border:1px solid var(--brand-700)}
.btn-ghost{background:transparent;color:var(--brand-800)}

/* Header */
.site-header{
  position:sticky;top:0;z-index:40;
  border-bottom:1px solid rgba(213,242,240,.8);
  background:rgba(246,244,239,.9);
  backdrop-filter:blur(12px);
}
.site-header .inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 16px;max-width:var(--wrap);margin:0 auto;
}
.brand{display:flex;align-items:center;gap:8px}
.brand-badge{
  width:40px;height:40px;border-radius:999px;background:var(--brand-700);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-size:13px;font-weight:700;flex:none;
}
.brand-text b{display:block;font-family:var(--display);font-size:14px;font-weight:700;color:var(--brand-900);line-height:1.2}
.brand-text span{display:block;font-size:12px;color:var(--muted);font-weight:400;letter-spacing:0;text-transform:none;margin:0}
.menu{display:none;align-items:center;gap:24px}
.menu a{font-size:14px;font-weight:500;color:rgba(28,43,43,.8)}
.menu a:hover{color:var(--brand-700)}
.header-actions{display:none;align-items:center;gap:12px}
.header-phone{font-size:14px;font-weight:600;color:var(--brand-800)}
.burger{
  display:inline-flex;min-height:44px;min-width:44px;align-items:center;justify-content:center;
  border:1px solid var(--brand-200);border-radius:8px;background:transparent;cursor:pointer;
}
.burger span{display:block;width:18px;height:2px;background:var(--ink);margin:3px 0}
@media(min-width:768px){.header-actions{display:flex}}
@media(min-width:1024px){
  .menu{display:flex}
  .burger{display:none}
}
.mobile-nav{display:none;border-top:1px solid var(--brand-100);background:#fff;padding:16px}
.mobile-nav.is-open{display:flex;flex-direction:column;gap:4px}
.mobile-nav[hidden]{display:none!important}
.mobile-nav a{min-height:44px;display:flex;align-items:center;font-weight:500;padding:8px 0}
@media(min-width:1024px){.mobile-nav{display:none!important}}

/* Hero */
.hero{
  position:relative;overflow:hidden;background:var(--brand-900);color:#fff;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(58,175,169,.35),transparent 45%),
              radial-gradient(circle at 80% 10%,rgba(196,92,38,.18),transparent 40%);
}
.hero-grid{
  position:relative;display:grid;gap:40px;padding:64px 16px;max-width:var(--wrap);margin:0 auto;
}
@media(min-width:768px){
  .hero-grid{grid-template-columns:1fr 1fr;align-items:center;padding:96px 16px}
}
.hero-kicker{font-size:14px;font-weight:600;letter-spacing:.04em;color:var(--brand-200);margin:0}
.hero h1{margin-top:12px;font-size:clamp(2rem,5vw,3rem);font-weight:800;color:#fff;line-height:1.15}
.hero-lead{margin:16px 0 0;max-width:36rem;font-size:1.125rem;color:rgba(240,250,250,.9)}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.hero-panel{
  min-height:16rem;border-radius:1.5rem;padding:32px;
  background:linear-gradient(to bottom right,rgba(58,175,169,.4),rgba(15,63,64,.4));
  ring:1px solid rgba(255,255,255,.15);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.15);
}
.hero-panel h2{color:#fff;font-size:1.25rem;font-weight:700}
.hero-panel ul{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:8px;color:var(--brand-50,#f0fafa)}
@media(min-width:640px){.hero-panel ul{grid-template-columns:1fr 1fr}}
.hero-panel .meta{margin-top:32px;font-size:14px;color:rgba(213,242,240,.8)}

/* Trust */
.trust{border-bottom:1px solid var(--brand-100);background:#fff}
.trust-grid{display:grid;gap:24px;padding:32px 16px;max-width:var(--wrap);margin:0 auto}
@media(min-width:640px){.trust-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.trust-grid{grid-template-columns:repeat(4,1fr)}}
.trust-item{display:flex;align-items:center;gap:12px;font-weight:500}
.trust-check{
  width:40px;height:40px;border-radius:999px;background:var(--brand-50);color:var(--brand-700);
  display:flex;align-items:center;justify-content:center;flex:none;font-weight:700;
}

/* Sections */
.section{padding:64px 0}
.section-white{background:#fff}
.section-head h2{font-size:1.875rem;font-weight:700}
.section-head p{margin:8px 0 0;max-width:42rem;color:var(--muted)}
.link-more{display:inline-block;margin-top:16px;font-weight:600;color:var(--brand-700)}

/* Service cards */
.svc-grid{display:grid;gap:24px;margin-top:32px}
@media(min-width:768px){.svc-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.svc-grid.cols-3{grid-template-columns:repeat(3,1fr)}}
.svc-card{
  display:flex;flex-direction:column;background:#fff;border-radius:1rem;padding:24px;
  box-shadow:0 1px 2px rgba(15,63,64,.06);outline:1px solid var(--brand-100);
  transition:transform .2s,box-shadow .2s;
}
.svc-card:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(15,63,64,.08);outline-color:#6ccdc8}
.svc-ico{
  width:48px;height:48px;border-radius:1rem;background:var(--brand-50);color:var(--brand-700);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.svc-card h3{font-size:1.125rem;font-weight:700}
.svc-card p{margin:8px 0 0;flex:1;font-size:14px;color:var(--muted);line-height:1.65}
.svc-card .go{margin-top:16px;font-size:14px;font-weight:600;color:var(--brand-700)}

/* Why / steps */
.why-grid{display:grid;gap:48px;align-items:center}
@media(min-width:768px){.why-grid{grid-template-columns:1fr 1fr}}
.why-grid p.lead{margin-top:16px;color:var(--muted);line-height:1.7}
.steps{display:grid;gap:16px;margin:0;padding:0;list-style:none}
.step{background:var(--sand);border-radius:1rem;padding:20px;outline:1px solid var(--brand-100)}
.step .n{font-size:12px;font-weight:700;letter-spacing:.06em;color:var(--brand-600)}
.step h3{font-size:1.125rem;font-weight:700;margin-top:2px}

/* Blog cards */
.post-grid{display:grid;gap:24px;margin-top:32px}
@media(min-width:768px){.post-grid{grid-template-columns:repeat(3,1fr)}}
.post-card{background:#fff;border-radius:1rem;padding:24px;outline:1px solid var(--brand-100)}
.post-card:hover{outline-color:#6ccdc8}
.post-card .date{font-size:12px;color:var(--muted)}
.post-card h3{margin-top:8px;font-size:1.125rem;font-weight:700}
.post-card p{margin-top:8px;font-size:14px;color:var(--muted)}
.post-list{list-style:none;margin:40px 0 0;padding:0;display:grid;gap:24px}
.post-list li{background:#fff;border-radius:1rem;padding:24px;outline:1px solid var(--brand-100)}
.post-list a.title{display:block;margin-top:4px;font-family:var(--display);font-size:1.25rem;font-weight:700;color:var(--brand-900)}

/* FAQ */
.faq-list{background:#fff;border-radius:1rem;outline:1px solid var(--brand-100);overflow:hidden}
.faq-item{border-bottom:1px solid var(--brand-100)}
.faq-item:last-child{border-bottom:0}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  min-height:48px;padding:16px 20px;background:none;border:0;text-align:left;cursor:pointer;
  font-family:var(--display);font-size:16px;font-weight:600;color:var(--ink);
}
.faq-q span{color:var(--brand-600);font-size:1.2rem}
.faq-a{display:none;margin:0;padding:0 20px 16px;font-size:14px;color:var(--muted);line-height:1.7}
.faq-item.open .faq-a{display:block}

/* CTA */
.cta-box{border-radius:1.5rem;background:var(--brand-800);color:#fff;text-align:center;padding:40px 24px}
.cta-box h2{color:#fff;font-size:clamp(1.4rem,3vw,1.875rem);font-weight:700}
.cta-box p{margin:12px auto 0;max-width:36rem;color:rgba(240,250,250,.85)}
.cta-box .hero-actions{justify-content:center}

/* Page */
.page{padding:56px 0}
.page-narrow{max-width:48rem}
.page h1{font-size:clamp(2rem,4vw,2.5rem);font-weight:800}
.lede{margin-top:16px;color:var(--muted);max-width:42rem}
.crumbs{font-size:14px;font-weight:600;color:var(--brand-600);margin-bottom:8px}
.crumbs a:hover{text-decoration:underline}

.prose-clinic,.article-content{margin-top:32px}
.prose-clinic h2,.article-content h2{font-family:var(--display);font-size:1.5rem;font-weight:700;margin:2rem 0 .75rem;color:var(--brand-800)}
.prose-clinic h3,.article-content h3{font-size:1.15rem;font-weight:650;margin:1.5rem 0 .5rem;color:var(--brand-700)}
.prose-clinic p,.article-content p,.prose-clinic li,.article-content li{color:var(--muted);line-height:1.75}
.prose-clinic p,.article-content p{margin:0 0 1rem}
.prose-clinic ul,.article-content ul{list-style:disc;padding-left:1.25rem;margin:0 0 1rem}
.prose-clinic ol,.article-content ol{list-style:decimal;padding-left:1.25rem;margin:0 0 1rem}
.prose-clinic strong,.article-content strong{color:var(--ink);font-weight:700}
.prose-clinic a,.article-content a{color:var(--brand-700);text-decoration:underline;text-underline-offset:3px}
.medical-note{
  margin-top:40px;border-radius:12px;border:1px solid var(--brand-100);background:rgba(240,250,250,.7);
  padding:12px 16px;font-size:14px;color:var(--muted);
}
.medical-note a{font-weight:600;color:var(--brand-800);text-decoration:underline}

/* Forms */
.contact-grid{display:grid;gap:40px}
@media(min-width:900px){.contact-grid{grid-template-columns:1.1fr .9fr;align-items:start}}
.contact-form label{display:block;margin-bottom:14px;font-size:14px;font-weight:600}
.contact-form input,.contact-form textarea,.contact-form select{
  display:block;width:100%;margin-top:6px;padding:12px 14px;border:1px solid var(--brand-100);
  border-radius:12px;background:#fff;font:inherit;font-weight:400;
}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{
  outline:2px solid rgba(12,95,94,.35);outline-offset:1px;
}
.flash-ok{padding:14px 16px;background:#e7f5ee;color:var(--brand-700);margin-bottom:20px;border-radius:12px}
.flash-err{padding:14px 16px;background:#fde8e8;color:#8a1f1f;margin-bottom:20px;border-radius:12px}
.info-card{padding:24px;border-radius:1rem;background:#fff;outline:1px solid var(--brand-100);margin-bottom:20px;line-height:1.7}
.map-frame{border-radius:1.5rem;overflow:hidden;outline:1px solid var(--brand-100);min-height:280px;aspect-ratio:4/3}

/* Footer */
.site-footer{margin-top:64px;border-top:1px solid var(--brand-100);background:var(--brand-900);color:var(--brand-50,#f0fafa)}
.foot-grid{display:grid;gap:40px;padding:48px 16px;max-width:var(--wrap);margin:0 auto}
@media(min-width:768px){.foot-grid{grid-template-columns:repeat(4,1fr)}}
.site-footer .name{font-family:var(--display);font-size:1.125rem;font-weight:700;margin:0}
.site-footer p,.site-footer li{font-size:14px;color:rgba(213,242,240,.85)}
.site-footer h4{font-family:var(--display);font-weight:600;margin:0 0 12px;color:#fff}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li{margin:8px 0}
.site-footer a:hover{text-decoration:underline}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,.1);padding:16px;text-align:center;font-size:12px;color:rgba(213,242,240,.7);
}
.foot-bottom a.legal{color:inherit}
.foot-credit{margin-top:8px;font-size:14px;color:rgba(240,250,250,.9)}
.foot-credit .heart{color:#f87171}
.foot-credit a{color:var(--cta);font-weight:600}
.foot-credit a:hover{color:var(--cta-dark);text-decoration:underline}

/* Float + sticky */
.wa-float{
  position:fixed;right:16px;bottom:80px;z-index:40;
  width:56px;height:56px;border-radius:999px;background:var(--wa);color:#fff;
  display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,.18);
}
@media(min-width:768px){.wa-float{bottom:24px}}
.sticky-call{
  position:fixed;left:0;right:0;bottom:0;z-index:40;
  display:flex;min-height:56px;align-items:center;justify-content:center;
  background:var(--brand-800);color:#fff;font-size:14px;font-weight:600;
}
@media(min-width:768px){.sticky-call{display:none}}

/* Cookie */
.cookie-bar{position:fixed;left:0;right:0;bottom:72px;z-index:50;padding:0 16px;max-width:48rem;margin:0 auto}
@media(min-width:768px){.cookie-bar{bottom:24px}}
.cookie-inner{border-radius:1rem;border:1px solid var(--brand-100);background:#fff;padding:16px;box-shadow:0 12px 40px rgba(0,0,0,.12)}
.cookie-inner p{margin:0;font-size:14px}
.cookie-inner .actions{margin-top:12px;display:flex;flex-wrap:wrap;gap:8px}

/* Tabs / pagination leftover */
.sss-tabs{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}
.sss-tab{display:inline-flex;align-items:center;min-height:40px;padding:6px 14px;border-radius:999px;background:#fff;outline:1px solid var(--brand-100);font-size:14px;font-weight:600}
.sss-tab.is-active{background:var(--brand-700);color:#fff;outline:0}
.pagination{display:flex;flex-wrap:wrap;gap:8px;margin-top:32px;align-items:center}
.pagination-btn,.pagination-num{min-height:40px;padding:6px 12px;border-radius:999px;background:#fff;outline:1px solid var(--brand-100);font-size:14px}
.pagination-num.is-active{background:var(--brand-700);color:#fff}
.pagination-btn.is-disabled{opacity:.4}

.visually-hidden,.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.btn-primary{background:var(--cta);color:#fff}
.btn-primary:hover{background:var(--cta-dark)}
.brand-logo{max-height:40px;width:auto}
.cookie-bar[hidden]{display:none!important}
.hp{position:absolute;left:-9999px;height:0;overflow:hidden}
.article-cover{margin:24px 0 0;border-radius:1rem;width:100%;height:auto}
.related-box{margin-top:40px;padding:20px;border-radius:1rem;background:#fff;outline:1px solid var(--brand-100)}
.related-box a{color:var(--brand-700);font-weight:600}
.related-box ul{list-style:none;margin:12px 0 0;padding:0}
.related-box li{margin:8px 0}
.cta-wrap{max-width:640px;margin:0 auto}
.page .prose-clinic,.page .article-content{margin-top:32px}
.contact-list{list-style:none;margin:0;padding:0}
.contact-list li{margin:10px 0}
.contact-list a{color:var(--brand-700)}
.contact-list strong{color:var(--ink)}
.kvkk-row{display:flex;gap:10px;align-items:flex-start;margin:18px 0;font-size:14px;color:var(--muted);cursor:pointer;font-weight:400}
.kvkk-row a{color:var(--brand-700);text-decoration:underline}
.mobile-nav .btn{width:100%;margin-top:8px}
.mobile-nav .wa-link{color:var(--wa);font-weight:600}
