:root {
  color-scheme: dark;
  --bg: #021520;
  --bg-deep: #010d14;
  --surface: #072a3d;
  --surface-2: #0b384f;
  --surface-soft: #04202f;
  --text: #e8f5f2;
  --text-2: #a6c3bf;
  --muted: #6f918d;
  --teal: #6bd8cb;
  --teal-deep: #29a195;
  --orange: #ffb689;
  --border: rgba(230,244,241,.12);
  --border-strong: rgba(230,244,241,.22);
  --glass: rgba(4,32,47,.74);
  --shadow: 0 28px 70px rgba(0,0,0,.34);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1200px;
  --header-h: 78px;
}

html.light {
  color-scheme: light;
  --bg: #f5f8f7;
  --bg-deep: #fff;
  --surface: #e8efed;
  --surface-2: #dce8e5;
  --surface-soft: #f0f5f4;
  --text: #021520;
  --text-2: #3b5550;
  --muted: #6d817d;
  --teal: #158d82;
  --teal-deep: #0e7269;
  --orange: #c96726;
  --border: rgba(2,21,32,.1);
  --border-strong: rgba(2,21,32,.2);
  --glass: rgba(255,255,255,.82);
  --shadow: 0 28px 70px rgba(2,21,32,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(107,216,203,.09), transparent 34rem),
    radial-gradient(circle at 100% 36%, rgba(255,182,137,.05), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--teal); color: #021520; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: var(--teal); color: #021520; padding: 10px 16px; border-radius: 12px; font-weight: 800; }
.skip-link:focus { top: 12px; }
.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg,var(--teal),var(--orange)); }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { background: var(--glass); backdrop-filter: blur(20px) saturate(160%); border-color: var(--border); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { width: 39px; height: 39px; border-radius: 13px; display: grid; place-items: center; font-size: 21px; font-weight: 900; background: linear-gradient(135deg,var(--teal),var(--orange)); color: #021520; box-shadow: 0 10px 30px rgba(107,216,203,.18); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 16px; letter-spacing: .1em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .32em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.desktop-nav a { position: relative; font-size: 13px; color: var(--text-2); font-weight: 650; transition: .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:-12px; height:2px; border-radius:4px; background:var(--teal); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--text-2); font-size: 12px; white-space: nowrap; }
.header-phone .icon { width: 17px; height: 17px; color: var(--teal); }
.icon-button { width: 40px; height: 40px; padding: 0; border-radius: 50%; display:grid; place-items:center; background: var(--surface-soft); border:1px solid var(--border); cursor:pointer; }
.icon-button .icon { width:18px; height:18px; }
.menu-toggle { display:none; }
.mobile-menu { background: var(--glass); backdrop-filter: blur(24px); border-top:1px solid var(--border); max-height: calc(100vh - var(--header-h)); overflow:auto; }
.mobile-nav { padding-block: 18px 30px; display:grid; gap:5px; }
.mobile-nav > a:not(.button) { padding: 13px 8px; border-bottom: 1px solid var(--border); font-weight:650; }

.button { min-height: 48px; display:inline-flex; align-items:center; justify-content:center; gap:9px; border-radius:999px; padding: 12px 22px; border:1px solid transparent; font-weight:800; font-size:14px; line-height:1.2; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; cursor:pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color:#021520; box-shadow: 0 14px 36px rgba(107,216,203,.18); }
.button-primary:hover { box-shadow: 0 18px 46px rgba(107,216,203,.28); }
.button-secondary { border-color: var(--border-strong); background: rgba(255,255,255,.02); color:var(--text); }
.button-secondary:hover { border-color: var(--teal); }
.button-small { min-height:40px; padding: 9px 17px; font-size:12px; }
.button-block { width:100%; }
.text-link { display:inline-flex; align-items:center; gap:8px; color:var(--teal); font-size:13px; font-weight:800; }
.text-link .icon { width:17px; height:17px; transition:transform .2s; }
.text-link:hover .icon { transform:translateX(4px); }

.hero-section { min-height: calc(100vh - var(--header-h)); position:relative; overflow:hidden; display:grid; align-items:center; padding: 62px 0 88px; }
.hero-section::before { content:""; position:absolute; inset:0; opacity:.06; background-image: linear-gradient(var(--text) 1px,transparent 1px),linear-gradient(90deg,var(--text) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to bottom,#000,transparent 90%); }
.hero-aurora { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.hero-aurora-one { width:500px;height:500px; left:10%;top:-210px;background:rgba(107,216,203,.19); }
.hero-aurora-two { width:420px;height:420px; right:-80px;top:120px;background:rgba(255,182,137,.14); }
.hero-grid { position:relative; display:grid; grid-template-columns:1.08fr .92fr; gap:80px; align-items:center; }
.hero-copy h1, .page-hero h1, .article-hero h1 { margin: 21px 0 24px; font-size: clamp(44px,6vw,82px); line-height:.98; letter-spacing:-.052em; max-width:900px; }
.hero-copy h1 span, .page-hero h1 span { background:linear-gradient(120deg,var(--teal),var(--orange)); color:transparent; background-clip:text; -webkit-background-clip:text; }
.hero-copy > p { max-width:670px; margin:0; color:var(--text-2); font-size:18px; line-height:1.75; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; color:var(--teal); font-weight:800; font-size:12px; text-transform:uppercase; letter-spacing:.18em; }
.eyebrow i { width:7px;height:7px;border-radius:50%;background:var(--teal);box-shadow:0 0 16px var(--teal); }
.hero-actions { margin-top:32px; display:flex; flex-wrap:wrap; gap:12px; }
.hero-stats { margin:34px 0 0; padding-top:25px; border-top:1px solid var(--border); display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.hero-stats div { display:flex; flex-direction:column; gap:2px; }
.hero-stats dt { font-size:21px; font-weight:900; letter-spacing:-.02em; }
.hero-stats dd { margin:0; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.hero-visual { position:relative; }
.hero-image-wrap { position:relative; width:min(100%,490px); margin-left:auto; border-radius:44px; padding:1px; background:linear-gradient(145deg,rgba(107,216,203,.55),rgba(255,182,137,.25),rgba(255,255,255,.04)); box-shadow:var(--shadow); }
.hero-image-wrap > img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center; border-radius:43px; }
.hero-overlay { position:absolute; inset:1px; border-radius:43px; background:linear-gradient(to top,rgba(1,13,20,.68),transparent 56%),linear-gradient(135deg,rgba(107,216,203,.08),transparent); }
.floating-card { position:absolute; min-width:225px; padding:16px 18px; border-radius:18px; background:var(--glass); backdrop-filter:blur(18px); border:1px solid var(--border-strong); box-shadow:0 18px 42px rgba(0,0,0,.24); display:flex; flex-direction:column; }
.floating-card span { color:var(--muted); font-size:9px; letter-spacing:.18em; }
.floating-card strong { margin:5px 0 2px; font-size:17px; }
.floating-card small { color:var(--text-2); font-size:10px; }
.floating-card-top { left:-44px; top:64px; transform:rotate(-4deg); }
.floating-card-bottom { right:-25px; bottom:68px; transform:rotate(3deg); }

.trust-strip { border-block:1px solid var(--border); background:rgba(1,13,20,.22); }
.trust-grid { min-height:92px; display:grid; grid-template-columns:repeat(4,1fr); }
.trust-grid > div { padding:22px 24px; display:flex; align-items:center; justify-content:center; gap:12px; border-right:1px solid var(--border); color:var(--text-2); font-size:12px; }
.trust-grid > div:last-child { border-right:0; }
.trust-grid .icon { color:var(--teal); }
.trust-grid strong { color:var(--text); }

.section { padding: 106px 0; position:relative; }
.section-dark { background:linear-gradient(180deg,rgba(1,13,20,.6),rgba(7,42,61,.32)); border-block:1px solid var(--border); }
.section-heading { max-width:730px; }
.section-heading h2 { margin:16px 0 18px; font-size:clamp(34px,4.2vw,58px); line-height:1.06; letter-spacing:-.045em; }
.section-heading p { color:var(--text-2); font-size:17px; margin:0 0 24px; }
.center-actions { margin-top:40px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

.services-grid { margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { min-height:360px; padding:29px; border:1px solid var(--border); border-radius:var(--radius); background:linear-gradient(145deg,var(--surface-soft),rgba(7,42,61,.72)); display:flex; flex-direction:column; transition:.25s; overflow:hidden; position:relative; }
.service-card::after { content:""; position:absolute; width:180px;height:180px; right:-100px;top:-100px;border-radius:50%; background:rgba(107,216,203,.08); filter:blur(18px); }
.service-card:hover { transform:translateY(-7px); border-color:rgba(107,216,203,.38); box-shadow:var(--shadow); }
.service-icon { width:52px;height:52px;border-radius:17px;display:grid;place-items:center;background:rgba(107,216,203,.13);color:var(--teal);border:1px solid rgba(107,216,203,.18); }
.service-icon.large { width:68px;height:68px;border-radius:22px; }
.service-icon .icon { width:25px;height:25px; }
.service-card h2,.service-card h3 { margin:22px 0 10px;font-size:21px;line-height:1.2;letter-spacing:-.025em; }
.service-card p { color:var(--text-2);font-size:14px;margin:0 0 18px; }
.service-card ul,.check-panel ul,.focus-panel ul,.quote-benefits ul,.sticky-card ul { list-style:none;padding:0;margin:0 0 25px;display:grid;gap:10px; }
.service-card li,.check-panel li,.focus-panel li,.quote-benefits li,.sticky-card li { display:flex;align-items:flex-start;gap:9px;color:var(--text-2);font-size:12px; }
.service-card li .icon,.check-panel li .icon,.focus-panel li .icon,.quote-benefits li .icon,.sticky-card li .icon { width:16px;height:16px;color:var(--teal);margin-top:2px; }
.service-card .text-link { margin-top:auto; }
.services-grid.detailed .service-card { min-height:510px; }
.compact-services .service-card { min-height:275px; }
.compact-services { grid-template-columns:repeat(3,1fr); }

.split-grid { display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:start; }
.bento-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:16px; }
.bento-card { min-height:230px;padding:27px;border-radius:var(--radius);border:1px solid var(--border);background:var(--surface-soft); }
.bento-card.bento-large { grid-column:span 2;min-height:200px; }
.bento-card > .icon { color:var(--teal);width:28px;height:28px; }
.bento-card h3 { margin:28px 0 8px;font-size:21px; }
.bento-card p { margin:0;color:var(--text-2);font-size:14px; }

.district-grid { margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.district-grid.compact { grid-template-columns:repeat(4,1fr); }
.district-card { min-height:92px;padding:18px;border:1px solid var(--border);border-radius:20px;background:var(--surface-soft);display:flex;align-items:center;gap:14px;transition:.2s; }
.district-card:hover { border-color:var(--teal);transform:translateY(-3px); }
.district-card > span { width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:rgba(107,216,203,.12);color:var(--teal); }
.district-card > span .icon { width:20px;height:20px; }
.district-card > div { display:flex;flex-direction:column;min-width:0; }
.district-card strong { font-size:14px; }
.district-card small { color:var(--muted);font-size:10px; }
.district-card > .icon { margin-left:auto;width:17px;height:17px;color:var(--muted); }
.district-detail-card { padding:28px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft);display:flex;flex-direction:column;min-height:390px;transition:.25s; }
.district-detail-card:hover { transform:translateY(-6px);border-color:rgba(107,216,203,.38); }
.district-card-top { display:flex;align-items:center;justify-content:space-between;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.1em; }
.district-card-top > span { width:46px;height:46px;border-radius:15px;display:grid;place-items:center;background:rgba(107,216,203,.12);color:var(--teal); }
.district-detail-card h2 { font-size:22px;line-height:1.25;margin:24px 0 10px; }
.district-detail-card p { color:var(--text-2);font-size:13px;margin:0 0 20px; }
.district-detail-card .text-link { margin-top:auto; }
.district-link-cloud { margin-top:35px;display:flex;flex-wrap:wrap;gap:10px; }
.district-link-cloud a { padding:11px 15px;border:1px solid var(--border);border-radius:999px;color:var(--text-2);font-size:12px; }
.district-link-cloud a:hover { border-color:var(--teal);color:var(--text); }

.reference-grid { margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.reference-card { min-height:270px;padding:28px;border-radius:var(--radius);border:1px solid var(--border);background:
  radial-gradient(circle at 100% 0,rgba(107,216,203,.11),transparent 50%),var(--surface-soft);display:flex;flex-direction:column; }
.reference-head { display:flex;align-items:center;justify-content:space-between; }
.reference-type { color:var(--teal);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.14em; }
.reference-head small { color:var(--muted); }
.reference-card h2,.reference-card h3 { margin:28px 0 9px;font-size:23px;line-height:1.2; }
.reference-card p { margin:0 0 22px;color:var(--text-2);font-size:13px; }
.tag-list { display:flex;flex-wrap:wrap;gap:7px;margin-top:auto; }
.tag-list span { padding:7px 10px;border:1px solid var(--border);border-radius:999px;color:var(--muted);font-size:9px;text-transform:uppercase;letter-spacing:.08em; }

.process-grid { list-style:none;padding:0;margin:48px 0 0;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;counter-reset:process; }
.process-grid li { min-height:250px;padding:26px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft); }
.process-grid li > span { display:block;color:var(--teal);font-weight:900;font-size:28px;letter-spacing:-.03em; }
.process-grid h3 { margin:48px 0 10px;font-size:19px; }
.process-grid p { color:var(--text-2);font-size:13px;margin:0; }

.google-proof { padding:42px;border:1px solid var(--border);border-radius:34px;background:linear-gradient(135deg,var(--surface),var(--surface-soft));display:flex;align-items:center;justify-content:space-between;gap:40px; }
.google-proof > div { max-width:740px; }
.google-proof h2 { margin:13px 0 8px;font-size:clamp(27px,3vw,42px);line-height:1.08; }
.google-proof p { margin:0;color:var(--text-2); }

.accordion { margin-top:42px;border-top:1px solid var(--border); }
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-item button { width:100%;padding:22px 3px;border:0;background:transparent;display:flex;align-items:center;justify-content:space-between;gap:20px;text-align:left;cursor:pointer;font-weight:800;font-size:16px; }
.accordion-item button i { font-style:normal;color:var(--teal);font-size:24px;transition:.2s; }
.accordion-item button[aria-expanded="true"] i { transform:rotate(45deg); }
.accordion-panel { padding:0 3px 22px; }
.accordion-panel p { color:var(--text-2);margin:0; }

.final-cta { padding-top:42px; }
.cta-panel { padding:54px;border-radius:36px;border:1px solid var(--border);background:
 radial-gradient(circle at 100% 0,rgba(255,182,137,.14),transparent 45%),
 radial-gradient(circle at 0 100%,rgba(107,216,203,.14),transparent 45%),
 var(--surface);display:flex;align-items:center;justify-content:space-between;gap:50px; }
.cta-panel > div { max-width:760px; }
.cta-panel h2 { margin:15px 0 9px;font-size:clamp(30px,4vw,51px);line-height:1.05;letter-spacing:-.04em; }
.cta-panel p { margin:0;color:var(--text-2); }

.page-hero { padding:90px 0 78px;border-bottom:1px solid var(--border);background:linear-gradient(180deg,rgba(7,42,61,.34),transparent); }
.page-hero-inner { max-width:930px; }
.page-hero h1 { font-size:clamp(45px,6vw,76px); }
.page-hero p { max-width:770px;color:var(--text-2);font-size:18px; }
.breadcrumbs { margin-bottom:26px;display:flex;align-items:center;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:11px; }
.breadcrumbs a:hover { color:var(--teal); }
.value-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:16px; }
.value-card { padding:26px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft); }
.value-card > .icon { color:var(--teal); }
.value-card h3 { margin:27px 0 8px;font-size:19px; }
.value-card p { margin:0;color:var(--text-2);font-size:13px; }
.principles-grid { margin-top:45px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.principle-card { min-height:310px;padding:30px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft); }
.principle-card > span { color:var(--teal);font-size:10px;font-weight:900;letter-spacing:.18em; }
.principle-card h3 { margin:70px 0 13px;font-size:23px; }
.principle-card p { color:var(--text-2);font-size:14px; }
.stats-panel { padding:34px;border:1px solid var(--border);border-radius:30px;background:var(--surface-soft);display:grid;grid-template-columns:repeat(4,1fr); }
.stats-panel div { display:flex;flex-direction:column;align-items:center;text-align:center;border-right:1px solid var(--border); }
.stats-panel div:last-child { border-right:0; }
.stats-panel strong { font-size:34px;letter-spacing:-.04em; }
.stats-panel span { color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.12em; }

.check-panel,.focus-panel,.quote-benefits,.sticky-card,.form-card { padding:32px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft); }
.check-panel h3,.focus-panel h2,.quote-benefits h2,.sticky-card h2,.form-card h2 { margin:0 0 20px;font-size:24px; }
.service-detail-grid { display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:64px;align-items:start; }
.content-section { padding-bottom:38px;margin-bottom:38px;border-bottom:1px solid var(--border); }
.content-section h2 { margin:0 0 15px;font-size:32px;line-height:1.15;letter-spacing:-.03em; }
.content-section p { color:var(--text-2);font-size:16px;margin:0; }
.sticky-card { position:sticky;top:102px; }
.area-box { margin-top:25px;padding-top:22px;border-top:1px solid var(--border); }
.area-box strong { font-size:13px; }
.area-box p { color:var(--muted);font-size:12px;margin:7px 0 0; }

.article-grid { margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.article-card { min-height:330px;padding:28px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface-soft);display:flex;flex-direction:column;transition:.2s; }
.article-card:hover { transform:translateY(-5px);border-color:rgba(107,216,203,.35); }
.article-meta { display:flex;align-items:center;justify-content:space-between;color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.1em; }
.article-meta span:first-child { color:var(--teal);font-weight:900; }
.article-card h2,.article-card h3 { margin:35px 0 11px;font-size:23px;line-height:1.22; }
.article-card p { color:var(--text-2);font-size:13px;margin:0 0 25px; }
.article-bottom { margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:12px; }
.article-bottom small { color:var(--muted); }
.small-grid .article-card { min-height:300px; }
.article-hero { padding:90px 0 65px;border-bottom:1px solid var(--border); }
.article-hero h1 { font-size:clamp(42px,5.5vw,70px); }
.article-hero p { color:var(--text-2);font-size:18px; }
.article-meta.large { margin-top:26px;justify-content:flex-start;gap:10px; }
.article-layout { display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:70px;align-items:start; }
.article-content { min-width:0; }
.article-content > p:first-child { font-size:20px;color:var(--text); }
.article-content p,.article-content li { color:var(--text-2);font-size:16px;line-height:1.85; }
.article-content h2 { scroll-margin-top:110px;margin:52px 0 15px;font-size:34px;line-height:1.18;letter-spacing:-.03em; }
.article-content h3 { margin:38px 0 12px;font-size:25px; }
.article-content ul,.article-content ol { padding-left:23px; }
.article-content strong { color:var(--text); }
.article-note { margin-top:45px;padding:20px;border:1px solid rgba(255,182,137,.25);border-radius:18px;background:rgba(255,182,137,.08);color:var(--text-2);font-size:13px; }
.sidebar-links { display:grid;margin-bottom:24px; }
.sidebar-links a { padding:13px 0;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;gap:10px;font-size:12px;color:var(--text-2); }
.sidebar-links .icon { width:15px;height:15px;color:var(--teal); }

.contact-grid,.quote-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:50px;align-items:start; }
.contact-cards { display:grid;gap:14px; }
.contact-card { padding:23px;border:1px solid var(--border);border-radius:22px;background:var(--surface-soft);display:flex;align-items:center;gap:16px;transition:.2s; }
.contact-card:hover { transform:translateY(-3px);border-color:var(--teal); }
.contact-card > .icon { color:var(--teal); }
.contact-card div { display:flex;flex-direction:column; }
.contact-card small { color:var(--muted);text-transform:uppercase;letter-spacing:.12em;font-size:9px; }
.contact-card strong { margin:3px 0;font-size:17px; }
.contact-card span { color:var(--text-2);font-size:11px; }
.form-card > p { color:var(--text-2);margin:-10px 0 24px; }
.whatsapp-form { display:grid;gap:17px; }
.form-row { display:grid;grid-template-columns:repeat(2,1fr);gap:14px; }
.whatsapp-form label { display:grid;gap:7px;color:var(--text-2);font-size:11px;font-weight:700; }
.whatsapp-form input,.whatsapp-form select,.whatsapp-form textarea { width:100%;border:1px solid var(--border);border-radius:14px;background:var(--bg-deep);color:var(--text);padding:13px 14px;outline:0;transition:.2s; }
.whatsapp-form textarea { resize:vertical; }
.whatsapp-form input:focus,.whatsapp-form select:focus,.whatsapp-form textarea:focus { border-color:var(--teal);box-shadow:0 0 0 3px rgba(107,216,203,.11); }
.whatsapp-form .consent { display:flex;grid-template-columns:auto 1fr;align-items:flex-start;gap:9px;font-weight:500;line-height:1.5; }
.whatsapp-form .consent input { width:17px;height:17px;margin-top:2px;accent-color:var(--teal); }
.honeypot { position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important; }
.quote-benefits > p { color:var(--text-2); }
.mini-contact { margin-top:35px;padding-top:25px;border-top:1px solid var(--border);display:flex;flex-direction:column; }
.mini-contact span { color:var(--muted);font-size:11px; }
.mini-contact a { color:var(--teal);font-size:24px;font-weight:900; }

.legal-content h2 { margin:42px 0 12px;font-size:28px; }
.legal-content p { color:var(--text-2);font-size:16px; }
.not-found { min-height:70vh;display:grid;align-items:center;text-align:center;padding:90px 0; }
.error-code { display:block;font-size:clamp(100px,20vw,220px);line-height:.8;font-weight:950;letter-spacing:-.08em;color:transparent;-webkit-text-stroke:1px var(--border-strong); }
.not-found h1 { font-size:clamp(34px,5vw,58px);line-height:1.08; }
.not-found p { color:var(--text-2); }
.not-found .hero-actions { justify-content:center; }

.site-footer { padding:80px 0 28px;border-top:1px solid var(--border);background:var(--bg-deep); }
.footer-grid { display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:55px; }
.footer-brand p { max-width:430px;color:var(--text-2);font-size:13px;margin:24px 0; }
.footer-contact { display:grid;gap:9px; }
.footer-contact a,.footer-contact span { display:flex;align-items:flex-start;gap:9px;color:var(--text-2);font-size:12px; }
.footer-contact .icon { width:17px;height:17px;color:var(--teal); }
.social-links { margin-top:22px;display:flex;gap:9px; }
.social-links a { padding:8px 11px;border:1px solid var(--border);border-radius:999px;font-size:10px;color:var(--text-2); }
.footer-grid > div:not(.footer-brand) { display:flex;flex-direction:column;align-items:flex-start;gap:9px; }
.footer-grid h2 { font-size:13px;margin:0 0 10px; }
.footer-grid > div:not(.footer-brand) a { color:var(--text-2);font-size:11px; }
.footer-grid > div:not(.footer-brand) a:hover { color:var(--teal); }
.footer-bottom { margin-top:60px;padding-top:22px;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:20px;color:var(--muted);font-size:10px; }
.footer-bottom div { display:flex;gap:16px; }
.floating-whatsapp { position:fixed;z-index:90;right:22px;bottom:22px;min-height:50px;padding:0 18px;border-radius:999px;background:#25d366;color:#04140a;display:flex;align-items:center;gap:9px;font-size:12px;font-weight:900;box-shadow:0 16px 40px rgba(0,0,0,.32); }
.floating-whatsapp .icon { width:20px;height:20px; }

.reveal { opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1;transform:none; }
.no-js .reveal { opacity:1;transform:none; }

@media (max-width: 1100px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:grid; }
  .header-phone span { display:none; }
  .hero-grid { gap:42px; }
  .hero-stats { grid-template-columns:repeat(2,1fr); }
  .services-grid,.reference-grid,.article-grid,.district-grid { grid-template-columns:repeat(2,1fr); }
  .district-grid.compact { grid-template-columns:repeat(3,1fr); }
  .split-grid { gap:46px; }
  .footer-grid { grid-template-columns:1.4fr repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column:2/4; }
}

@media (max-width: 820px) {
  :root { --header-h:68px; }
  .container { width:min(calc(100% - 28px),var(--container)); }
  .header-inner { gap:12px; }
  .header-actions { margin-left:auto; }
  .header-actions .button-small,.header-phone { display:none; }
  .hero-section { padding:42px 0 70px; }
  .hero-grid,.split-grid,.service-detail-grid,.article-layout,.contact-grid,.quote-grid { grid-template-columns:1fr; }
  .hero-copy h1,.page-hero h1,.article-hero h1 { font-size:clamp(41px,12vw,65px); }
  .hero-visual { margin-top:20px; }
  .hero-image-wrap { margin-inline:auto; }
  .floating-card-top { left:-4px; }
  .floating-card-bottom { right:-3px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right:0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom:1px solid var(--border); }
  .section { padding:78px 0; }
  .section-heading h2 { font-size:clamp(32px,9vw,48px); }
  .services-grid,.reference-grid,.article-grid,.district-grid,.district-grid.compact,.compact-services { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .google-proof,.cta-panel { align-items:flex-start;flex-direction:column; }
  .principles-grid { grid-template-columns:1fr; }
  .principle-card { min-height:230px; }
  .principle-card h3 { margin-top:35px; }
  .stats-panel { grid-template-columns:repeat(2,1fr);gap:25px 0; }
  .stats-panel div:nth-child(2) { border-right:0; }
  .stats-panel div:nth-child(-n+2) { padding-bottom:20px;border-bottom:1px solid var(--border); }
  .sticky-card { position:static; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .footer-brand { grid-column:1/3; }
  .footer-grid > div:last-child { grid-column:auto; }
}

@media (max-width: 560px) {
  .brand-copy { display:none; }
  .theme-toggle { display:none; }
  .hero-actions .button { width:100%; }
  .hero-stats { gap:15px 8px; }
  .hero-image-wrap { width:93%; }
  .floating-card { min-width:190px;padding:13px 14px; }
  .floating-card strong { font-size:14px; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid > div { border-right:0;border-bottom:1px solid var(--border);justify-content:flex-start; }
  .services-grid,.reference-grid,.article-grid,.district-grid,.district-grid.compact,.compact-services { grid-template-columns:1fr; }
  .service-card { min-height:330px; }
  .bento-grid { grid-template-columns:1fr; }
  .bento-card.bento-large { grid-column:auto; }
  .process-grid { grid-template-columns:1fr; }
  .process-grid li { min-height:220px; }
  .google-proof,.cta-panel { padding:31px 24px; }
  .value-grid { grid-template-columns:1fr; }
  .stats-panel { grid-template-columns:1fr; }
  .stats-panel div { border-right:0!important;border-bottom:1px solid var(--border);padding:16px 0!important; }
  .stats-panel div:last-child { border-bottom:0; }
  .form-row { grid-template-columns:1fr; }
  .form-card,.check-panel,.focus-panel,.quote-benefits,.sticky-card { padding:24px; }
  .article-content h2 { font-size:29px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand,.footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { align-items:flex-start;flex-direction:column; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp { width:52px;height:52px;padding:0;justify-content:center; }
}

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

/* === Gökdem V2: gerçek proje vitrini ve premium kurumsal dokunuşlar === */
.hero-section {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--border);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1,13,20,.82) 0%, rgba(1,13,20,.24) 58%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.025) 25%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; }
.hero-copy h1 span {
  background: linear-gradient(110deg, var(--teal), #d9fff8 45%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-image-wrap {
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 100px rgba(0,0,0,.48);
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(.9) contrast(1.04);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(2,21,32,.03) 28%, rgba(2,21,32,.78) 100%),
    linear-gradient(90deg, rgba(2,21,32,.28), transparent 40%);
}
.floating-card {
  backdrop-filter: blur(18px) saturate(150%);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.project-spotlight-section { padding-top: 38px; }
.project-spotlight {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  align-items: center;
  gap: clamp(42px,7vw,96px);
  padding: clamp(26px,4vw,52px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0 0, rgba(107,216,203,.11), transparent 38%),
    linear-gradient(145deg, var(--surface-soft), rgba(4,32,47,.42));
  box-shadow: var(--shadow);
}
.project-spotlight-media {
  position: relative;
  margin: 0;
  min-height: 610px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
}
.project-spotlight-media img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 48%;
  transition: transform .7s ease;
}
.project-spotlight:hover .project-spotlight-media img { transform: scale(1.025); }
.project-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(1,13,20,.94));
}
.project-spotlight-media figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #d9e9e6;
  font-size: 12px;
  line-height: 1.55;
}
.project-spotlight-copy h2 {
  margin: 15px 0 18px;
  font-size: clamp(34px,4vw,58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.project-spotlight-copy > p {
  color: var(--text-2);
  font-size: 16px;
  max-width: 680px;
}
.spotlight-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 11px;
  margin: 30px 0;
}
.spotlight-points div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}
.spotlight-points strong { color: var(--teal); font-size: 11px; letter-spacing: .12em; }
.spotlight-points span { font-size: 13px; line-height: 1.5; font-weight: 700; }

.section-projects {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,182,137,.07), transparent 28rem),
    radial-gradient(circle at 5% 90%, rgba(107,216,203,.07), transparent 30rem);
}
.project-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(107,216,203,.42);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.project-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #06131b;
}
.project-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(1,13,20,.72));
  pointer-events: none;
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.project-card:hover .project-card-media img { transform: scale(1.035); filter: saturate(1.04); }
.project-card .reference-type {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(1,13,20,.68);
  backdrop-filter: blur(12px);
  color: #e9f8f5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card-body {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.project-card-body > small {
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-card-body h2,.project-card-body h3 {
  margin: 10px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.project-card-body p {
  margin: 0 0 22px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
}
.project-card-body .tag-list { margin-top: auto; }
.project-grid-home .project-card-featured { grid-column: span 2; }
.project-grid-home .project-card-featured .project-card-media { aspect-ratio: 16 / 9; }
.project-grid-home .project-card-featured .project-card-body { padding: 30px; }
.project-grid-home .project-card-featured .project-card-body h3 { font-size: 30px; }

.reference-hero { padding: 72px 0 78px; overflow: hidden; }
.reference-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr);
  align-items: center;
  gap: clamp(45px,7vw,90px);
}
.reference-hero .page-hero-inner { max-width: none; }
.reference-hero h1 { max-width: 850px; }
.reference-hero h1 span { color: var(--teal); }
.reference-hero-media {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.reference-hero-media img { width: 100%; height: 560px; object-fit: cover; }
.reference-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(1,13,20,.7));
}
.reference-hero-badge {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  padding: 15px 19px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(1,13,20,.72);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.reference-hero-badge strong { color: var(--teal); font-size: 32px; line-height: 1; }
.reference-hero-badge span { color: #e6f3f0; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.reference-summary-strip { border-bottom: 1px solid var(--border); background: var(--bg-deep); }
.reference-summary-strip .container { display: grid; grid-template-columns: repeat(4,1fr); }
.reference-summary-strip .container > div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reference-summary-strip .container > div:first-child { border-left: 1px solid var(--border); }
.reference-summary-strip strong { font-size: 18px; }
.reference-summary-strip span { color: var(--muted); font-size: 10px; margin-top: 4px; }
.reference-project-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.reference-project-grid .project-card-wide { grid-column: span 2; }
.reference-project-grid .project-card-wide .project-card-media { aspect-ratio: 16 / 10; }
.reference-process { display: grid; gap: 12px; }
.reference-process > div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  display: grid;
  grid-template-columns: 45px 1fr;
  column-gap: 15px;
}
.reference-process span { grid-row: span 2; color: var(--teal); font-size: 13px; font-weight: 900; }
.reference-process strong { font-size: 17px; }
.reference-process p { margin: 5px 0 0; color: var(--text-2); font-size: 12px; }

/* Kurumsal detay kalitesi */
.section-heading { position: relative; }
.section-heading::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 8px;
  width: 2px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(var(--teal), transparent);
}
.service-card,.bento-card,.district-card,.article-card,.value-card,.principle-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.service-card:hover,.district-card:hover,.article-card:hover {
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
}

