:root {
  --navy: #0d2338;
  --green: #0f7a59;
  --green-dark: #12352e;
  --teal: #0b8b94;
  --ink: #18211f;
  --muted: #63736e;
  --line: #dce7e2;
  --soft: #f5faf7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 35, 56, .12);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', Arial, Helvetica, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar { display: flex; align-items: center; justify-content: flex-end; gap: 24px; min-height: 42px; padding: 8px clamp(20px, 5vw, 72px); background: var(--navy); color: #dbeafe; font-size: 14px; font-weight: 700; }
.topbar a { color: #eef8f5; }
.topbar-wa { padding: 6px 10px; border-radius: 8px; background: var(--green); color: #fff !important; }
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(20px, 5vw, 72px); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0; color: var(--navy); }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span:last-child { overflow-wrap: anywhere; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 8px; background: var(--green); color: #fff; font-size: 28px; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 15px; font-weight: 800; color: var(--navy); }
.site-nav a:hover { color: var(--green); }
.nav-group { position: relative; padding: 14px 0; }
.dropdown { position: absolute; top: 100%; left: -18px; min-width: 240px; display: none; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.dropdown.wide { min-width: 330px; columns: 1; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--navy); }
.dropdown a:hover { background: var(--soft); }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown { display: block; }
.nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 8px; font-weight: 800; }
.nav-cta, .btn.primary { color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(15,107,85,.22); }
.btn.ghost { color: var(--green-dark); border: 1px solid var(--line); background: #fff; }
.nav-toggle { display: none; border: 0; background: var(--soft); border-radius: 8px; width: 44px; height: 44px; font-size: 22px; }
.hero { min-height: calc(100vh - 124px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: clamp(32px, 6vw, 86px); padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px); background: linear-gradient(120deg, #fff 0%, #fff 56%, var(--soft) 56%); }
.hero h1 { max-width: 880px; margin: 0; color: var(--navy); font-size: clamp(40px, 5.5vw, 72px); line-height: 1.04; letter-spacing: 0; }
.hero p { max-width: 650px; margin: 24px 0 0; font-size: 20px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; max-width: 760px; }
.hero-stats span { min-height: 62px; display: flex; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 8px; background: #fff; color: var(--navy); font-size: 14px; font-weight: 900; }
.hero-media { min-height: 480px; border-radius: 8px; background: linear-gradient(145deg, rgba(13,35,56,.86), rgba(15,122,89,.68)), repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.12) 45px 46px), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640'%3E%3Crect width='640' height='640' fill='%23f5faf7'/%3E%3Cpath d='M58 438h520v84H58z' fill='%230d2338' opacity='.22'/%3E%3Cpath d='M90 410c120-160 270-160 430-70' fill='none' stroke='%230f7a59' stroke-width='28' opacity='.24'/%3E%3Ccircle cx='430' cy='190' r='120' fill='%230b8b94' opacity='.18'/%3E%3C/svg%3E"); background-size: cover; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-media.image { width: 100%; height: 480px; object-fit: cover; }
.media-card { position: absolute; left: 28px; right: 28px; bottom: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.media-card span { display: grid; place-items: center; min-height: 76px; padding: 10px; border-radius: 8px; background: rgba(255,255,255,.92); color: var(--green-dark); font-weight: 800; text-align: center; }
.section { padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-head h2, .section h2, .cta h2, .page-hero h1, .detail h1 { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: 0; }
.section-head p, .service-category > p { max-width: 680px; color: var(--muted); margin: 10px 0 0; }
.category-grid, .service-grid, .post-grid, .why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.category-card, .service-card, .post-card, .why article { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .post-card:hover, .category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 8px; background: #e8f4ef; color: var(--green); font-weight: 900; }
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-box.small { width: 44px; height: 44px; margin-bottom: 12px; background: #eef7f8; color: var(--teal); }
.managed-placeholder { position: relative; display: grid; place-items: center; align-content: center; gap: 8px; overflow: hidden; text-align: center; color: var(--green-dark); background: linear-gradient(135deg, #e8f3ef, #f8fcfa); border: 1px dashed #b6cbc3; }
.managed-placeholder:before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(15,122,89,.05) 18px 20px); pointer-events: none; }
.managed-placeholder strong, .managed-placeholder span { position: relative; padding: 0 14px; }
.managed-placeholder strong { font-size: 16px; color: var(--navy); }
.managed-placeholder span { color: var(--muted); font-size: 13px; font-weight: 800; }
.image-placeholder, .detail-media { min-height: 180px; border-radius: 8px; margin-bottom: 20px; font-weight: 800; }
.image-placeholder.small { min-height: 140px; }
.content-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: 18px; border: 1px solid var(--line); }
.content-image.small { aspect-ratio: 16 / 9; }
.service-card span, .post-card time { color: var(--teal); font-size: 13px; font-weight: 800; }
h3 { margin: 8px 0 10px; color: var(--green-dark); font-size: 22px; line-height: 1.25; }
p { margin: 0 0 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; background: var(--navy); color: #e9f6f1; }
.split h2 { color: #fff; }
.split p { color: #d2e5df; font-size: 18px; }
.split.light { background: var(--soft); color: var(--ink); }
.split.light h2 { color: var(--navy); }
.split.light p { color: var(--muted); }
.split.light .technical-list span { background: #fff; border-color: var(--line); color: var(--navy); }
.affiliation { font-weight: 800; color: #fff !important; }
.technical-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.technical-list span { display: grid; place-items: center; min-height: 120px; border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-weight: 800; }
.corporate-image, .corporate-placeholder { width: 100%; min-height: 360px; border-radius: 8px; object-fit: cover; box-shadow: var(--shadow); }
.corporate-placeholder { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); border-color: rgba(255,255,255,.28); }
.corporate-placeholder strong { color: #fff; }
.corporate-placeholder span { color: #d2e5df; }
.why { background: var(--soft); }
.process ol { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.process li { counter-increment: steps; padding: 24px; border-left: 4px solid var(--green); background: var(--soft); border-radius: 8px; }
.process li:before { content: "0" counter(steps); display: block; color: var(--teal); font-weight: 900; margin-bottom: 18px; }
.process strong, .process span { display: block; }
.blog-strip { background: var(--soft); }
.cta { margin: clamp(40px, 6vw, 72px); padding: clamp(38px, 6vw, 70px); display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 8px; background: var(--green); color: #fff; background-size: cover; background-position: center; }
.cta h2 { color: #fff; max-width: 820px; }
.cta .btn { background: #fff; color: var(--green-dark); box-shadow: none; }
.footer { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; padding: 46px clamp(20px, 5vw, 72px); background: #081a2a; color: #d8e6e2; }
.footer h3 { color: #fff; font-size: 17px; margin-top: 0; }
.footer a { display: block; color: #d8e6e2; margin: 7px 0; }
.footer strong { display: block; color: #fff; font-size: 22px; margin-bottom: 12px; }
.footer-logo { width: 130px; max-height: 64px; object-fit: contain; margin-bottom: 14px; }
.footer-logo-placeholder { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #fff; }
.footer-logo-placeholder span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 8px; background: var(--green); font-weight: 900; }
.footer-logo-placeholder strong { font-size: 14px; margin: 0; color: #d8e6e2; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 18px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.page-hero { padding: clamp(58px, 8vw, 102px) clamp(20px, 5vw, 72px); background: var(--soft); }
.page-hero p, .detail-head p { max-width: 760px; color: var(--muted); font-size: 19px; }
.detail { padding: clamp(50px, 7vw, 86px) clamp(20px, 5vw, 72px); }
.detail-head { max-width: 900px; }
.detail-head a { color: var(--teal); font-weight: 800; }
.detail-media { min-height: 360px; margin-top: 34px; }
.detail-image { width: 100%; max-height: 520px; object-fit: cover; border-radius: 8px; margin: 34px 0; border: 1px solid var(--line); box-shadow: var(--shadow); }
.detail-content { max-width: 820px; font-size: 18px; }
.service-detail-section { max-width: 920px; margin-top: 38px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.service-detail-section h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.service-detail-section ul { margin: 0; padding-left: 20px; color: var(--muted); }
.service-detail-section li { margin: 10px 0; }
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; background: var(--soft); }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.faq p { margin-top: 10px; color: var(--muted); }
.service-cta { margin-top: 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; }
.contact-form { display: grid; gap: 14px; }
.map-section iframe { width: 100%; min-height: 360px; border: 0; border-radius: 8px; }
.form-success, .form-error { padding: 14px 16px; border-radius: 8px; font-weight: 800; }
.form-success { background: #e8f4ef; color: var(--green-dark); }
.form-error { background: #fee2e2; color: #7f1d1d; }
label { display: grid; gap: 6px; font-weight: 800; color: var(--green-dark); }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; font: inherit; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .topbar { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 74px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .nav-group { padding: 0; }
  .dropdown { position: static; display: block; min-width: 0; padding: 4px 0 0 12px; border: 0; box-shadow: none; }
  .hero, .split, .contact-grid, .footer { grid-template-columns: 1fr; }
  .hero { background: #fff; min-height: auto; }
  .category-grid, .service-grid, .post-grid, .why-grid, .process ol { grid-template-columns: 1fr; }
  .hero-media { min-height: 340px; }
  .hero-media.image { height: 340px; }
  .hero-stats { grid-template-columns: 1fr; }
  .media-card { grid-template-columns: 1fr; }
  .section-head, .cta { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-column: auto; flex-direction: column; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .category-grid, .service-grid, .post-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Homepage concept lock: matches the approved premium corporate reference. */
.topbar { display: none; }
.site-header {
  position: sticky;
  top: 0;
  padding: 18px max(42px, calc((100vw - 1280px) / 2 + 24px));
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(13,35,56,.06);
}
.brand img {
  width: 178px;
  height: auto;
  max-height: 52px;
}
.brand img + span {
  display: none;
}
.brand-mark { width: 48px; height: 48px; }
.site-nav { gap: 38px; font-size: 14px; font-weight: 700; }
.nav-cta { min-height: 42px; padding: 0 18px; border-radius: 4px; font-size: 13px; }
.hero {
  width: min(100%, 1280px);
  min-height: 560px;
  margin: 0 auto;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(42px, 5vw, 74px);
  padding: 34px 24px 42px;
  background: #fff;
}
.hero-copy { align-self: center; min-width: 0; padding-top: 0; }
.hero h1 {
  max-width: 590px;
  font-size: clamp(42px, 4.2vw, 64px);
  color: #0c4b33;
  line-height: 1.07;
  font-weight: 900;
  overflow-wrap: normal;
}
.hero p { max-width: 510px; margin-top: 24px; font-size: 16px; line-height: 1.8; }
.hero-actions { margin-top: 32px; }
.btn { min-height: 52px; border-radius: 4px; padding: 0 26px; font-size: 14px; }
.btn.primary { background: #07492f; }
.hero-media,
.hero-media.image {
  height: 585px;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}
.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 58px;
}
.hero-stats span {
  min-height: 0;
  padding: 0 0 0 34px;
  border: 0;
  background: transparent;
  color: #24322d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  position: relative;
}
.hero-stats span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 1.5px solid #0c6b47;
  border-radius: 4px;
}
.section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 48px 24px;
}
.section-head { justify-content: center; text-align: center; margin-bottom: 32px; }
.section-head h2, .section h2 { font-size: clamp(30px, 3vw, 42px); color: #111; }
.categories { padding-top: 0; }
.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e6eeea;
  border-radius: 8px;
  overflow: hidden;
}
.category-card {
  min-height: 200px;
  border: 0;
  border-right: 1px solid #e6eeea;
  border-radius: 0;
  padding: 34px 24px 28px;
  text-align: center;
  box-shadow: none;
}
.category-card:last-child { border-right: 0; }
.category-card .icon-box {
  margin: 0 auto 22px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #0b704d;
  border: 0;
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 112, 77, .16);
}
.category-card .icon-box svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}
.category-card h3 { font-size: 17px; color: #111; }
.category-card p { font-size: 13px; color: #66746e; }
.split {
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  padding: 36px 24px 64px;
  background: #fff;
  color: var(--ink);
}
.split h2 { max-width: 460px; color: #0c4b33; font-size: clamp(28px, 3.1vw, 42px); line-height: 1.12; }
.split p { max-width: 520px; color: #5d6d68; font-size: 15px; line-height: 1.8; }
.split .affiliation { color: #53645f !important; }
.corporate-image {
  min-height: 0;
  aspect-ratio: 7 / 4;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}
.why {
  width: 100%;
  max-width: none;
  background: #fbfcfc;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
}
.why .section-head p { display: none; }
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}
.why article {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 16px 16px 16px 78px;
  position: relative;
  border-radius: 8px;
  transition: background .2s ease, transform .2s ease;
}
.why article:hover {
  background: #fff;
  transform: translateY(-2px);
}
.why-icon {
  position: absolute;
  left: 0;
  top: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid #d6e7e0;
  background: #fff;
  color: #0b704d;
}
.why-icon svg,
.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why article h3 { font-size: 15px; color: #17342c; }
.why article p { font-size: 13px; color: #66746e; }
.process { text-align: center; }
.process ol {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
}
.process li {
  border: 0;
  background: linear-gradient(180deg, #fff, #f8fcfa);
  padding: 88px 18px 20px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(13, 35, 56, .05);
}
.process-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  border: 0;
  background: #0b704d;
  color: #fff;
  box-shadow: 0 16px 34px rgba(11, 112, 77, .18);
}
.process li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 54px);
  width: calc(100% - 70px);
  height: 1px;
  background: linear-gradient(90deg, #b8d8cd, transparent);
}
.process strong { color: #17342c; font-size: 15px; }
.process span { color: #66746e; font-size: 13px; line-height: 1.6; }
.featured { padding-top: 36px; }
.featured .section-head { margin-bottom: 24px; }
.featured .section-head a { display: none; }
.featured .service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.featured .service-card {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #06351f;
  color: #fff;
  position: relative;
}
.featured .service-card .icon-box,
.featured .service-card > span { display: none; }
.featured .service-card .content-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: .72;
}
.featured .service-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,41,28,.08), rgba(5,41,28,.92));
}
.featured .service-card h3,
.featured .service-card p {
  position: relative;
  z-index: 1;
  margin-left: 18px;
  margin-right: 18px;
}
.featured .service-card h3 { margin-top: 132px; color: #fff; font-size: 18px; }
.featured .service-card p { color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.55; }
.home-final {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
  padding-top: 30px;
}
.home-final .blog-strip {
  background: #fff;
  padding: 0;
}
.home-final .section-head {
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 18px;
}
.home-final .section-head h2 { font-size: 26px; }
.home-final .post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.home-final .post-card {
  border: 1px solid #e3eee9;
  border-radius: 8px;
  padding: 16px 18px 16px 64px;
  box-shadow: none;
  position: relative;
  background: linear-gradient(180deg, #fff, #fbfefd);
  margin-bottom: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.home-final .post-card:hover {
  border-color: #b9d9cd;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 35, 56, .07);
}
.post-icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef8f4;
  color: #0b704d;
}
.post-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-final .post-card h3 { font-size: 15px; margin: 0 0 4px; }
.home-final .post-card p { display: none; }
.home-final .cta {
  margin: 0;
  min-height: 290px;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(54, 202, 154, .22), transparent 34%),
    linear-gradient(135deg, #063b27 0%, #075237 56%, #04301f 100%);
}
.home-final .cta:before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}
.home-final .cta:after {
  content: "";
  position: absolute;
  right: 48px;
  bottom: 42px;
  width: 115px;
  height: 150px;
  border-right: 1.5px solid rgba(255, 255, 255, .18);
  border-top: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 0 100% 0 0;
  transform: rotate(-22deg);
}
.home-final .cta h2 { font-size: clamp(28px, 3vw, 40px); max-width: 560px; }
.home-final .cta p { max-width: 520px; color: rgba(255,255,255,.82); }
.home-final .cta h2,
.home-final .cta p,
.home-final .cta .hero-actions {
  position: relative;
  z-index: 1;
}
.footer {
  max-width: none;
  margin-top: 28px;
  background: linear-gradient(135deg, #06351f, #082819);
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
}
@media (max-width: 1100px) {
  .category-grid, .featured .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero, .split, .home-final { grid-template-columns: 1fr; }
  .hero-media, .hero-media.image { height: 430px; }
}
@media (max-width: 700px) {
  .site-header { padding: 14px 18px; }
  .brand img { width: 150px; }
  .hero { padding: 32px 18px; }
  .hero h1 { font-size: 38px; }
  .hero-stats, .why-grid, .process ol, .category-grid, .featured .service-grid { grid-template-columns: 1fr; }
  .category-card { border-right: 0; border-bottom: 1px solid #e6eeea; }
  .featured .service-card h3 { margin-top: 150px; }
}

/* Sitewide QA polish: service lists, detail pages, and mobile consistency. */
.service-category {
  padding-top: 56px;
}
.service-category > h2,
.related-services > h2 {
  color: #0b3f2b;
  font-size: clamp(28px, 3vw, 40px);
}
.service-category > p {
  margin-bottom: 26px;
  font-size: 16px;
}
.service-category .service-grid,
.related-services .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.service-category .service-card,
.related-services .service-card,
.blog-strip .post-card,
.post-grid .post-card {
  min-width: 0;
}
.service-category .service-card,
.related-services .service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border-color: #d8e7e1;
  box-shadow: 0 12px 28px rgba(13, 35, 56, .05);
}
.service-category .service-card:hover,
.related-services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(13, 35, 56, .11);
}
.service-category .icon-box.small,
.related-services .icon-box.small {
  display: none;
}
.service-category .content-image.small,
.related-services .content-image.small,
.post-grid .content-image.small {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  margin-bottom: 18px;
  object-fit: cover;
  background: #eef6f2;
}
.service-category .service-card h3,
.related-services .service-card h3 {
  margin-top: 0;
  color: #092f22;
  font-size: 21px;
}
.service-category .service-card p,
.related-services .service-card p {
  color: #3f504b;
  font-size: 15px;
}
.related-services {
  padding-top: 34px;
}
.detail {
  width: min(100%, 1120px);
  margin: 0 auto;
}
.detail-head h1 {
  color: #0b3f2b;
  font-size: clamp(34px, 4.4vw, 58px);
}
.detail-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: none;
  object-fit: cover;
}
.detail-content,
.service-detail-section {
  margin-left: auto;
  margin-right: auto;
}
.service-detail-section {
  box-shadow: 0 12px 28px rgba(13, 35, 56, .04);
}
.service-detail-section h2 {
  color: #0b3f2b;
}

/* Premium service landing pages. */
.service-landing {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 42px 24px 20px;
}
.service-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  min-height: 0;
}
.service-breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0b704d;
  font-size: 13px;
  font-weight: 800;
}
.service-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid #d5e8e0;
  border-radius: 999px;
  background: #f4fbf8;
  color: #0b704d;
  font-size: 13px;
  font-weight: 900;
}
.service-label svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-hero h1 {
  max-width: 690px;
  margin: 0;
  color: #082f22;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}
.service-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #526760;
  font-size: 17px;
  line-height: 1.85;
}
.service-hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #eef6f2;
  box-shadow: 0 24px 60px rgba(13, 35, 56, .13);
}
.service-hero-media img,
.service-hero-media .detail-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 48, 31, .28));
  pointer-events: none;
}
.service-quick-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(5, 58, 38, .94);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}
.service-quick-card strong,
.service-quick-card span {
  display: block;
}
.service-quick-card strong {
  font-size: 16px;
  margin-bottom: 6px;
}
.service-quick-card span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.55;
}
.service-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 62px;
  overflow: hidden;
  border: 1px solid #dbeae4;
  border-radius: 8px;
}
.service-proof span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid #dbeae4;
  color: #0b3f2b;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.service-proof span:last-child {
  border-right: 0;
}
.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0b704d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-overview {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
  padding: 34px;
  border-radius: 8px;
  background: #f7fbf9;
  border: 1px solid #dbeae4;
}
.service-overview h2,
.service-block-head h2,
.service-panel h2,
.service-faq h2 {
  margin: 0;
  color: #082f22;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}
.service-overview p {
  margin: 0;
  color: #40544e;
  font-size: 18px;
  line-height: 1.85;
}
.service-block,
.service-faq {
  margin-bottom: 64px;
}
.service-block-head {
  max-width: 760px;
  margin-bottom: 26px;
}
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-feature-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #dbeae4;
  background: #fff;
  box-shadow: 0 14px 30px rgba(13, 35, 56, .05);
}
.service-feature-grid article span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #0b704d;
  font-size: 13px;
  font-weight: 900;
}
.service-feature-grid article p {
  margin: 0;
  color: #33443f;
  font-size: 15px;
  line-height: 1.7;
}
.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 64px;
}
.service-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid #dbeae4;
  background: #fff;
}
.service-panel.dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(44, 196, 148, .18), transparent 34%),
    linear-gradient(135deg, #063b27, #082f22);
  color: #fff;
}
.service-panel.dark h2,
.service-panel.dark .section-kicker {
  color: #fff;
}
.service-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.service-panel li {
  position: relative;
  padding-left: 28px;
  color: #40544e;
  line-height: 1.7;
}
.service-panel.dark li {
  color: rgba(255, 255, 255, .82);
}
.service-panel li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b704d;
  box-shadow: 0 0 0 5px #e8f5f0;
}
.service-panel.dark li:before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.14);
}
.clean-cta {
  flex-direction: column;
  align-items: flex-start;
}
.clean-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.service-index-hero {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: 34px;
  align-items: end;
  background:
    radial-gradient(circle at 90% 10%, rgba(28, 156, 113, .12), transparent 30%),
    #f7fbf9;
}
.service-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.service-category-nav a {
  padding: 10px 13px;
  border: 1px solid #d4e6df;
  border-radius: 999px;
  background: #fff;
  color: #0b3f2b;
  font-size: 13px;
  font-weight: 800;
}
.service-category-nav a:hover {
  border-color: #0b704d;
  color: #0b704d;
}
.managed-content {
  max-width: 880px;
}
.managed-content h2 {
  margin: 34px 0 14px;
  color: #0b3f2b;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.2;
}
.managed-content p {
  margin-bottom: 18px;
  color: #33443f;
  font-size: 18px;
  line-height: 1.85;
}
.managed-content ul {
  margin: 14px 0 24px;
  padding: 22px 26px 22px 44px;
  border: 1px solid #d8e7e1;
  border-radius: 8px;
  background: #f7fbf9;
}
.managed-content li {
  margin: 9px 0;
  color: #33443f;
  font-size: 17px;
}
.blog-strip .post-card:hover,
.post-grid .post-card:hover {
  transform: none;
}

@media (max-width: 1180px) {
  .service-category .service-grid,
  .related-services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process li:not(:last-child):after {
    display: none;
  }
  .service-hero,
  .service-overview,
  .service-two-col,
  .service-index-hero {
    grid-template-columns: 1fr;
  }
  .service-feature-grid,
  .service-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-proof span:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }
  .site-nav {
    top: 68px;
  }
  .hero-copy {
    padding-top: 8px;
  }
  .hero-media,
  .hero-media.image {
    order: -1;
    height: 320px;
  }
  .hero h1 {
    max-width: 720px;
    font-size: clamp(38px, 8vw, 54px);
  }
  .hero p {
    max-width: 680px;
  }
  .split {
    padding: 42px 20px;
  }
  .corporate-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .home-final .cta {
    min-height: 240px;
  }
  .detail-image {
    aspect-ratio: 16 / 10;
  }
  .service-landing {
    padding-top: 28px;
  }
  .service-hero {
    gap: 26px;
  }
  .service-hero-media {
    order: -1;
  }
  .service-hero h1 {
    font-size: clamp(34px, 8vw, 48px);
  }
  .service-overview {
    padding: 24px;
  }
  .service-category-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .page-hero,
  .detail,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .site-nav {
    left: 14px;
    right: 14px;
  }
  .service-category .service-grid,
  .related-services .service-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }
  .service-category .service-card,
  .related-services .service-card {
    padding: 16px;
  }
  .service-category .service-card h3,
  .related-services .service-card h3 {
    font-size: 19px;
  }
  .detail-head h1 {
    font-size: 32px;
  }
  .hero {
    gap: 24px;
  }
  .hero-media,
  .hero-media.image {
    height: 240px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }
  .split h2 {
    font-size: 30px;
  }
  .corporate-image {
    aspect-ratio: 4 / 3;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
  }
  .service-detail-section {
    padding: 20px;
  }
  .why article {
    padding-left: 70px;
  }
  .why-icon {
    width: 50px;
    height: 50px;
  }
  .process li {
    padding-top: 82px;
  }
  .managed-content p,
  .managed-content li {
    font-size: 16px;
  }
  .managed-content ul {
    padding: 18px 18px 18px 34px;
  }
  .footer {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .service-landing {
    padding-left: 18px;
    padding-right: 18px;
  }
  .service-hero-media {
    aspect-ratio: 4 / 3;
  }
  .service-quick-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .service-proof,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }
  .service-proof span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #dbeae4;
  }
  .service-proof span:last-child {
    border-bottom: 0;
  }
  .service-feature-grid article {
    min-height: auto;
  }
}

/* ═══════════════════════════════════════════
   Design Refresh — typography, interactions, polish
   ═══════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* Heading tightening — Inter'in avantajını kullanır */
h1, h2, h3 { letter-spacing: -0.02em; font-optical-sizing: auto; }
.hero h1 { letter-spacing: -0.03em; }
.section-head h2, .section h2, .cta h2, .page-hero h1, .detail h1 { letter-spacing: -0.025em; }

/* ── Butonlar ── */
.btn, .nav-cta {
  transition: background .2s ease, transform .18s ease, box-shadow .2s ease,
              border-color .2s ease, color .2s ease;
}
.btn.primary:hover, .nav-cta:hover {
  background: #0a6646;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 107, 85, .3);
}
.btn.primary:active, .nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(15, 107, 85, .2);
}
.btn.ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--soft);
}

/* ── Nav linkleri — altçizgi animasyonu ── */
.site-nav > a:not(.nav-cta) {
  position: relative;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .22s ease;
}
.site-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}

/* ── Dropdown — görünürlük animasyonu ── */
.dropdown {
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  display: block !important;
}
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
@media (max-width: 900px) {
  .dropdown {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Kartlar — daha akıcı geçiş ── */
.category-card, .service-card, .post-card {
  transition: transform .24s ease, box-shadow .24s ease;
}
.service-card:hover, .post-card:hover, .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(13, 35, 56, .13);
}
.why article {
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

/* ── Process adımları hover ── */
.process li {
  transition: transform .22s ease, box-shadow .22s ease;
}
.process li:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(13, 35, 56, .1);
}

/* ── Form focus durumları ── */
input, textarea, select {
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #0b704d;
  box-shadow: 0 0 0 3px rgba(11, 112, 77, .13);
}

/* ── Footer link hover ── */
.footer a {
  transition: color .18s ease;
}
.footer a:hover { color: #fff; }

/* ── Brand geçişi ── */
.brand { transition: opacity .18s ease; }
.brand:hover { opacity: .82; }

/* ── WhatsApp butonu ── */
.topbar-wa {
  transition: background .18s ease, transform .18s ease;
}
.topbar-wa:hover {
  background: #0a6646;
  transform: translateY(-1px);
}

/* ── Metin seçim rengi ── */
::selection {
  background: rgba(15, 122, 89, .18);
  color: #082f22;
}

/* ── Özel scrollbar (webkit) ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f5faf7; }
::-webkit-scrollbar-thumb { background: #b8d4c8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #0b704d; }

/* ── Service landing hover ── */
.service-feature-grid article {
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(13, 35, 56, .1);
}
.service-category-nav a {
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

/* ── Hizmet kartı (service-card) anasayfa grid ── */
.featured .service-card {
  transition: transform .24s ease, box-shadow .24s ease, opacity .24s ease;
}
.featured .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(13, 35, 56, .2);
}

/* ── Genel link odak erişilebilirliği ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid #0b704d;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   Görsellendirme — dekoratif elementler, derinlik, vurgu
   ═══════════════════════════════════════════ */

/* ── Section h2 üst aksanı (renkli kısa çizgi) ── */
.section-head h2 {
  position: relative;
  padding-top: 22px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0f7a59, #0b8b94);
  border-radius: 2px;
}
/* Sol hizalı section-head'lerde sola yasla */
.home-final .section-head h2::before,
.section-head.left h2::before {
  left: 0;
  transform: none;
}

/* ── Butonlara gradient ── */
.btn.primary, .nav-cta {
  background: linear-gradient(135deg, #0f7a59 0%, #0b8b94 100%);
}
.btn.primary:hover, .nav-cta:hover {
  background: linear-gradient(135deg, #0b6948 0%, #097e87 100%);
}

/* ── Hero arka plan dekorasyon ── */
.hero {
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 122, 89, .07) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 139, 148, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Hero-copy z-index (dekorasyon arkaya itmek için) ── */
.hero-copy, .hero-media {
  position: relative;
  z-index: 1;
}

/* ── Kategori kartı — üst renkli çizgi hover ── */
.category-card {
  border-top: 3px solid transparent;
  transition: border-top-color .22s ease, transform .24s ease, box-shadow .24s ease;
}
.category-card:hover {
  border-top-color: var(--green);
}
.category-card .icon-box {
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.category-card:hover .icon-box {
  transform: scale(1.1);
  background: linear-gradient(145deg, #d0ecdf, #e4f6ef);
  box-shadow: 0 6px 18px rgba(15, 122, 89, .16);
}

/* ── Neden Faraday — nokta desen arka planı ── */
.why {
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 112, 77, .08) 1px, transparent 0);
  background-size: 26px 26px;
}
/* Sol aksanı (hover'da görünür) */
.why article::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--teal));
  border-radius: 2px;
  opacity: 0;
  transition: opacity .22s ease;
}
.why article:hover::before {
  opacity: 1;
}

/* ── Process adımı — arka plan filigranı sayısı ── */
.process li {
  overflow: hidden;
}
.process li::before {
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-size: 82px;
  line-height: 1;
  margin: 0;
  color: rgba(11, 112, 77, .065);
  pointer-events: none;
}

/* ── Blog kart ikonu — hover renk değişimi ── */
.post-icon {
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.post-card:hover .post-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

/* ── Hizmet kartı sol aksanı (hizmetler sayfası) ── */
.service-category .service-card,
.related-services .service-card {
  border-left: 3px solid transparent;
  transition: border-left-color .22s ease, transform .24s ease, box-shadow .24s ease;
}
.service-category .service-card:hover,
.related-services .service-card:hover {
  border-left-color: var(--green);
}

/* ── İkon kutuları (küçük, hizmet kartlarındaki) hover ── */
.icon-box.small {
  transition: background .22s ease, transform .22s ease;
}
.service-category .service-card:hover .icon-box.small,
.related-services .service-card:hover .icon-box.small {
  background: #d4eaf6;
  transform: scale(1.08);
}

/* ── Section-kicker küçük çizgi prefiksi ── */
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Sayfa hero alt degrade çizgisi ── */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal), transparent 75%);
  pointer-events: none;
}

/* ── Footer üst renkli çizgi ── */
.footer {
  border-top: 3px solid var(--green);
}

/* ── Service hero medya — sıcak renk overlay ── */
.service-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 65%, rgba(11, 139, 148, .2), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero stats — kademeli giriş animasyonu ── */
@media (prefers-reduced-motion: no-preference) {
  .hero-stats span {
    animation: statFadeUp .5s ease both;
  }
  .hero-stats span:nth-child(1) { animation-delay: .08s; }
  .hero-stats span:nth-child(2) { animation-delay: .18s; }
  .hero-stats span:nth-child(3) { animation-delay: .28s; }
}
@keyframes statFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Featured hizmet kartı — gradient parlaması ── */
.featured .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 122, 89, .18), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.featured .service-card:hover::before {
  opacity: 1;
}

