:root {
  --bg: #f8fbfa;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --surface-mint: #e6f3ef;
  --surface-beige: #f6ecdf;
  --text: #1b3536;
  --muted: #5f7675;
  --brand: #2f7f79;
  --brand-dark: #245f5c;
  --line: #d9e8e4;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 30px rgba(36, 95, 92, 0.08);
  --shadow-mid: 0 18px 45px rgba(36, 95, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(700px 420px at 8% 6%, rgba(230, 243, 239, 0.75), transparent 60%),
    radial-gradient(620px 420px at 92% 12%, rgba(246, 236, 223, 0.65), transparent 62%),
    linear-gradient(180deg, #fafdfc 0%, #f7fbfa 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0 !important;
  margin: 0 !important;
  z-index: 120;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 232, 228, 0.9);
}

.nav-wrap {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 4vw, 2.8rem);
  transition: all 0.3s ease;
}

.header-logo {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.footer-brand-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .nav-wrap { min-height: 100px; }
  .header-logo { height: 75px; }
}

@media (max-width: 991px) {
  .nav-wrap { min-height: 90px; }
  .header-logo { height: 65px; }
}

@media (max-width: 768px) {
  .nav-wrap { min-height: 70px; }
  .header-logo { height: 55px; }
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 400px;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.18rem;
  flex-wrap: nowrap;
}

.nav-list li {
  flex-shrink: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.52rem 0.64rem;
  border-radius: 8px;
  color: #5b7473;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: color 0.22s ease;
  position: relative;
}

.nav-list a:hover {
  color: #274f50;
}