@media (max-width:1100px) {
  .project-grid,.reference-project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-grid-home .project-card-featured { grid-column: span 2; }
  .reference-hero-grid { grid-template-columns: minmax(0,1fr) 380px; gap: 42px; }
}

@media (max-width:820px) {
  .project-spotlight,.reference-hero-grid { grid-template-columns: 1fr; }
  .project-spotlight-media,.project-spotlight-media img { min-height: 520px; height: 520px; }
  .reference-hero-media { max-width: 560px; width: 100%; min-height: 520px; transform: none; }
  .reference-hero-media img { height: 520px; }
  .reference-summary-strip .container { grid-template-columns: repeat(2,1fr); }
  .reference-summary-strip .container > div:nth-child(2) { border-right: 1px solid var(--border); }
  .reference-summary-strip .container > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .reference-project-grid .project-card-wide { grid-column: span 2; }
}

@media (max-width:560px) {
  .hero-image-wrap,.hero-image-wrap > img { min-height: 520px; }
  .project-spotlight { padding: 18px; border-radius: 26px; }
  .project-spotlight-media,.project-spotlight-media img { min-height: 440px; height: 440px; }
  .spotlight-points { grid-template-columns: 1fr; }
  .spotlight-points div { min-height: auto; }
  .project-grid,.reference-project-grid { grid-template-columns: 1fr; }
  .project-grid-home .project-card-featured,.reference-project-grid .project-card-wide { grid-column: auto; }
  .project-grid-home .project-card-featured .project-card-media,.reference-project-grid .project-card-wide .project-card-media { aspect-ratio: 4 / 5; }
  .project-card-body { padding: 22px; }
  .project-card-body h2,.project-card-body h3,.project-grid-home .project-card-featured .project-card-body h3 { font-size: 23px; }
  .reference-hero { padding-top: 46px; }
  .reference-hero-media,.reference-hero-media img { min-height: 440px; height: 440px; }
  .reference-summary-strip .container { grid-template-columns: 1fr; }
  .reference-summary-strip .container > div { min-height: 94px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .reference-summary-strip .container > div:last-child { border-bottom: 0; }
  .section-heading::before { display: none; }
}


/* V3 — marka, dönüşüm ve performans katmanı */
.brand-mark { overflow: hidden; padding: 3px; background: rgba(255,255,255,.96); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.site-footer address { font-style: normal; }

.property-types-section { padding-top: 82px; }
.property-types-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.property-type-card { position: relative; min-height: 470px; overflow: hidden; border: 1px solid var(--border); border-radius: 30px; background: var(--surface-soft); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.property-type-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .5s ease; }
.property-type-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(1,13,20,.03) 20%,rgba(1,13,20,.94) 88%),linear-gradient(120deg,rgba(107,216,203,.12),transparent 55%); }
.property-type-card > div { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 26px; }
.property-type-card small { color: #9ed5cf; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.property-type-card h3 { margin: 9px 0 8px; color: #f2fbf9; font-size: 30px; line-height: 1.05; letter-spacing: -.035em; }
.property-type-card p { margin: 0 0 18px; color: #c1d7d3; font-size: 13px; line-height: 1.6; }
.property-type-card strong { display: inline-flex; align-items: center; gap: 8px; color: #7de1d5; font-size: 12px; }
.property-type-card strong .icon { width: 17px; height: 17px; }
.property-type-card:hover { border-color: rgba(107,216,203,.48); box-shadow: 0 30px 75px rgba(0,0,0,.3); }
.property-type-card:hover img { transform: scale(1.045); filter: saturate(1.08); }

.project-filters { margin: 34px 0 4px; display: flex; flex-wrap: wrap; gap: 9px; }
.project-filters button { min-height: 42px; padding: 9px 15px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-soft); color: var(--text-2); cursor: pointer; font-size: 12px; font-weight: 800; transition: .2s ease; }
.project-filters button span { margin-left: 6px; color: var(--muted); font-size: 10px; }
.project-filters button:hover,.project-filters button.active { border-color: var(--teal); background: var(--teal); color: #021520; }
.project-filters button.active span { color: rgba(2,21,32,.65); }
.project-card[hidden] { display: none; }
.project-zoom { position: absolute; z-index: 3; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(1,13,20,.7); color: #fff; backdrop-filter: blur(12px); cursor: pointer; transition: .2s ease; }
.project-zoom:hover { transform: scale(1.08); background: var(--teal); color: #021520; }
.project-zoom .icon { width: 18px; height: 18px; }
.project-dialog { width: min(94vw,1000px); max-height: 92vh; padding: 0; border: 1px solid var(--border-strong); border-radius: 28px; overflow: hidden; background: #020e15; color: #fff; box-shadow: 0 45px 120px rgba(0,0,0,.68); }
.project-dialog::backdrop { background: rgba(0,8,12,.82); backdrop-filter: blur(9px); }
.project-dialog figure { margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; max-height: 92vh; }
.project-dialog img { width: 100%; max-height: 82vh; object-fit: contain; background: #020a0f; }
.project-dialog figcaption { padding: 17px 22px; font-weight: 800; }
.project-dialog-close { position: absolute; z-index: 4; top: 14px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(1,13,20,.74); color: #fff; cursor: pointer; }
.project-dialog-close .icon { width: 20px; height: 20px; }

.mobile-contact-bar { display: none; }
.related-regions-section { padding-top: 34px; }

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

@media (max-width: 980px) {
  .property-types-grid { grid-template-columns: 1fr 1fr; }
  .property-type-card:last-child { grid-column: 1 / -1; min-height: 400px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar { position: fixed; z-index: 140; left: 10px; right: 10px; bottom: max(10px,env(safe-area-inset-bottom)); min-height: 58px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border-strong); border-radius: 20px; overflow: hidden; background: rgba(2,21,32,.94); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.38); opacity: 0; pointer-events: none; transform: translateY(calc(100% + 24px)); transition: opacity .25s ease, transform .25s ease; }
  .mobile-contact-bar.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .no-js .mobile-contact-bar { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; color: #dff4f0; font-size: 11px; font-weight: 850; border-right: 1px solid rgba(255,255,255,.1); }
  .mobile-contact-bar a:last-child { border-right: 0; background: var(--teal); color: #021520; }
  .mobile-contact-bar .icon { width: 17px; height: 17px; }
  .property-types-grid { grid-template-columns: 1fr; }
  .property-type-card,.property-type-card:last-child { grid-column: auto; min-height: 430px; }
  .project-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .project-filters::-webkit-scrollbar { display: none; }
  .project-filters button { flex: 0 0 auto; }
  .project-dialog { width: calc(100vw - 18px); border-radius: 22px; }
}

/* === Gökdem V4: görsel hizmetler, bilgi merkezi ve kurumsal güven katmanı === */
.hero-visual { min-width: 0; }
.hero-image-wrap { overflow: hidden; }
.hero-proof-grid {
  position: relative;
  z-index: 4;
  margin: -42px 24px 0;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
.hero-proof-grid .floating-card {
  position: static;
  min-width: 0;
  transform: none;
  padding: 18px 19px;
  border-radius: 18px;
  background: linear-gradient(145deg,rgba(3,28,40,.98),rgba(5,43,59,.98));
  border: 1px solid rgba(137,233,220,.27);
  box-shadow: 0 18px 46px rgba(0,0,0,.42);
  backdrop-filter: none;
}
.hero-proof-grid .floating-card span { color: #8fe4d9; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.hero-proof-grid .floating-card strong { color: #fff; font-size: 15px; line-height: 1.25; text-shadow: 0 1px 2px rgba(0,0,0,.55); }
.hero-proof-grid .floating-card small { color: #c7dcd9; font-size: 10px; line-height: 1.45; }

.visual-service-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; }
.visual-service-grid.compact { grid-template-columns: repeat(3,minmax(0,1fr)); }
.visual-service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.visual-service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease,filter .45s ease; }
.visual-service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(1,13,20,.04) 12%,rgba(1,13,20,.96) 82%),linear-gradient(120deg,rgba(47,194,179,.15),transparent 56%); }
.visual-service-card > div { position: absolute; z-index: 2; inset: auto 22px 23px; }
.visual-service-card .service-icon { width: 44px; height: 44px; margin-bottom: 14px; color: #8ee5da; background: rgba(2,21,32,.76); border-color: rgba(255,255,255,.19); }
.visual-service-card small { color: #9bded6; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.visual-service-card h2,.visual-service-card h3 { margin: 8px 0 9px; color: #fff; font-size: clamp(22px,2.15vw,29px); line-height: 1.06; letter-spacing: -.035em; }
.visual-service-card p { margin: 0 0 15px; color: #c5d9d6; font-size: 12px; line-height: 1.55; }
.visual-service-card strong { display: inline-flex; align-items: center; gap: 7px; color: #83e3d7; font-size: 11px; }
.visual-service-card strong .icon { width: 16px; height: 16px; }
.visual-service-card ul { display: grid; gap: 7px; margin: 14px 0 16px; padding: 0; list-style: none; }
.visual-service-card li { display: flex; gap: 7px; color: #d5e5e2; font-size: 11px; }
.visual-service-card li .icon { width: 14px; height: 14px; color: #83e3d7; flex: 0 0 auto; }
.visual-service-card:hover { transform: translateY(-7px); border-color: rgba(107,216,203,.45); box-shadow: 0 28px 70px rgba(0,0,0,.32); }
.visual-service-card:hover > img { transform: scale(1.055); filter: saturate(1.08); }
.services-page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.services-page-grid .visual-service-card { min-height: 540px; }

.service-visual-hero { padding-bottom: 56px; }
.service-hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(380px,.98fr); align-items: center; gap: clamp(40px,6vw,82px); }
.service-hero-media { position: relative; min-height: 540px; margin: 0; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 34px; box-shadow: var(--shadow); }
.service-hero-media img { width: 100%; height: 540px; object-fit: cover; }
.service-hero-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(1,16,23,.9); color: #d9ece8; font-size: 12px; backdrop-filter: blur(12px); }
.proof-pill-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.proof-pill { min-height: 72px; padding: 16px 18px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface-soft); color: var(--text-2); font-size: 12px; font-weight: 750; }
.proof-pill .icon { width: 19px; height: 19px; color: var(--teal); flex: 0 0 auto; }
.service-content-section { padding-top: 34px; }
.service-process-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.service-process-card { min-height: 245px; padding: 27px; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(145deg,var(--surface-soft),rgba(7,42,61,.5)); }
.service-process-card > span { color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.service-process-card h3 { margin: 43px 0 11px; font-size: 21px; }
.service-process-card p { margin: 0; color: var(--text-2); font-size: 13px; }
.service-gallery { margin-top: 42px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.service-gallery figure { position: relative; min-height: 460px; margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; }
.service-gallery img { width: 100%; height: 460px; object-fit: cover; transition: transform .6s ease; }
.service-gallery figure:hover img { transform: scale(1.035); }
.service-gallery figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 13px 15px; border-radius: 14px; background: rgba(1,16,23,.88); color: #dbeae8; font-size: 11px; }

.project-card-link { color: inherit; }
.project-detail-link { margin-top: 19px; display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 12px; }
.project-detail-link .icon { width: 16px; height: 16px; }
.project-card-body h2 a,.project-card-body h3 a { color: inherit; }

.team-role-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.team-role-card { min-height: 310px; padding: 25px; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(145deg,var(--surface-soft),rgba(7,42,61,.48)); }
.team-role-card h2,.team-role-card h3 { margin: 20px 0 10px; font-size: 20px; }
.team-role-card p { margin: 0 0 17px; color: var(--text-2); font-size: 12px; }
.team-role-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.team-role-card li { display: flex; gap: 7px; color: var(--text-2); font-size: 11px; }
.team-role-card li .icon { width: 14px; height: 14px; color: var(--teal); flex: 0 0 auto; }
.home-team-grid { margin-top: 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
.home-team-grid .team-role-card { min-height: 220px; }

.trust-material-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.trust-material-card { min-height: 235px; padding: 26px; border: 1px solid var(--border); border-radius: 23px; background: var(--surface-soft); }
.trust-material-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--teal); background: rgba(107,216,203,.1); }
.trust-material-card .icon { width: 23px; height: 23px; }
.trust-material-card h3 { margin: 25px 0 9px; font-size: 19px; }
.trust-material-card p { margin: 0; color: var(--text-2); font-size: 12px; }

.knowledge-card-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.knowledge-card { display: grid; grid-template-columns: minmax(180px,.75fr) minmax(0,1.25fr); overflow: hidden; min-height: 300px; border: 1px solid var(--border); border-radius: 26px; background: var(--surface-soft); transition: transform .25s ease,border-color .25s ease; }
.knowledge-card > img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.knowledge-card > div { padding: 27px; }
.knowledge-card small { color: var(--teal); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.knowledge-card h2,.knowledge-card h3 { margin: 12px 0 11px; font-size: 23px; line-height: 1.15; }
.knowledge-card p { color: var(--text-2); font-size: 12px; }
.knowledge-card strong { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--teal); font-size: 11px; }
.knowledge-card strong .icon { width: 16px; height: 16px; }
.knowledge-card:hover { transform: translateY(-5px); border-color: rgba(107,216,203,.4); }

.partner-preview-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 68px; align-items: start; }
.partner-mini-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.partner-mini-card { min-height: 165px; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 21px; background: rgba(255,255,255,.025); }
.partner-mini-card > span { color: var(--teal); }
.partner-mini-card .icon { width: 23px; height: 23px; }
.partner-mini-card strong { margin: 20px 0 7px; font-size: 15px; }
.partner-mini-card small { color: var(--text-2); font-size: 10px; line-height: 1.5; }
.partner-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.partner-card { min-height: 255px; padding: 26px; border: 1px solid var(--border); border-radius: 23px; background: var(--surface-soft); }
.partner-card h2 { margin: 22px 0 10px; font-size: 19px; }
.partner-card p { color: var(--text-2); font-size: 12px; }

.google-review-panel { padding: clamp(28px,4vw,52px); display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 26px; border: 1px solid var(--border-strong); border-radius: 30px; background: radial-gradient(circle at 0 0,rgba(251,183,90,.11),transparent 33%),linear-gradient(145deg,var(--surface-soft),rgba(7,42,61,.55)); box-shadow: var(--shadow); }
.google-review-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 22px; color: #f6bd5f; background: rgba(246,189,95,.1); border: 1px solid rgba(246,189,95,.22); }
.google-review-icon .icon { width: 32px; height: 32px; }
.google-review-panel h2 { margin: 10px 0 8px; font-size: clamp(28px,3.2vw,43px); line-height: 1.08; }
.google-review-panel p { margin: 0 0 8px; color: var(--text-2); }
.google-review-panel small { color: var(--muted); font-size: 10px; }

.reference-detail-hero-grid,.corporate-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.86fr); align-items: center; gap: clamp(40px,6vw,78px); }
.reference-detail-media,.corporate-hero-media { position: relative; min-height: 540px; margin: 0; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 32px; box-shadow: var(--shadow); }
.reference-detail-media img,.corporate-hero-media img { width: 100%; height: 540px; object-fit: cover; }
.reference-detail-badge { position: absolute; left: 18px; bottom: 18px; padding: 12px 15px; border-radius: 14px; background: rgba(1,16,23,.9); color: #fff; font-size: 11px; }
.reference-story { max-width: 760px; }
.reference-story h2 { margin: 15px 0 18px; font-size: clamp(32px,4vw,53px); line-height: 1.08; }
.reference-story p { color: var(--text-2); }
.reference-focus-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; }
.focus-card { min-height: 190px; padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: var(--surface-soft); }
.focus-card span { color: var(--teal); font-size: 10px; font-weight: 900; }
.focus-card h3 { margin: 55px 0 0; font-size: 18px; }
.tag-panel { padding: 30px; border: 1px solid var(--border); border-radius: 25px; background: var(--surface-soft); }
.tag-panel p { margin: 23px 0 0; color: var(--muted); font-size: 11px; }
.tag-list.large span { padding: 9px 12px; font-size: 11px; }

.knowledge-hero-grid,.guide-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.86fr); gap: clamp(40px,6vw,76px); align-items: center; }
.knowledge-hero-media,.guide-hero-media { min-height: 510px; margin: 0; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 32px; box-shadow: var(--shadow); }
.knowledge-hero-media img,.guide-hero-media img { width: 100%; height: 510px; object-fit: cover; }
.knowledge-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.guide-layout { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 66px; align-items: start; }
.guide-content { max-width: 800px; }
.guide-content h2 { margin: 52px 0 15px; font-size: 31px; line-height: 1.15; scroll-margin-top: 110px; }
.guide-content p,.guide-content li { color: var(--text-2); font-size: 16px; line-height: 1.8; }
.guide-content ul { display: grid; gap: 8px; }
.guide-sidebar { position: sticky; top: calc(var(--header-h) + 30px); }
.guide-meta-card,.official-sources,.legal-note { padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: var(--surface-soft); }
.guide-meta-card { display: grid; gap: 13px; }
.guide-meta-card span { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
.guide-meta-card strong { color: var(--text); }
.official-sources { margin-top: 32px; }
.official-sources h2 { margin-top: 0; }
.official-sources a { color: var(--teal); text-decoration: underline; text-underline-offset: 4px; }
.legal-note { margin-top: 22px; color: var(--muted); font-size: 11px; }

@media (max-width:1100px) {
  .visual-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .team-role-grid,.trust-material-grid,.partner-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .desktop-nav { gap: 15px; }
  .desktop-nav a { font-size: 12px; }
}
@media (max-width:900px) {
  .service-hero-grid,.reference-detail-hero-grid,.corporate-hero-grid,.knowledge-hero-grid,.guide-hero-grid,.partner-preview-grid { grid-template-columns: 1fr; }
  .proof-pill-grid,.reference-focus-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-hero-media,.reference-detail-media,.corporate-hero-media,.knowledge-hero-media,.guide-hero-media { min-height: 460px; }
  .service-hero-media img,.reference-detail-media img,.corporate-hero-media img,.knowledge-hero-media img,.guide-hero-media img { height: 460px; }
  .knowledge-card-grid,.knowledge-grid { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; gap: 34px; }
  .guide-sidebar { position: static; }
  .google-review-panel { grid-template-columns: auto 1fr; }
  .google-review-panel .button { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width:620px) {
  .hero-proof-grid { margin: 12px 0 0; grid-template-columns: 1fr; }
  .hero-proof-grid .floating-card { width: 100%; }
  .visual-service-grid,.services-page-grid,.team-role-grid,.home-team-grid,.trust-material-grid,.partner-grid,.partner-mini-grid,.proof-pill-grid,.reference-focus-grid,.service-process-grid,.service-gallery { grid-template-columns: 1fr; }
  .visual-service-card,.services-page-grid .visual-service-card { min-height: 440px; }
  .knowledge-card { grid-template-columns: 1fr; }
  .knowledge-card > img { height: 250px; min-height: 250px; }
  .service-hero-media,.reference-detail-media,.corporate-hero-media,.knowledge-hero-media,.guide-hero-media { min-height: 390px; }
  .service-hero-media img,.reference-detail-media img,.corporate-hero-media img,.knowledge-hero-media img,.guide-hero-media img { height: 390px; }
  .service-gallery figure,.service-gallery img { min-height: 390px; height: 390px; }
  .google-review-panel { grid-template-columns: 1fr; }
  .google-review-icon { width: 58px; height: 58px; }
}

/* V4 sayfa şablonu tamamlayıcıları */
.reference-detail-hero,.guide-header { padding: clamp(58px,8vw,108px) 0; overflow: hidden; }
.reference-detail-grid,.guide-header-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.88fr); align-items: center; gap: clamp(42px,6vw,80px); }
.reference-detail-copy h1,.guide-header-copy h1 { margin: 15px 0 10px; font-size: clamp(43px,6vw,78px); line-height: .98; letter-spacing: -.055em; }
.reference-detail-copy > h2 { margin: 0 0 19px; color: var(--teal); font-size: clamp(20px,2.2vw,29px); font-weight: 750; }
.reference-detail-copy > p,.guide-header-copy > p { color: var(--text-2); font-size: 17px; max-width: 720px; }
.reference-detail-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 17px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(1,16,23,.9); color: #fff; }
.reference-detail-media figcaption span { margin-top: 4px; color: #bdd6d2; font-size: 10px; }
.reference-detail-content { display: grid; gap: 8px; }

.knowledge-hero-media { position: relative; }
.knowledge-hero-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 17px; display: flex; flex-direction: column; border-radius: 16px; background: rgba(1,16,23,.9); color: #fff; }
.knowledge-hero-media figcaption span { margin-top: 4px; color: #bdd6d2; font-size: 10px; }
.knowledge-summary-strip { border-block: 1px solid var(--border); background: rgba(1,13,20,.23); }
.knowledge-summary-strip .container { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.knowledge-summary-strip .container > div { min-height: 105px; padding: 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.knowledge-summary-strip .container > div:first-child { border-left: 1px solid var(--border); }
.knowledge-summary-strip strong { font-size: 17px; }
.knowledge-summary-strip span { margin-top: 5px; color: var(--muted); font-size: 10px; }
.knowledge-grid .knowledge-card { display: grid; grid-template-columns: minmax(190px,.78fr) minmax(0,1.22fr); }
.knowledge-card-media { position: relative; min-height: 320px; overflow: hidden; }
.knowledge-card-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.knowledge-card-media > span { position: absolute; left: 14px; top: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(1,16,23,.88); color: #8ee5da; font-size: 9px; font-weight: 900; }
.knowledge-card-body { padding: 27px; }
.knowledge-card-body .article-meta { display: flex; gap: 12px; color: var(--muted); font-size: 10px; }
.knowledge-card-body h2 { margin: 13px 0 11px; }
.knowledge-card-body h2 a { color: inherit; }
.compact-knowledge-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.compact-knowledge-grid .knowledge-card { grid-template-columns: 1fr; }
.compact-knowledge-grid .knowledge-card > img { min-height: 220px; height: 220px; }

.guide-header-media { min-height: 540px; margin: 0; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 32px; box-shadow: var(--shadow); }
.guide-header-media img { width: 100%; height: 540px; object-fit: cover; }
.guide-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.guide-meta span { padding: 8px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 10px; }
.guide-content-section { padding-top: 60px; }
.guide-content.prose > p:first-child { font-size: 20px; color: var(--text); }
.legal-note strong { display: block; margin-bottom: 8px; color: var(--text); }
.legal-note p { margin: 0; font-size: 12px; }
.official-sources ul { display: grid; gap: 12px; padding-left: 20px; }
.official-sources .icon { width: 15px; height: 15px; }
.compact-services { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.compact-service { min-height: 105px; padding: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; border: 1px solid var(--border); border-radius: 19px; background: var(--surface-soft); }
.compact-service > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--teal); background: rgba(107,216,203,.1); }
.compact-service > span .icon { width: 21px; height: 21px; }
.compact-service > div { display: flex; flex-direction: column; }
.compact-service strong { font-size: 14px; }
.compact-service small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.compact-service > .icon { width: 17px; height: 17px; color: var(--teal); }

@media (max-width:900px) {
  .reference-detail-grid,.guide-header-grid { grid-template-columns: 1fr; }
  .knowledge-summary-strip .container { grid-template-columns: repeat(2,1fr); }
  .knowledge-summary-strip .container > div:nth-child(2) { border-right: 1px solid var(--border); }
  .knowledge-summary-strip .container > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .compact-knowledge-grid { grid-template-columns: 1fr; }
}
@media (max-width:620px) {
  .reference-detail-media,.guide-header-media,.guide-header-media img { min-height: 400px; height: 400px; }
  .knowledge-summary-strip .container { grid-template-columns: 1fr; }
  .knowledge-summary-strip .container > div { border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .knowledge-summary-strip .container > div:last-child { border-bottom: 0; }
  .knowledge-grid .knowledge-card { grid-template-columns: 1fr; }
  .knowledge-card-media,.knowledge-card-media img { min-height: 250px; height: 250px; }
  .compact-services { grid-template-columns: 1fr; }
}

/* V5 - Belgeler, güncel referanslar ve kurumsal güven */
.certificate-hero-v5{overflow:hidden}
.certificate-standard-pills{display:flex;flex-wrap:wrap;gap:.55rem;margin:1.15rem 0 1.35rem}
.certificate-standard-pills span{display:inline-flex;align-items:center;padding:.55rem .8rem;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(255,255,255,.055);font-size:.78rem;font-weight:800;letter-spacing:.025em;color:var(--text)}
.certificate-hero-stack{position:relative;min-height:430px;display:flex;align-items:center;justify-content:center}
.certificate-stack-card{position:absolute;width:min(520px,88%);margin:0;border-radius:20px;overflow:hidden;border:1px solid rgba(255,255,255,.18);background:#fff;box-shadow:0 28px 70px rgba(0,0,0,.28);transition:transform .35s ease}
.certificate-stack-card img{display:block;width:100%;height:auto}
.certificate-stack-card figcaption{position:absolute;right:12px;bottom:12px;background:rgba(10,18,28,.88);color:#fff;padding:.5rem .72rem;border-radius:10px;font-size:.76rem;font-weight:800;backdrop-filter:blur(10px)}
.certificate-stack-1{z-index:3;transform:translate(0,0) rotate(-1deg)}
.certificate-stack-2{z-index:2;transform:translate(32px,-22px) rotate(3deg);opacity:.72}
.certificate-stack-3{z-index:1;transform:translate(-34px,24px) rotate(-4deg);opacity:.5}
.certificate-hero-stack:hover .certificate-stack-1{transform:translate(-8px,3px) rotate(-2deg)}
.certificate-hero-stack:hover .certificate-stack-2{transform:translate(44px,-28px) rotate(4deg)}
.certificate-hero-stack:hover .certificate-stack-3{transform:translate(-48px,32px) rotate(-5deg)}
.certificate-grid-v5{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.35rem}
.certificate-card-v5{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:var(--surface);box-shadow:var(--shadow-soft)}
.certificate-card-image{position:relative;display:block;aspect-ratio:1.414/1;overflow:hidden;background:#fff}
.certificate-card-image img{width:100%;height:100%;object-fit:contain;transition:transform .4s ease}
.certificate-card-image:hover img{transform:scale(1.025)}
.certificate-card-image>span{position:absolute;right:14px;bottom:14px;display:flex;align-items:center;gap:.4rem;padding:.58rem .72rem;border-radius:12px;background:rgba(10,18,28,.9);color:#fff;font-size:.76rem;font-weight:800;backdrop-filter:blur(9px)}
.certificate-card-body{padding:1.25rem 1.3rem 1.4rem}
.certificate-card-body h2{font-size:clamp(1.25rem,2vw,1.65rem);margin:.45rem 0 .65rem}
.certificate-card-body p{color:var(--muted);margin:0 0 1rem}
.certificate-standard{display:inline-flex;padding:.36rem .62rem;border-radius:999px;background:rgba(214,170,74,.1);border:1px solid rgba(214,170,74,.26);font-size:.75rem;font-weight:850;color:var(--accent)}
.certificate-info-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;margin:0}
.certificate-info-list div{padding:.7rem .75rem;border-radius:12px;border:1px solid var(--line);background:var(--surface-2)}
.certificate-info-list dt{font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.certificate-info-list dd{margin:.18rem 0 0;font-size:.86rem;font-weight:800;color:var(--text)}
.home-certificates-v5{display:grid;grid-template-columns:.9fr 1.1fr;gap:2rem;align-items:center;padding:clamp(1.5rem,4vw,2.6rem);border:1px solid var(--line);border-radius:28px;background:linear-gradient(145deg,var(--surface),var(--surface-2));box-shadow:var(--shadow-soft)}
.home-certificate-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}
.home-certificate-mini{display:grid;grid-template-columns:94px 1fr;gap:.8rem;align-items:center;padding:.65rem;border:1px solid var(--line);border-radius:16px;background:var(--surface);transition:transform .25s ease,border-color .25s ease}
.home-certificate-mini:hover{transform:translateY(-3px);border-color:rgba(214,170,74,.45)}
.home-certificate-mini img{width:94px;height:67px;object-fit:contain;border-radius:9px;background:#fff}
.home-certificate-mini span{display:flex;flex-direction:column;gap:.15rem}
.home-certificate-mini strong{font-size:.86rem;color:var(--text)}
.home-certificate-mini small{font-size:.69rem;line-height:1.35;color:var(--muted)}
.reference-project-grid .project-card-media img{background:var(--surface-2)}
.project-facts-mini{display:flex;flex-wrap:wrap;gap:.45rem;margin:.85rem 0}
.project-facts-mini span{display:flex;flex-direction:column;padding:.45rem .58rem;border-radius:10px;background:var(--surface-2);border:1px solid var(--line)}
.project-facts-mini small{font-size:.62rem;text-transform:uppercase;letter-spacing:.06em;color:var(--muted)}
.project-facts-mini strong{font-size:.82rem;color:var(--text)}

@media (max-width:900px){
 .certificate-hero-stack{min-height:340px;margin-top:1rem}
 .certificate-grid-v5,.home-certificates-v5{grid-template-columns:1fr}
 .home-certificate-mini-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:620px){
 .certificate-hero-stack{min-height:270px}
 .certificate-stack-card{width:94%}
 .certificate-stack-2{transform:translate(16px,-12px) rotate(2deg)}
 .certificate-stack-3{transform:translate(-18px,15px) rotate(-3deg)}
 .certificate-grid-v5,.home-certificate-mini-grid{grid-template-columns:1fr}
 .certificate-info-list{grid-template-columns:1fr 1fr}
 .home-certificate-mini{grid-template-columns:82px 1fr}
 .home-certificate-mini img{width:82px;height:58px}
}