/* ── Service proof (kanıt) — ikon prefix ── */
.service-proof span::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

/* ── Anasayfa hero stats kutucuk sol aksanı renk değişimi ── */
.hero-stats span:hover {
  border-left-color: var(--green);
  background: linear-gradient(90deg, rgba(15, 122, 89, .04), transparent);
  transition: border-left-color .2s ease, background .2s ease;
}

/* ── CTA blok — ikinci buton hover ── */
.cta .btn:hover {
  background: var(--soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}
.cta .btn {
  transition: background .2s ease, transform .18s ease, box-shadow .2s ease;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM MİNİMAL — Icon, kart ve layout tam revizyonu
   Referans: marangozcu.com.tr
   ═══════════════════════════════════════════════════════ */

/* ── 1. Icon-box komple yeniden tasarım (dolu renk yok) ── */
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #cce6d8;
  color: #0b704d;
  box-shadow: 0 2px 10px rgba(11, 112, 77, .09);
}
.icon-box svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.5;
}
.icon-box.small {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f6fdf9;
  border: 1px solid #cce6d8;
  box-shadow: none;
  color: #0b704d;
}
.icon-box.small svg {
  width: 18px;
  height: 18px;
}
/* Önceki icon-box hover efektlerini sıfırla */
.category-card .icon-box {
  display: none;
}
.category-card:hover .icon-box,
.service-card:hover .icon-box,
.service-category .service-card:hover .icon-box.small,
.related-services .service-card:hover .icon-box.small {
  transform: none;
  box-shadow: none;
}