.nav-list a.active {
  color: #1f4a4b;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.64rem;
  right: 0.64rem;
  bottom: 0.15rem;
  height: 2px;
  background: #2f7f79;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list .nav-cta a {
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: linear-gradient(130deg, #1f5f66, #2f7f79);
  color: #fff;
  box-shadow: 0 8px 16px rgba(31, 95, 102, 0.25);
  font-weight: 700;
}

.nav-list .nav-cta a:hover {
  background: linear-gradient(130deg, #194f55, #286f69);
  color: #fff;
}

.nav-list .nav-cta a.active {
  background: linear-gradient(130deg, #194b50, #235f5c);
  box-shadow: 0 10px 20px rgba(31, 95, 102, 0.3);
}

.nav-list .nav-cta a::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: #2a6360;
  font-size: 1.15rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

main {
  padding-top: 0;
}

/* Global Typography */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  color: #1b3737;
}

h1 {
  font-size: clamp(2.1rem, 5.1vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.3vw, 2.45rem);
}

.lead {
  font-size: 1.06rem;
  color: #476262;
  max-width: 64ch;
}

.section {
  padding: clamp(2.4rem, 4.4vw, 4.2rem) 0;
}

.section-contrast {
  position: relative;
}

.section-catalog {
  background: linear-gradient(160deg, #1f4d52 0%, #2a6465 60%, #2f6f6e 100%);
  padding: clamp(1.9rem, 3.6vw, 3rem) 0;
}

.section-topics {
  background: linear-gradient(180deg, #f8fcfb 0%, #f3faf8 100%);
}

.section-process {
  background: linear-gradient(165deg, #183f44 0%, #225357 58%, #2a6162 100%);
}

.section-catalog .section-head h2,
.section-catalog .section-head p,
.section-process .section-head h2,
.section-process .section-head p {
  color: #ecf7f5;
}

.section-catalog .catalog-card,
.section-process .card {
  box-shadow: 0 10px 22px rgba(14, 37, 41, 0.16);
}

.section-process .pill {
  background: #d9eeea;
  color: #1f5758;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head p {
  margin: 0;
  color: #607877;
  max-width: 72ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: #edf6f4;
  border: 1px solid #d9ebe6;
  border-radius: 999px;
  color: #306764;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  padding: 0.42rem 0.86rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.22rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, #2f7f79, #489f99);
  box-shadow: 0 10px 24px rgba(47, 127, 121, 0.27);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: #2b5f5c;
  background: #fff;
  border: 1px solid #d8e8e4;
}

/* Reusable Cards */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(245, 250, 248, 0.96));
  border: 1px solid #dceae6;
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.card p {
  margin: 0;
  color: #5f7776;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.list li {
  position: relative;
  padding-left: 1.1rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66a89d;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: linear-gradient(170deg, #ffffff, #f7fbfa);
  border: 1px solid #dcebe7;
  border-radius: 18px;
  padding: 1rem 1.06rem;
  box-shadow: var(--shadow-soft);
}

.faq-item p {
  margin: 0;
  color: #5d7776;
}

.cta-band {
  background: linear-gradient(125deg, #2a6662, #3e918c);
  color: #eff9f7;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-mid);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  margin: 0;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: #edf6f3;
  border: 1px solid #dcebe7;
  border-radius: 999px;
  padding: 0.33rem 0.72rem;
  font-size: 0.82rem;
  color: #2f6663;
  font-weight: 600;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  border-radius: 22px;
  padding: 1rem;
  background: linear-gradient(150deg, #ffffff, #f6fbfa);
  border: 1px solid #dceae7;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  color: #255d5a;
}

/* Footer */
.site-footer {
  margin-top: 2.4rem;
  background: linear-gradient(180deg, #244447 0%, #203c40 55%, #1d373b 100%);
  color: #d6e5e2;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(32, 60, 63, 0), rgba(32, 60, 63, 0.12));
}

.footer-top {
  padding: 1.9rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.9fr 1fr 0.95fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.site-footer h4 {
  margin: 0 0 0.52rem;
  color: #edf6f4;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-brand p {
  margin: 0.28rem 0;
  color: #c4d8d4;
  max-width: 32ch;
  line-height: 1.58;
  font-size: 0.85rem;
}

.footer-trust {
  margin-top: 0.56rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: #bfd7d3;
  background: rgba(156, 203, 196, 0.11);
  border: 1px solid rgba(156, 203, 196, 0.18);
  border-radius: 999px;
  padding: 0.23rem 0.5rem;
}

.footer-trust svg {
  color: #9ecfc6;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.site-footer p {
  margin: 0.2rem 0;
  line-height: 1.58;
  font-size: 0.85rem;
}

.footer-list a {
  color: #cfe0dd;
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
  font-weight: 450;
  font-size: 0.85rem;
}

.footer-list {
  gap: 0.34rem;
}

.footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(165, 217, 207, 0.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-list a:hover {
  color: #e9f4f2;
}

.footer-list a:hover::after {
  transform: scaleX(1);
}

.footer-contact li,
.footer-hours li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #cadcda;
  line-height: 1.55;
  font-size: 0.84rem;
}

.footer-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ecdc4;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-cta {
  background: linear-gradient(150deg, rgba(111, 170, 160, 0.16), rgba(71, 127, 124, 0.18));
  border: 1px solid rgba(176, 223, 213, 0.16);
  border-radius: 14px;
  padding: 0.6rem 0.62rem;
  box-shadow: none;
  align-self: start;
  text-align: center;
}

.footer-cta p {
  color: #d8e9e6;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0.42rem;
}

.footer-cta .btn {
  padding: 0.44rem 0.72rem;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.58rem 0 0.68rem;
  font-size: 0.78rem;
  color: #bdd2cf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: inline-flex;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #bed5d1;
}

.footer-bottom-links a:hover {
  color: #e8f3f1;
}

/* Forms + Table */
form {
  display: grid;
  gap: 0.75rem;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #d7e7e2;
  border-radius: 12px;
  padding: 0.78rem 0.86rem;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe9e5;
}

th,
td {
  text-align: left;
  padding: 0.82rem;
  border-bottom: 1px solid #eaf2ef;
}

th {
  background: #f2f8f6;
  color: #335b58;
}

/* Homepage Open Layout */
.home-hero-open {
  position: relative;
  padding: clamp(1.4rem, 3.2vw, 2.2rem) 0 clamp(2.1rem, 4.1vw, 3.1rem);
  background: linear-gradient(180deg, #fbfefe 0%, #f6fbf9 100%);
  overflow: hidden;
}

/* Unified Inner Hero (About-like) */
.page-hero-full {
  position: relative;
  background:
    radial-gradient(720px 360px at 6% 8%, rgba(224, 242, 237, 0.78), transparent 72%),
    radial-gradient(620px 360px at 94% 12%, rgba(243, 235, 223, 0.62), transparent 72%),
    linear-gradient(180deg, #f9fdfc 0%, #f1f8f6 100%);
  padding: clamp(3.1rem, 6.4vw, 5.4rem) 0 clamp(2.7rem, 5.8vw, 4.2rem);
  overflow: hidden;
}

.page-hero-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.1rem, 3.4vw, 2.4rem);
  align-items: center;
}

.page-hero-bubbles {
  position: absolute;
  inset: -4% -2% -8% -2%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 255, 255, 0.28) 0 10.8%, transparent 11.8%),
    radial-gradient(circle at 23% 30%, rgba(178, 221, 209, 0.34) 0 12.6%, transparent 13.8%),
    radial-gradient(circle at 41% 14%, rgba(220, 238, 233, 0.3) 0 10.6%, transparent 11.6%),
    radial-gradient(circle at 62% 26%, rgba(236, 211, 182, 0.28) 0 14.2%, transparent 15.5%),
    radial-gradient(circle at 10% 66%, rgba(220, 239, 233, 0.34) 0 13.8%, transparent 15.1%),
    radial-gradient(circle at 34% 82%, rgba(255, 255, 255, 0.24) 0 10.6%, transparent 11.8%),
    radial-gradient(circle at 56% 68%, rgba(176, 218, 206, 0.32) 0 12.8%, transparent 14.1%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.2) 0 9.8%, transparent 10.8%);
}

.page-hero-copy,
.page-hero-visual {
  position: relative;
  z-index: 2;
}

.page-hero-copy h1 {
  font-size: clamp(2.5rem, 6.1vw, 4.4rem);
  line-height: 1.04;
  margin: 0.7rem 0 0.95rem;
  max-width: 13ch;
  color: #17383e;
  letter-spacing: -0.3px;
}

.page-hero-copy .lead {
  margin: 0 0 0.92rem;
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #4f6b6a;
}

.page-hero-visual {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(clamp(-8px, -1.8vw, -24px));
}

.page-hero-visual img {
  position: relative;
  z-index: 4;
  width: min(100%, 520px);
  height: clamp(360px, 45vw, 560px);
  object-fit: cover;
  object-position: center 28%;
  border-radius: 34px 120px 34px 120px;
  box-shadow: 0 30px 44px rgba(31, 77, 76, 0.24);
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 8% 6% 6%;
  border-radius: 40px 130px 44px 140px;
  background:
    radial-gradient(circle at 16% 22%, rgba(177, 216, 205, 0.42) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 18%, rgba(241, 224, 202, 0.38) 0 14%, transparent 15%),
    radial-gradient(circle at 82% 72%, rgba(170, 205, 196, 0.36) 0 12%, transparent 13%),
    radial-gradient(circle at 26% 82%, rgba(224, 241, 236, 0.46) 0 16%, transparent 17%),
    linear-gradient(168deg, rgba(225, 242, 237, 0.84), rgba(244, 236, 226, 0.56));
  z-index: 1;
}

.page-hero-side-bubble {
  position: absolute;
  left: -15%;
  top: 50%;
  width: clamp(190px, 21vw, 300px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(186, 223, 212, 0.5), rgba(186, 223, 212, 0.12));
  z-index: 2;
}

.page-hero-badges {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2c6663;
  background: #ebf6f3;
  border: 1px solid #d7ebe5;
}

.page-hero-badge svg {
  width: 14px;
  height: 14px;
}

.home-hero-open::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(225, 242, 237, 0.8), rgba(225, 242, 237, 0));
  pointer-events: none;
}

.hero-open-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(3.2rem, 6.8vw, 7.4rem);
  align-items: center;
}

.hero-label {
  font-size: 0.76rem;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: #557876;
  text-transform: uppercase;
}

.hero-open-title {
  margin-top: 0.8rem;
  max-width: 14.2ch;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: #162f3a;
}

.hero-open-title .accent {
  color: #2f8a83;
}

.hero-open-desc {
  margin-top: 1rem;
  max-width: 54ch;
  color: #587473;
}

.hero-open-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-open-features {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #4e6a69;
  font-weight: 600;
  font-size: 0.87rem;
}

.mini-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f5f1;
  color: #2f7f79;
  border: 1px solid #d6e8e3;
  flex-shrink: 0;
}

.hero-open-visual {
  position: relative;
  min-height: 560px;
  margin-right: clamp(-96px, -6vw, -30px);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle.one {
  width: 720px;
  height: 720px;
  right: -340px;
  top: -182px;
  background: radial-gradient(circle, rgba(200, 236, 226, 0.88), rgba(200, 236, 226, 0));
  z-index: 1;
}

.hero-circle.two {
  width: 500px;
  height: 500px;
  left: -236px;
  top: 176px;
  background: radial-gradient(circle, rgba(218, 245, 237, 0.84), rgba(218, 245, 237, 0));
  z-index: 1;
}

.hero-circle.three {
  width: 360px;
  height: 360px;
  right: -96px;
  bottom: -112px;
  background: radial-gradient(circle, rgba(238, 232, 221, 0.46), rgba(238, 232, 221, 0));
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: -4px -132px -4px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(36, 79, 81, 0.04);
  overflow: hidden;
  margin: 0;
  z-index: 2;
}

.hero-photo::after {
  display: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 53%;
  display: block;
  filter: brightness(1.09) saturate(0.92) contrast(0.98);
  border-radius: 8px;
}

.floating-highlights {
  position: absolute;
  left: -64px;
  top: 41%;
  transform: translateY(-50%);
  width: min(352px, 90%);
  border-radius: 18px;
  padding: 1.26rem 1.22rem 1.14rem;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(45, 83, 84, 0.1);
  z-index: 3;
}

.floating-highlights h3 {
  margin-bottom: 0.62rem;
  font-size: 1.03rem;
}

.highlights-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #557271;
  line-height: 1.45;
  font-size: 0.92rem;
}

.highlight-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #edf9f5;
  color: #2f8a83;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9efe9;
  flex-shrink: 0;
  margin-top: 0.04rem;
}

.home-stats-row {
  padding: 1rem 0 2.4rem;
  position: relative;
  z-index: 5;
}

.stats-row-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-row-card {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.stat-row-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f8a83;
  background: #eef8f5;
  border: 1px solid #d7eae4;
  flex-shrink: 0;
}

.stat-row-card strong {
  display: block;
  font-size: 1.55rem;
  color: #1f5960;
  line-height: 1.1;
}

.stat-row-card span {
  color: #597473;
  font-size: 0.9rem;
}

.trust-wrap {
  padding-bottom: 2.6rem;
}

.trust-shell {
  background: #ffffff;
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 18px 36px rgba(47, 95, 96, 0.09);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.trust-title {
  margin-bottom: 0.7rem;
}

.trust-desc {
  color: #5a7574;
  max-width: 40ch;
}

.trust-features {
  display: grid;
  gap: 0.8rem;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-radius: 16px;
  padding: 0.82rem;
  background: linear-gradient(170deg, #f8fcfb, #f5faf8);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f7f79;
  border: 1px solid #d8e8e3;
  background: #f0f9f6;
  flex-shrink: 0;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.74rem;
  color: #2f6663;
  background: #f1f8f5;
  border: 1px solid #dcebe6;
  font-weight: 500;
}

.catalog-chip-btn {
  cursor: pointer;
  font: inherit;
}

.catalog-chip-btn.is-active {
  background: #2f7f79;
  color: #ffffff;
  border-color: #2f7f79;
}

.support-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid #e1ece8;
  border-radius: 14px;
  padding: 0.8rem;
  box-shadow: 0 6px 14px rgba(42, 88, 83, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.catalog-card:hover {
  transform: translateY(-1px);
  border-color: #cfe3dd;
}

.catalog-card.is-selected {
  border-color: #9fcfc4;
  box-shadow: 0 10px 20px rgba(42, 99, 94, 0.1);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card h3 {
  font-size: 1rem;
  margin-bottom: 0.24rem;
}

.catalog-card p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #5d7776;
}

.catalog-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f7f79;
  background: #edf7f4;
  border: 1px solid #d6e8e3;
  margin-bottom: 0.42rem;
}

.catalog-mini-meta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #2f6965;
  font-weight: 600;
}

.catalog-route-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.catalog-decision {
  margin-top: 0.65rem;
  border-radius: 14px;
  border: 1px solid #dcebe7;
  background: #fbfefd;
  padding: 0.72rem;
}

.catalog-decision p {
  margin: 0 0 0.55rem;
  color: #607877;
}

.catalog-step {
  margin-bottom: 0.5rem;
}

.catalog-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f5f5d;
  margin: 0 0 0.28rem;
}

.catalog-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.58rem;
}

