/* ==========================================================================
   Denttaş Diş Kliniği — Kurumsal Tema
   Renk paleti: Turkuaz (marka) + Mor (aksan) · Tipografi: Inter
   ========================================================================== */

:root {
  /* Marka renkleri */
  --teal:        #12b4c5;
  --teal-600:    #0e97a6;
  --teal-700:    #0b7d8a;
  --teal-050:    #e7f7f9;
  --violet:      #7a2fb8;
  --violet-600:  #672a9c;
  --violet-050:  #f2ebfa;

  /* Nötr */
  --ink:     #142430;
  --ink-2:   #33454f;
  --muted:   #5f7180;
  --line:    #e3ecf0;
  --line-2:  #eef4f6;
  --bg:      #ffffff;
  --bg-soft: #f5fafb;
  --bg-soft-2:#eef6f8;
  --white:   #ffffff;

  /* Sistem */
  --radius:   16px;
  --radius-sm:10px;
  --radius-lg:26px;
  --shadow-sm: 0 1px 2px rgba(20,36,48,.06), 0 1px 3px rgba(20,36,48,.05);
  --shadow:    0 10px 30px -12px rgba(16,80,90,.22);
  --shadow-lg: 0 26px 60px -22px rgba(16,80,90,.32);
  --ring: 0 0 0 4px rgba(18,180,197,.18);

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --grad: linear-gradient(120deg, var(--teal) 0%, #26a6c0 45%, var(--violet) 100%);
  --grad-soft: linear-gradient(120deg, var(--teal-050), var(--violet-050));

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.16; font-weight: 700; letter-spacing: -.022em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--ink-2); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
::selection { background: var(--teal); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--grad-soft); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-050);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow--violet { color: var(--violet-600); background: var(--violet-050); }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; font-size: 1.08rem; color: var(--muted); }
.section-head h2 { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .98rem; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: 0 12px 24px -12px rgba(18,180,197,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(18,180,197,.75); }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 14px 26px -12px rgba(89,58,150,.55); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -12px rgba(89,58,150,.6); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-700); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--teal-700); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--teal-700); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #cfe0e6; font-size: .86rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; }
.topbar a { color: #dce8ec; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__meta { display: flex; align-items: center; gap: 22px; }
.topbar__meta span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__meta svg { width: 15px; height: 15px; color: var(--teal); }
.topbar__social { display: flex; align-items: center; gap: 14px; }
.topbar__social a:hover { color: var(--teal); }
.topbar__social svg { width: 16px; height: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
/* Blur lives on a pseudo-element so the header itself does NOT become a
   containing block for the position:fixed mobile menu. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}
.site-header.scrolled { box-shadow: 0 8px 24px -18px rgba(16,80,90,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 13px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--ink-2);
  white-space: nowrap; transition: color .2s, background .2s;
}
.nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--teal-700); background: var(--teal-050); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav-phone svg { width: 20px; height: 20px; color: var(--teal); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---- Dropdown (Tedavilerimiz) ---- */
.has-dropdown { position: relative; }
.nav-menu > li.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.dd-caret { width: 15px; height: 15px; transition: transform .25s ease; opacity: .8; }
.has-dropdown:hover .dd-caret, .has-dropdown:focus-within .dd-caret { transform: rotate(180deg); }
.dd-toggle { display: none; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -6px; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 8px; display: grid; gap: 2px; z-index: 80;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; font-size: .93rem; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.dropdown a:hover { background: var(--teal-050); color: var(--teal-700); }
.dropdown a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); flex: none; }
.dropdown .dropdown__all a { color: var(--teal-700); font-weight: 700; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; margin-top: 4px; }
.dropdown .dropdown__all a:hover { background: var(--violet-050); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 500px at 82% -8%, var(--teal-050), transparent 60%),
    radial-gradient(760px 500px at 8% 108%, var(--violet-050), transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero__title { margin: 20px 0 18px; }
.hero__title .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.14rem; color: var(--ink-2); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust .avatars { display: flex; }
.hero__trust .avatars span {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -12px;
  background: var(--grad-soft); display: grid; place-items: center; font-weight: 800; color: var(--violet-600); font-size: .85rem;
  box-shadow: var(--shadow-sm);
}
.hero__trust .avatars span:first-child { margin-left: 0; }
.stars { color: #f5a623; letter-spacing: 2px; }
.hero__trust small { display: block; color: var(--muted); }

.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4 / 3.4; }
.hero__media::after {
  content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; z-index: -1;
  background: var(--grad); border-radius: var(--radius-lg); opacity: .12;
}
.hero__badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero__badge .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.hero__badge .ico svg { width: 24px; height: 24px; }
.hero__badge b { display: block; font-size: 1.05rem; }
.hero__badge span { font-size: .84rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-block: 30px; }
.trust-item { display: flex; align-items: center; gap: 14px; color: #eaf2f4; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.1); padding-left: 24px; }
.trust-item .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(18,180,197,.16); color: var(--teal); display: grid; place-items: center; flex: none; }
.trust-item .ico svg { width: 24px; height: 24px; }
.trust-item b { font-size: 1.28rem; display: block; letter-spacing: -.02em; }
.trust-item span { font-size: .86rem; color: #a9c2c9; }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ico {
  width: 58px; height: 58px; border-radius: 15px; background: var(--teal-050); color: var(--teal-700);
  display: grid; place-items: center; margin-bottom: 20px; transition: background .3s, color .3s;
}
.svc-card:hover .ico { background: var(--grad); color: #fff; }
.svc-card .ico svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.svc-card p { font-size: .96rem; color: var(--muted); margin-bottom: 16px; }

/* ==========================================================================
   Split / About
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.split__media .stat-chip {
  position: absolute; right: -14px; top: 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px; text-align: center;
}
.split__media .stat-chip b { font-size: 1.7rem; color: var(--teal-700); display: block; letter-spacing: -.03em; }
.split__media .stat-chip span { font-size: .8rem; color: var(--muted); }
.feature-list { margin-top: 26px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list b { display: block; color: var(--ink); }
.feature-list p { font-size: .95rem; color: var(--muted); margin: 0; }

.doctor-card { display: flex; gap: 16px; align-items: center; margin-top: 28px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.doctor-card .sig { font-weight: 800; color: var(--violet-600); }
.doctor-card small { color: var(--muted); }

/* ==========================================================================
   Gallery (önce / sonra)
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ba-card {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); background: #000; aspect-ratio: 1 / 1;
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s; }
.ba-card:hover img { transform: scale(1.06); }
.ba-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; color: #fff; font-size: .92rem; font-weight: 600;
  background: linear-gradient(to top, rgba(10,20,26,.86), transparent);
}
.ba-card .tag { position: absolute; top: 12px; left: 12px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--violet-600); padding: 5px 10px; border-radius: 999px; }

/* ==========================================================================
   Feature cards (Neden biz)
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 28px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.why-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--violet-050); color: var(--violet-600); display: grid; place-items: center; margin-bottom: 18px; }
.why-card .ico svg { width: 27px; height: 27px; }
.why-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.why-card p { font-size: .95rem; color: var(--muted); }

/* ==========================================================================
   Guides / GEO cards
   ========================================================================== */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card__top { padding: 22px 24px 0; }
.guide-card__badge { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-700); }
.guide-card__body { padding: 12px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.guide-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.guide-card p { font-size: .95rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.guide-card__vs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.guide-card__vs span { font-size: .78rem; font-weight: 600; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ==========================================================================
   Comparison table
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; font-size: .96rem; }
table.compare caption { text-align: left; padding: 16px 20px; font-weight: 700; color: var(--muted); font-size: .9rem; border-bottom: 1px solid var(--line); }
table.compare th, table.compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.compare thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); position: sticky; top: 0; }
table.compare thead th:first-child { border-top-left-radius: var(--radius); }
table.compare tbody th { font-weight: 600; color: var(--ink-2); background: #fbfdfe; }
table.compare tbody tr:hover td { background: var(--teal-050); }
table.compare .yes { color: var(--teal-700); font-weight: 700; }
table.compare .no { color: #c0563f; font-weight: 600; }
table.compare td strong { color: var(--ink); }

/* Prose (guide articles) */
.prose { max-width: 780px; margin-inline: auto; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.8em; padding-top: .2em; }
.prose h3 { margin-top: 1.4em; font-size: 1.28rem; }
.prose p, .prose li { color: var(--ink-2); font-size: 1.06rem; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .5em; }
.prose ul li { list-style: none; position: relative; padding-left: 4px; }
.prose ul li::before { content: ""; position: absolute; left: -1.1em; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.prose ol { list-style: decimal; }
.prose a { color: var(--teal-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 4px solid var(--teal); background: var(--bg-soft); padding: 16px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.08rem; color: var(--ink); }
.prose .table-wrap { margin-block: 1.6em; }
.callout {
  display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid var(--line);
}
.callout .ico { flex: none; width: 40px; height: 40px; border-radius: 11px; background: #fff; color: var(--violet-600); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.callout b { color: var(--ink); }
.callout p { margin: 4px 0 0; font-size: .98rem; }

.key-takeaways { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.key-takeaways h2 { font-size: 1.2rem; margin-bottom: 12px; margin-top: 0 !important; }
.key-takeaways ul { display: grid; gap: 10px; padding: 0; }
.key-takeaways li { position: relative; padding-left: 30px; color: var(--ink-2); }
.key-takeaways li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: var(--teal-050); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b7d8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 1.06rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; transition: transform .25s, background .25s; }
.faq summary .chev svg { width: 18px; height: 18px; }
.faq details[open] summary .chev { transform: rotate(180deg); background: var(--grad); color: #fff; }
.faq details > div { padding: 0 0 20px; color: var(--ink-2); }
.faq details > div p { color: var(--ink-2); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-band::before { width: 320px; height: 320px; right: -80px; top: -120px; }
.cta-band::after { width: 220px; height: 220px; left: -60px; bottom: -110px; }
.cta-band .inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 520px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tst-card .stars { margin-bottom: 12px; }
.tst-card p { color: var(--ink-2); flex: 1; }
.tst-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tst-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; font-weight: 800; color: var(--violet-600); }
.tst-card .who b { display: block; font-size: .96rem; }
.tst-card .who span { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero { position: relative; padding: clamp(40px, 6vw, 72px) 0; background: var(--grad-soft); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { max-width: 780px; }
.page-hero p { margin-top: 14px; font-size: 1.12rem; color: var(--ink-2); max-width: 680px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 48px); align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .2s; }
.info-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.info-item .ico { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--teal-050); color: var(--teal-700); display: grid; place-items: center; }
.info-item .ico svg { width: 24px; height: 24px; }
.info-item b { display: block; font-size: 1.02rem; }
.info-item a, .info-item span, .info-item p { color: var(--muted); font-size: .96rem; }
.info-item a:hover { color: var(--teal-700); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); background: #fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #b9cad1; padding-top: clamp(50px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; letter-spacing: .01em; }
.footer-brand img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #9fb4bc; font-size: .95rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0e6; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #b9cad1; font-size: .95rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: .95rem; color: #b9cad1; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .87rem; color: #8ba3ab; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Floating actions
   ========================================================================== */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: grid; gap: 12px; }
.floaters a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s; position: relative; }
.floaters a:hover { transform: scale(1.08); }
.floaters .wa { background: #25d366; }
.floaters .tel { background: var(--teal); }
.floaters a svg { width: 28px; height: 28px; }
.floaters .wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
  animation: pulse 2s infinite; opacity: 0;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .floaters .wa::after { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 560px; }
  .svc-grid, .why-grid, .guide-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust-item + .trust-item { border-left: 0; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone span { display: none; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: #fff; z-index: 110;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 84px 20px 30px;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .32s ease;
    overflow-y: auto;
  }
  .nav-menu.open { transform: none; }
  .nav-menu > li > a { padding: 13px 15px; font-size: 1.02rem; }

  /* Mobil dropdown: accordion */
  .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
  .nav-menu > li.has-dropdown > a { flex: 1; }
  .dd-caret { display: none; }
  .dd-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink-2); cursor: pointer;
  }
  .dd-toggle svg { width: 22px; height: 22px; transition: transform .25s ease; }
  .has-dropdown.open .dd-toggle svg { transform: rotate(180deg); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line-2); border-radius: 0; min-width: 0; width: 100%;
    margin: 2px 0 8px 12px; padding: 0; display: none;
  }
  .has-dropdown.open .dropdown { display: grid; }
  .dropdown a { font-size: .98rem; padding: 11px 12px; }
  .dropdown .dropdown__all a { border-top: 0; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,20,26,.45); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 80; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { height: 40px; }
  .nav-actions .btn--grad { display: none; }
  .svc-grid, .why-grid, .guide-grid, .tst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .cta-band .actions { width: 100%; }
  .cta-band .actions .btn { flex: 1; }
  .floaters a { width: 52px; height: 52px; }
}