/* ── 2. Kategori kartları — ikonsuz, numaralı, sol hizalı ── */
.category-grid {
  counter-reset: cat;
}
.category-card {
  counter-increment: cat;
  text-align: left;
  padding: 36px 28px 30px;
  border-top: 3px solid transparent;
  transition: border-top-color .22s ease, background .22s ease;
}
.category-card:hover {
  border-top-color: #0b704d;
  background: #f8fdfb;
}
.category-card::before {
  content: "0" counter(cat);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: #0b704d;
  margin-bottom: 20px;
  line-height: 1;
}
.category-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0d2318;
  margin: 0 0 10px;
  line-height: 1.35;
}
.category-card p {
  font-size: 13px;
  color: #65756d;
  line-height: 1.7;
  margin: 0;
}

/* ── 3. Neden Faraday — ikon rounded rectangle, daha sade ── */
.why {
  background-image: none;
  background: #f8fafb;
}
.why article::before {
  display: none; /* önceki sol aksan çizgiyi kaldır */
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #cce6d8;
  background: #fff;
  color: #0b704d;
  box-shadow: 0 2px 8px rgba(11, 112, 77, .08);
  top: 14px;
  left: 0;
}
.why-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.5;
}
.why article {
  padding: 16px 16px 16px 60px;
}
.why article h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0d2318;
  margin: 0 0 6px;
}
.why article p {
  font-size: 13px;
  color: #65756d;
  line-height: 1.68;
  margin: 0;
}