.option-btn {
  border: 1px solid #d6e9e4;
  background: #edf7f4;
  color: #2f6663;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font: inherit;
  font-size: 0.79rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.option-btn:hover {
  border-color: #b8d9d2;
  background: #e4f3ef;
}

.option-btn.is-active {
  background: #2f7f79;
  border-color: #2f7f79;
  color: #ffffff;
}

.catalog-result {
  border: 1px dashed #cde3dd;
  border-radius: 12px;
  padding: 0.62rem 0.68rem;
  background: #f8fcfa;
  margin-bottom: 0.56rem;
}

.catalog-result h4 {
  margin: 0 0 0.32rem;
  font-size: 0.96rem;
}

.catalog-result p {
  margin: 0;
  color: #567271;
}

.quick-appointment {
  margin-top: 0.65rem;
  border: 1px solid rgba(228, 242, 239, 0.38);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  padding: 0.72rem;
}

.quick-appointment h3 {
  color: #ecf7f5;
  font-size: 1rem;
  margin-bottom: 0.18rem;
}

.quick-appointment p {
  color: #d4ebe8;
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
}

.quick-appointment-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.45rem;
  align-items: center;
}

.quick-appointment-form input,
.quick-appointment-form select {
  border-color: #cfe4df;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font-size: 0.88rem;
}

.quick-appointment-form .btn {
  padding: 0.62rem 0.9rem;
  min-height: 44px;
  white-space: nowrap;
}