/* ── 4. Process adımları — ikon gizli, temiz numara etiketi ── */
.process-icon {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.process li {
  padding: 32px 24px 26px;
  text-align: left;
  overflow: visible;
}
.process li:not(:last-child)::after {
  display: none;
}
/* Watermark özelliklerini sıfırla → küçük üst etiket */
.process li::before {
  position: static;
  right: auto;
  bottom: auto;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #0b704d;
  pointer-events: auto;
  opacity: 1;
}
.process strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #0d2318;
  margin-bottom: 8px;
}
.process span {
  display: block;
  font-size: 13px;
  color: #65756d;
  line-height: 1.68;
}
.process li:hover {
  transform: translateY(-3px);
}

/* ── 5. Hero stats — checkbox stili kaldır, temiz chip ── */
.hero-stats span {
  position: static;
  padding: 12px 18px;
  border: 1px solid #d0e8df;
  border-left: 1px solid #d0e8df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 112, 77, .07);
  font-size: 13px;
  font-weight: 800;
  color: #0d2318;
  line-height: 1.5;
  min-height: 0;
}
.hero-stats span::before {
  content: none;
}
.hero-stats span:hover {
  border-left-color: #d0e8df;
  background: #fff;
}

/* ── 6. Hizmet kartları (liste sayfaları) — temiz border ── */
.service-category .service-card,
.related-services .service-card {
  border: 1px solid #dde8e2;
  border-left: 1px solid #dde8e2;
  border-radius: 10px;
}
.service-category .service-card:hover,
.related-services .service-card:hover {
  border-left-color: #dde8e2;
  border-color: #c2ddd3;
}

/* ── 7. Tipografi güçlendirme ── */
h1, h2 { font-weight: 900; }
.page-hero h1 { letter-spacing: -0.03em; }
.detail h1  { letter-spacing: -0.03em; }
.service-hero h1 { letter-spacing: -0.03em; }

/* ── 8. Hero arka plan — çok hafif tonu ── */
.hero {
  background: #fafcfb;
}

/* ── 9. Mobil düzeltmeler ── */
@media (max-width: 700px) {
  .category-card { border-top-width: 2px; }
  .process li { padding: 24px 18px 20px; }
  .why article { padding: 14px 12px 14px 56px; }
}

/* ════════════════════════════════════════════════════
   TOPLU DÜZELTMELER — renk, buton, başlık, CTA, lacivert
   ════════════════════════════════════════════════════ */

/* ── 1. CTA başlık rengi — section h2 color:#111 override'ını geri al ── */
.cta h2,
.home-final .cta h2,
.service-panel.dark h2,
.service-panel.dark .section-kicker { color: #fff !important; }

/* ── 2. CTA arka plan → lacivert (logodaki ton) ── */
.cta {
  background: linear-gradient(135deg, #0d2338 0%, #122d48 100%);
}
.home-final .cta {
  background:
    radial-gradient(circle at 85% 25%, rgba(15, 122, 89, .16), transparent 38%),
    linear-gradient(135deg, #0d2338 0%, #122d48 60%, #091d2e 100%);
}
/* CTA pseudo-elementleri logoda gözüken ton ile uyumlu */
.home-final .cta:before {
  border-color: rgba(255, 255, 255, .1);
}
.home-final .cta:after {
  border-right-color: rgba(255, 255, 255, .14);
  border-top-color: rgba(255, 255, 255, .14);
}

/* Hizmet sayfası CTA (clean-cta) de lacivert */
.service-hero + * .cta,
.service-landing .cta,
.cta.clean-cta {
  background: linear-gradient(135deg, #0d2338 0%, #122d48 100%);
}

/* Hizmet dark panel de lacivert tona geçsin */
.service-panel.dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(15, 122, 89, .14), transparent 34%),
    linear-gradient(135deg, #0d2338, #122d48);
}
.service-panel.dark li { color: rgba(255, 255, 255, .85); }
.service-panel.dark li:before {
  background: #4ecb96;
  box-shadow: 0 0 0 5px rgba(78, 203, 150, .15);
}

/* ── 3. CTA butonları lacivert üzerine uyumlu ── */
.cta .btn {
  background: #fff;
  color: #0d2338;
  font-weight: 800;
}
.cta .btn:hover {
  background: #e8f4ef;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}
/* Yeşil primary buton lacivert arka plan üzerinde */
.cta .btn.primary,
.cta .nav-cta {
  background: #0f7a59;
  color: #fff;
}
.cta .btn.primary:hover,
.cta .nav-cta:hover {
  background: #0a6646;
  transform: translateY(-1px);
}

/* ── 4. Ghost buton (genel) — belirgin hale getir ── */
.btn.ghost {
  border: 2px solid #0c5c38;
  color: #0c5c38;
  background: transparent;
  font-weight: 800;
}
.btn.ghost:hover {
  background: #0c5c38;
  color: #fff;
  border-color: #0c5c38;
}
/* CTA içindeki ghost buton (lacivert bg üzerinde) */
.cta .btn.ghost {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}
.cta .btn.ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* ── 5. Split / kurumsal bölüm başlık + kicker + badge ── */
.split-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0b704d;
  background: rgba(11, 112, 77, .08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.split h2 {
  font-size: clamp(26px, 2.8vw, 40px) !important;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #07211a;
  max-width: 520px;
}
.corporate-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.corporate-wrap .corporate-image {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  padding: 16px 20px;
  background: rgba(5, 18, 12, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top-right-radius: 10px;
}
.corp-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.corp-badge-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.corp-badge-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #4ecb96;
}
.corp-badge-row strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.corp-badge-row span {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  margin-top: 1px;
}

/* ── 6. Footer renk lacivert ile uyumlu hale ── */
.footer {
  background: linear-gradient(160deg, #0a1e30 0%, #07182a 100%);
  border-top-color: #0f7a59;
}

/* ── 7. Hizmet sayfası genel buton (ghost beyaz bg üzerinde) ── */
.service-landing .btn.ghost,
.service-hero .btn.ghost {
  border: 2px solid #0c5c38;
  color: #0c5c38;
}
.service-landing .btn.ghost:hover,
.service-hero .btn.ghost:hover {
  background: #0c5c38;
  color: #fff;
}

/* ── 8. Nav CTA gradient lacivert uyumlu ── */
.nav-cta, .btn.primary {
  background: #0d2338;
}
.nav-cta:hover, .btn.primary:hover {
  background: #0a1d2e;
  box-shadow: 0 14px 28px rgba(13, 35, 56, .35);
}