.booking-lite-section {
  padding: clamp(1.6rem, 3.3vw, 2.4rem) 0;
}

.booking-lite-card {
  border: 1px solid rgba(219, 237, 232, 0.48);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08)),
    radial-gradient(520px 220px at 0% 0%, rgba(214, 238, 232, 0.22), transparent 64%);
  padding: 0.95rem;
  box-shadow: 0 16px 34px rgba(16, 46, 49, 0.18);
}

.booking-lite-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.booking-kicker {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #bfe2db;
  font-weight: 700;
}

.booking-lite-head h3 {
  margin: 0.12rem 0 0;
  color: #f4fffd;
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
}

.booking-lite-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(219, 237, 232, 0.4);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  font-size: 0.76rem;
  color: #def3ef;
  background: rgba(248, 254, 252, 0.08);
}

.booking-lite-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 0.52rem;
  align-items: end;
}

.booking-field {
  display: grid;
  gap: 0.16rem;
}

.booking-field span {
  font-size: 0.75rem;
  color: #d6ece8;
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  border: 1px solid #c9e1dc;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  font-size: 0.9rem;
  color: #1e3f40;
  background: #f8fcfb;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: #7db9ad;
  box-shadow: 0 0 0 3px rgba(125, 185, 173, 0.24);
}

.booking-lite-form .btn {
  min-height: 44px;
  white-space: nowrap;
}

.booking-lite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.5rem;
}

.booking-lite-meta span {
  border-radius: 999px;
  border: 1px solid rgba(228, 242, 239, 0.34);
  background: rgba(248, 254, 252, 0.08);
  color: #e6f6f3;
  padding: 0.2rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.booking-lite-note {
  margin: 0.34rem 0 0;
  font-size: 0.75rem;
  color: #d7ece9;
}

.route-card {
  border: 1px solid #dcebe7;
  border-radius: 13px;
  background: #ffffff;
  padding: 0.72rem;
  box-shadow: 0 6px 14px rgba(41, 88, 84, 0.04);
}

.route-card p {
  margin: 0;
  color: #5d7776;
}

.route-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  color: #2d6763;
  background: #e8f4f1;
  border: 1px solid #d4e8e2;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Inner Page Hero + Blocks */
.hero {
  margin-top: 0.4rem;
  background:
    radial-gradient(360px 220px at 6% 8%, rgba(225, 242, 237, 0.86), transparent 70%),
    radial-gradient(320px 220px at 94% 18%, rgba(244, 234, 221, 0.7), transparent 72%),
    linear-gradient(160deg, #f8fcfb 0%, #f2f9f7 100%);
  border: 1px solid #dcebe7;
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.hero-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #d7e7e2;
  padding: 0.95rem;
  box-shadow: 0 12px 24px rgba(41, 84, 85, 0.08);
}

.hero-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.52rem;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.hero-card li {
  position: relative;
  padding-left: 1rem;
  color: #5a7675;
  font-size: 0.9rem;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6aaba1;
}

.hero-badges {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.hero-badge {
  border-radius: 999px;
  border: 1px solid #d8e9e4;
  background: #f1f8f6;
  color: #2d6663;
  padding: 0.22rem 0.54rem;
  font-size: 0.76rem;
  font-weight: 700;
}

/* Page-specific identity: Contact vs Appointment */
.page-iletisim .hero {
  background:
    radial-gradient(360px 220px at 6% 8%, rgba(220, 236, 246, 0.92), transparent 70%),
    radial-gradient(320px 220px at 94% 18%, rgba(235, 247, 241, 0.72), transparent 72%),
    linear-gradient(160deg, #f7fbff 0%, #eef6ff 100%);
  border-color: #d8e4f0;
}

.page-iletisim .hero-badge {
  background: #eef5ff;
  border-color: #d4e1f1;
  color: #335879;
}

.page-iletisim .hero-card {
  border-color: #d5e2f0;
  background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
}

.page-iletisim .contact-box {
  border-color: #d7e3ef;
  background: linear-gradient(170deg, #ffffff 0%, #f7fbff 100%);
}

.page-iletisim .map-card {
  background: linear-gradient(165deg, #ebf4ff 0%, #f7fbff 100%);
  border-color: #d3e2f1;
}

.page-randevu .hero {
  background:
    radial-gradient(360px 220px at 6% 8%, rgba(223, 243, 236, 0.9), transparent 70%),
    radial-gradient(320px 220px at 94% 18%, rgba(244, 236, 224, 0.75), transparent 72%),
    linear-gradient(160deg, #f8fcfb 0%, #eef8f5 100%);
}

.page-randevu .contact-box {
  border-color: #d3e8e1;
}

.page-randevu .contact-layout {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.page-randevu .contact-box {
  height: 100%;
}

.feature-panel {
  background: linear-gradient(160deg, #ffffff, #f5faf8);
  border: 1px solid #dcebe7;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.icon-list {
  margin: 0.56rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #577372;
}

.icon-list li::before {
  content: "•";
  color: #2f7f79;
  font-weight: 800;
  margin-top: -1px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.highlight-tile {
  border-radius: 16px;
  border: 1px solid #dcebe6;
  background: #ffffff;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.highlight-tile strong {
  display: block;
  color: #245f5c;
  font-size: 1.24rem;
  line-height: 1.1;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.process-item {
  border-radius: 16px;
  border: 1px solid #d7e8e3;
  background: #ffffff;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.process-item p {
  margin: 0.35rem 0 0;
  color: #5a7675;
}

.muted-note {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #5e7a79;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.9rem;
}

.contact-box {
  background: #ffffff;
  border: 1px solid #dcebe7;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-box h3 {
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #3f6664;
  margin-bottom: 0.25rem;
  display: block;
}

.map-card {
  margin-top: 0.7rem;
  border-radius: 14px;
  border: 1px solid #d7e8e3;
  background: linear-gradient(165deg, #edf7f4 0%, #f8fcfb 100%);
  padding: 0.8rem;
}

.map-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.map-grid div {
  border-radius: 10px;
  border: 1px solid #dcebe7;
  background: #ffffff;
  padding: 0.55rem;
  color: #577271;
  font-size: 0.86rem;
}

.appointment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.appointment-step {
  border-radius: 16px;
  border: 1px solid #d5e9e3;
  background: linear-gradient(165deg, #ffffff 0%, #f4fbf8 100%);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.appointment-step span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2f7f79;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.appointment-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.appointment-step p {
  margin: 0;
  color: #587473;
  font-size: 0.9rem;
}

.appointment-platform {
  border-radius: 14px;
  border: 1px solid #d4e8e2;
  background: linear-gradient(160deg, #edf8f4 0%, #f8fcfb 100%);
  padding: 0.8rem;
  margin-bottom: 0.9rem;
}

.appointment-platform p {
  margin: 0 0 0.6rem;
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  height: 100%;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.64rem;
  padding: 1rem;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef6f4;
  border-bottom: 1px solid #dceae6;
}

.managed-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.admin-managed-content {
  padding-top: 0;
}

.admin-managed-content .content-flow {
  max-width: 860px;
  margin: 0 auto;
  color: #425f5c;
  font-size: 1.04rem;
  line-height: 1.85;
}

.form-notice {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #2f7f79;
  border-radius: 8px;
  background: #f0fdf9;
  color: #1a4d49;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(47, 127, 121, 0.08);
  animation: noticeFadeUp 0.4s ease-out;
}

@keyframes noticeFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: #2f7f79;
  transform: translateY(-3px);
  color: #fff;
}

.blog-card h3 {
  min-height: 2.4em;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fdfc;
  border: 1px solid #d9e8e4;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  margin: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(47, 127, 121, 0.04);
}

.captcha-container:hover {
  border-color: #2f7f79;
  background: #fff;
}

.captcha-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #2f7f79;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.3s ease;
}

.captcha-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid #2f7f79;
  border-top-color: transparent;
  border-radius: 50%;
  animation: captchaSpin 0.8s linear infinite;
  display: none;
}

.captcha-check {
  display: none;
  color: #2f7f79;
}

@keyframes captchaSpin {
  to { transform: rotate(360deg); }
}

.captcha-container.loading { pointer-events: none; opacity: 0.8; }
.captcha-container.loading .captcha-spinner { display: block; }
.captcha-container.verified { pointer-events: none; background: #f0fdf9; border-color: #2f7f79; }
.captcha-container.verified .captcha-check { display: block; }
.captcha-container.verified .captcha-checkbox { background: #2f7f79; color: #fff; border-color: #2f7f79; }
.captcha-container.verified .captcha-check svg { color: #fff; }

.captcha-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #476262;
}

.blog-card h3,
.blog-card p {
  padding: 0;
}

.blog-card-body > p {
  color: #4f6c6b;
  font-size: 0.92rem;
}

.blog-content-preview {
  display: grid;
  gap: 0.52rem;
  color: #5f7776;
  font-size: 0.9rem;
}

.blog-content-preview p {
  margin: 0;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  border: 1px solid #d9eae5;
  background: #f0f8f6;
  color: #2d6663;
  font-size: 0.74rem;
  font-weight: 700;
}

.blog-actions {
  margin-top: auto;
}

.blog-read-link {
  width: 100%;
  padding: 0.72rem 1rem;
}

.blog-detail-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.1rem, 6.4vw, 5.4rem) 0 clamp(2.7rem, 5.8vw, 4.2rem);
  background:
    radial-gradient(720px 360px at 6% 8%, rgba(224, 242, 237, 0.78), transparent 72%),
    radial-gradient(620px 360px at 94% 12%, rgba(243, 235, 223, 0.62), transparent 72%),
    linear-gradient(180deg, #f9fdfc 0%, #f1f8f6 100%);
}

.blog-detail-wrap {
  width: min(1160px, 92%);
}

.blog-detail-article {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.blog-detail-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(1.1rem, 3.4vw, 2.4rem);
  align-items: center;
  padding: 0;
}

.blog-detail-hero-bubbles {
  position: absolute;
  inset: -4% -2% -8% -2%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 255, 255, 0.28) 0 10.8%, transparent 11.8%),
    radial-gradient(circle at 23% 30%, rgba(178, 221, 209, 0.34) 0 12.6%, transparent 13.8%),
    radial-gradient(circle at 41% 14%, rgba(220, 238, 233, 0.3) 0 10.6%, transparent 11.6%),
    radial-gradient(circle at 62% 26%, rgba(236, 211, 182, 0.28) 0 14.2%, transparent 15.5%),
    radial-gradient(circle at 10% 66%, rgba(220, 239, 233, 0.34) 0 13.8%, transparent 15.1%),
    radial-gradient(circle at 34% 82%, rgba(255, 255, 255, 0.24) 0 10.6%, transparent 11.8%),
    radial-gradient(circle at 56% 68%, rgba(176, 218, 206, 0.32) 0 12.8%, transparent 14.1%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.2) 0 9.8%, transparent 10.8%);
}

.blog-detail-hero-visual,
.blog-detail-heading {
  position: relative;
  z-index: 2;
}

.blog-detail-hero-visual {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.blog-detail-hero-visual img {
  position: relative;
  z-index: 4;
  width: 100%;
  height: clamp(300px, 36vw, 460px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(31, 95, 102, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 38px rgba(31, 77, 76, 0.2);
}

.blog-detail-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -8% 8%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 24%, rgba(177, 216, 205, 0.4) 0 17%, transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(241, 224, 202, 0.34) 0 13%, transparent 14%),
    linear-gradient(168deg, rgba(225, 242, 237, 0.72), rgba(244, 236, 226, 0.48));
  z-index: 1;
}

.blog-detail-hero-side-bubble {
  position: absolute;
  right: -10%;
  bottom: -12%;
  width: clamp(150px, 16vw, 240px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(186, 223, 212, 0.5), rgba(186, 223, 212, 0.12));
  z-index: 2;
}

.blog-detail-heading {
  display: grid;
  gap: 0.86rem;
  align-content: center;
  order: 1;
}

.blog-detail-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.blog-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.32rem 0.76rem;
  border: 1px solid #d7e9e4;
  border-radius: 999px;
  background: #ffffff;
  color: #2f6f6e;
  font-weight: 800;
  font-size: 0.86rem;
}

.blog-back-link:hover {
  color: #1f4f50;
  border-color: #b9d9d2;
}

.blog-detail-article h1 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  line-height: 1.04;
  color: #17383e;
}

.blog-detail-article .lead {
  margin: 0;
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.9;
}

.blog-detail-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.blog-detail-hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  border: 1px solid #d7ebe5;
  background: #ebf6f3;
  color: #2c6663;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-detail-figure {
  margin: 0;
}

.blog-detail-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dceae6;
  box-shadow: var(--shadow-mid);
}

.blog-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: start;
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.blog-detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.74rem;
  padding: 1rem;
  border: 1px solid #d7e9e4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.blog-sidebar-label {
  width: fit-content;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  background: #edf8f4;
  color: #2e6966;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.blog-detail-sidebar strong {
  color: #1f4f50;
  font-size: 1.05rem;
}

.blog-detail-sidebar p {
  margin: 0;
  color: #5b7473;
  font-size: 0.92rem;
}

.blog-detail-sidebar .btn {
  width: 100%;
  padding: 0.68rem 0.9rem;
}

.blog-detail-content-panel {
  overflow: hidden;
  border: 1px solid #d9e9e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.blog-detail-content {
  display: grid;
  gap: 0;
  color: #415f5e;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.86;
}

.blog-detail-content p {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 3vw, 1.7rem);
}

.blog-detail-content p + p {
  border-top: 1px solid #edf5f2;
}

.blog-detail-content p:first-child {
  position: relative;
  color: #284f4e;
  font-weight: 650;
  background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
  padding-left: clamp(1.2rem, 3vw, 2rem);
}

.blog-detail-content p:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  background: #2f7f79;
  border-radius: 999px;
}

.blog-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 1.7rem);
  border-top: 1px solid #d7e9e4;
  background: linear-gradient(135deg, #255f63 0%, #2f7f79 100%);
}

.blog-detail-cta span {
  color: #f2fbf9;
  font-weight: 800;
}

.blog-detail-empty {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #d8e9e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1024px) {
  .hero-grid,
  .highlight-strip,
  .split-panel,
  .process-grid,
  .appointment-strip,
  .contact-layout,
  .form-grid,
  .map-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-detail-hero-visual {
    width: min(100%, 680px);
    margin: 0 auto;
    transform: none;
  }

  .blog-detail-body {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .brand strong {
    font-size: 1.02rem;
  }

  .nav-list a {
    padding: 0.52rem 0.58rem;
    font-size: 0.84rem;
  }

  .nav-list .nav-cta a {
    padding: 0.6rem 0.92rem;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    left: 4%;
    margin-left: 0;
    border: 1px solid #dce9e6;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-mid);
    padding: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-list a,
  .nav-list .nav-cta a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0.74rem 0.88rem;
  }

  .hero-open-grid,
  .hero-open-features,
  .page-hero-grid,
  .stats-row-grid,
  .support-catalog-grid,
  .catalog-route-grid,
  .trust-shell,
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .catalog-options {
    gap: 0.42rem;
  }

  .quick-appointment-form {
    grid-template-columns: 1fr 1fr;
  }

  .quick-appointment-form .btn {
    grid-column: 1 / -1;
  }

  .booking-lite-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-lite-form .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-open-visual {
    min-height: 450px;
    margin-right: 0;
  }

  .page-hero-visual {
    transform: none;
  }

  .hero-photo {
    inset: 0 0 0 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(36, 79, 81, 0.04);
  }

  .floating-highlights {
    left: 10px;
    top: auto;
    bottom: 16px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .brand {
    max-width: 70%;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .nav-wrap {
    min-height: 76px;
  }

  main {
    padding-top: 1.05rem;
  }

  .hero-open-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-open-features {
    grid-template-columns: 1fr;
  }

  .hero-open-visual {
    min-height: 325px;
  }

  .hero-photo {
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(36, 79, 81, 0.035);
  }

  .floating-highlights {
    width: calc(100% - 20px);
    left: 10px;
    bottom: 10px;
  }

  .booking-lite-card {
    padding: 0.76rem;
  }

  .booking-lite-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .booking-lite-form {
    grid-template-columns: 1fr;
  }

  .blog-detail-wrap {
    width: min(100% - 1.2rem, 1040px);
  }

  .blog-detail-hero {
    gap: 1.2rem;
  }

  .blog-detail-hero-visual img {
    width: 100%;
    height: clamp(220px, 62vw, 330px);
    border-radius: 8px;
  }

  .blog-detail-article h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .blog-detail-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-detail-hero-badges {
    gap: 0.4rem;
  }

  .blog-detail-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-detail-cta .btn {
    width: 100%;
  }

  .blog-detail-content p {
    padding: 1rem;
  }
}

/* Premium Blog Detail */
.blog-detail-page {
  --premium-primary: #2F6F68;
  --premium-secondary: #DCEEEA;
  --premium-accent: #7BAA9E;
  --premium-bg: #F7FBFA;
  --premium-text: #183B3A;
  --premium-cream: #fbf6ec;
  --premium-mist: #edf7f3;
  --premium-glass: rgba(255, 255, 255, 0.66);
  --premium-line: rgba(47, 111, 104, 0.14);
  font-family: "Inter", "Manrope", sans-serif;
  color: var(--premium-text);
  background:
    radial-gradient(720px 420px at 7% 8%, rgba(220, 238, 234, 0.9), transparent 66%),
    radial-gradient(620px 420px at 92% 10%, rgba(230, 243, 239, 0.75), transparent 68%),
    linear-gradient(180deg, #fbfefe 0%, var(--premium-bg) 100%);
}

.blog-detail-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(47, 111, 104, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 10%, rgba(123, 170, 158, 0.12) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
}

.blog-detail-page .blog-detail-section {
  min-height: 100vh;
  padding: clamp(3.8rem, 7vw, 6.6rem) 0 clamp(4rem, 7vw, 6.4rem);
  background:
    radial-gradient(720px 420px at 8% 14%, rgba(220, 238, 234, 0.86), transparent 70%),
    radial-gradient(560px 360px at 92% 28%, rgba(246, 237, 221, 0.72), transparent 72%),
    linear-gradient(180deg, #fbfefd 0%, #f7fbfa 44%, #fbf6ec 100%);
}

.blog-detail-page .blog-detail-section::before,
.blog-detail-page .blog-detail-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(24px);
  border-radius: 999px;
}

.blog-detail-page .blog-detail-section::before {
  width: 220px;
  height: 220px;
  right: 4%;
  top: 17%;
  background: rgba(123, 170, 158, 0.18);
}

.blog-detail-page .blog-detail-section::after {
  width: 180px;
  height: 180px;
  left: 5%;
  bottom: 15%;
  background: rgba(220, 238, 234, 0.52);
}

.blog-detail-page .blog-detail-wrap {
  width: min(1240px, 92%);
}

.blog-detail-page .blog-detail-article {
  gap: clamp(2.2rem, 5vw, 4.4rem);
}

.blog-detail-page .blog-detail-hero {
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.1rem, 3.4vw, 2.4rem);
  align-items: center;
}

.blog-detail-page .blog-detail-hero-bubbles {
  opacity: 0.48;
}

.blog-detail-page .blog-detail-hero-visual {
  order: 1;
  transform: translateX(clamp(-8px, -1.8vw, -24px));
}

.blog-detail-page .blog-detail-heading {
  order: 2;
  gap: 1.05rem;
}

.blog-detail-page .blog-detail-hero-visual img {
  width: min(100%, 520px);
  height: clamp(360px, 45vw, 560px);
  object-position: center 28%;
  border: 0;
  border-radius: 34px 120px 34px 120px;
  box-shadow: 0 30px 44px rgba(31, 77, 76, 0.24);
  filter: none;
}

.blog-detail-page .blog-detail-hero-visual::after {
  display: none;
}

.blog-detail-page .blog-detail-hero-visual::before {
  inset: 4% 8% 6% 6%;
  border-radius: 40px 130px 44px 140px;
  background:
    radial-gradient(circle at 16% 22%, rgba(177, 216, 205, 0.42) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 18%, rgba(241, 224, 202, 0.38) 0 14%, transparent 15%),
    radial-gradient(circle at 82% 72%, rgba(170, 205, 196, 0.36) 0 12%, transparent 13%),
    radial-gradient(circle at 26% 82%, rgba(224, 241, 236, 0.46) 0 16%, transparent 17%),
    linear-gradient(168deg, rgba(225, 242, 237, 0.84), rgba(244, 236, 226, 0.56));
}

.blog-detail-page .blog-detail-hero-side-bubble {
  left: -15%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: clamp(190px, 21vw, 300px);
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, rgba(186, 223, 212, 0.5), rgba(186, 223, 212, 0.12));
}

.blog-detail-page .blog-hero-floating-card {
  display: none;
}

.blog-detail-page .blog-hero-floating-card span {
  color: var(--premium-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-detail-page .blog-hero-floating-card strong {
  color: var(--premium-text);
  font-size: 0.95rem;
}

.blog-detail-page .blog-back-link,
.blog-detail-page .blog-meta,
.blog-detail-page .blog-detail-hero-badge {
  border: 0;
  border-bottom: 1px solid rgba(47, 111, 104, 0.16);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.blog-detail-page .blog-detail-article h1 {
  max-width: 13ch;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 6.5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.blog-detail-page .blog-detail-article h1 span {
  display: inline;
  background: linear-gradient(135deg, #183B3A 0%, #2F6F68 52%, #7BAA9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-detail-page .blog-detail-article .lead {
  max-width: 58ch;
  color: #526f6b;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.blog-detail-page .blog-detail-hero-badges {
  margin-top: 0.55rem;
}

.blog-detail-page .blog-detail-hero-badge {
  padding: 0.5rem 0.82rem;
  color: #315f5a;
}

.blog-detail-page .blog-detail-body {
  position: relative;
  grid-template-columns: minmax(0, 820px) minmax(180px, 260px);
  justify-content: center;
  gap: clamp(2.4rem, 6vw, 5rem);
  padding-top: clamp(0.5rem, 2vw, 1.2rem);
}

.blog-detail-page .blog-detail-sidebar {
  top: 104px;
  gap: 1.05rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 54px rgba(24, 59, 58, 0.12);
}

.blog-detail-page .blog-author-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(24, 59, 58, 0.14);
}

.blog-detail-page .blog-sidebar-label {
  background: rgba(220, 238, 234, 0.78);
  color: var(--premium-primary);
}

.blog-detail-page .blog-detail-sidebar strong {
  font-size: 1.22rem;
  line-height: 1.25;
}

.blog-detail-page .blog-detail-sidebar .btn {
  min-height: 48px;
  padding: 0.82rem 1rem;
}

.blog-detail-page .blog-detail-facts {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.blog-detail-page .blog-detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(47, 111, 104, 0.1);
}

.blog-detail-page .blog-detail-facts dt,
.blog-detail-page .blog-detail-facts dd {
  margin: 0;
  font-size: 0.94rem;
}

.blog-detail-page .blog-detail-facts dt {
  color: #6d8883;
}

.blog-detail-page .blog-detail-facts dd {
  color: var(--premium-text);
  font-weight: 800;
  text-align: right;
}

.blog-detail-page .blog-share-actions {
  display: flex;
  gap: 0.5rem;
}

.blog-detail-page .blog-share-actions a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 104, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--premium-primary);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-detail-page .blog-share-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 111, 104, 0.14);
}

.blog-detail-page .blog-detail-content-panel {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.blog-detail-page .blog-detail-content-panel::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 104, 0.16), transparent);
}

.blog-detail-page .blog-detail-content {
  display: grid;
  gap: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.9;
}

.blog-detail-page .blog-content-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.blog-detail-page .blog-content-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-detail-page .blog-detail-content p {
  position: relative;
  max-width: 72ch;
  margin: 0;
  padding: 0;
  color: #345654;
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
}

.blog-detail-page .blog-detail-content p + p {
  padding-top: clamp(1.15rem, 2.2vw, 1.7rem);
  border-top: 1px solid rgba(47, 111, 104, 0.1);
}

.blog-detail-page .blog-detail-content p + p,
.blog-detail-page .blog-detail-content p:first-child::before {
  display: none;
}

.blog-detail-page .blog-detail-content p + p {
  display: block;
}

.blog-detail-page .blog-detail-content p:first-child {
  max-width: 62ch;
  padding-left: 0;
  background: transparent;
  color: #244d49;
  font-weight: 500;
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.72;
}

.blog-detail-page .blog-quote-block {
  position: relative;
  margin: 0 0 clamp(0.8rem, 2vw, 1.4rem);
  padding: clamp(2.5rem, 5vw, 4.2rem) clamp(1.2rem, 4vw, 3.8rem);
  border: 0;
  border-radius: 44% 56% 50% 50% / 18% 22% 78% 82%;
  background:
    radial-gradient(420px 240px at 12% 20%, rgba(255, 255, 255, 0.62), transparent 72%),
    linear-gradient(135deg, rgba(220, 238, 234, 0.68), rgba(251, 246, 236, 0.62));
  box-shadow: none;
}

.blog-detail-page .blog-quote-block span {
  position: absolute;
  left: clamp(0.8rem, 2vw, 1.6rem);
  top: 0.2rem;
  color: rgba(47, 111, 104, 0.26);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.6rem, 10vw, 8.8rem);
  line-height: 1;
}

.blog-detail-page .blog-quote-block p {
  position: relative;
  margin: 0;
  color: #244d49;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 3.05rem);
  line-height: 1.22;
}

.blog-detail-page .blog-detail-cta {
  align-items: center;
  margin-top: 0.45rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 64px rgba(24, 59, 58, 0.14);
}

.blog-detail-page .blog-sticky-appointment {
  position: sticky;
  top: 116px;
  align-self: start;
  display: grid;
  gap: 0.72rem;
  padding: 0.4rem 0 0.4rem 1.15rem;
  border-left: 1px solid rgba(47, 111, 104, 0.2);
  color: var(--premium-text);
}

.blog-detail-page .blog-sticky-appointment::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 42%;
  background: linear-gradient(180deg, var(--premium-primary), transparent);
}

.blog-detail-page .blog-sticky-appointment span {
  color: var(--premium-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-detail-page .blog-sticky-appointment strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.14;
}

.blog-detail-page .blog-sticky-appointment p {
  margin: 0;
  color: #6a817d;
  font-size: 0.95rem;
  line-height: 1.72;
}

.blog-detail-page .blog-sticky-appointment a {
  width: fit-content;
  margin-top: 0.3rem;
  color: var(--premium-primary);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 111, 104, 0.36);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-detail-page .blog-sticky-appointment a:hover {
  color: #183B3A;
  border-color: #183B3A;
}

.blog-detail-page .blog-detail-cta span {
  display: block;
  color: var(--premium-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.blog-detail-page .blog-detail-cta p {
  margin: 0.42rem 0 0;
  max-width: 52ch;
  color: #5b7470;
}

.blog-detail-page .blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.blog-detail-page .btn {
  min-height: 46px;
}

.blog-detail-page .btn-primary {
  background: linear-gradient(135deg, #2F6F68 0%, #7BAA9E 100%);
  box-shadow: 0 16px 32px rgba(47, 111, 104, 0.28);
}

.blog-detail-page .btn-primary:hover,
.blog-detail-page .btn-secondary:hover {
  transform: translateY(-2px);
}

.blog-detail-page .btn-secondary {
  color: var(--premium-primary);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(47, 111, 104, 0.14);
}

.blog-detail-page .reveal-item {
  animation: blogReveal 0.72s ease both;
  animation-delay: var(--delay, 0ms);
}

@keyframes blogReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .blog-detail-page .blog-detail-hero,
  .blog-detail-page .blog-detail-body {
    grid-template-columns: 1fr;
  }

  .blog-detail-page .blog-detail-heading,
  .blog-detail-page .blog-detail-hero-visual {
    order: initial;
  }

  .blog-detail-page .blog-detail-hero-visual {
    transform: none;
  }

  .blog-detail-page .blog-detail-sidebar {
    position: static;
  }

  .blog-detail-page .blog-sticky-appointment {
    position: relative;
    top: auto;
    max-width: 680px;
    margin-top: 0.4rem;
  }

  .blog-detail-page .blog-detail-article h1 {
    max-width: 16ch;
  }
}

@media (max-width: 620px) {
  .blog-detail-page .blog-detail-section {
    padding-top: 2.1rem;
  }

  .blog-detail-page .blog-detail-hero-visual img {
    height: clamp(260px, 72vw, 360px);
    border-radius: 30px;
  }

  .blog-detail-page .blog-hero-floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .blog-detail-page .blog-detail-article h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .blog-detail-page .blog-detail-cta,
  .blog-detail-page .blog-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-detail-page .blog-cta-actions .btn {
    width: 100%;
  }

  .blog-detail-page .blog-quote-block {
    padding-left: 2.4rem;
    border-radius: 32% 68% 48% 52% / 14% 18% 82% 86%;
  }

  .blog-detail-page .blog-quote-block span {
    left: 0.75rem;
    font-size: 4rem;
  }

  .blog-detail-page .blog-sticky-appointment {
    padding-left: 0.9rem;
  }
}

/* Spam honeypot — iletişim / randevu formları */
.hp-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.form-grid > .form-consent {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
}

.form-consent > .field-label {
  margin-bottom: 0;
}

.inline-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

.inline-checkbox-text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.inline-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  accent-color: #2f7f79;
}


/* Modern Service Cards */
.service-cards-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.svc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(36, 95, 92, 0.05);
  border: 1px solid rgba(217, 232, 228, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #489f99);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(36, 95, 92, 0.12);
  border-color: rgba(47, 127, 121, 0.2);
}

.svc-card:hover::before {
  opacity: 1;
}







.svc-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.2px;
}

.svc-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}





.svc-card:hover 

/* Responsive Fixes for Frontend Cards */
@media (max-width: 768px) {
  .svc-card {
    padding: 2rem 1.6rem !important;
  }
  .svc-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.6rem !important;
  }
  .svc-desc {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 480px) {
  .svc-card {
    padding: 1.6rem 1.2rem !important;
  }
}