:root {
  --navy: #0b2744;
  --navy-2: #0a2038;
  --navy-deep: #07182b;
  --teal: #0ea89a;
  --teal-2: #0c9084;
  --teal-dark: #08756c;
  --teal-soft: #e7f8f6;
  --teal-mid: #c5efe9;
  --gold: #e8b84a;
  --text: #173044;
  --muted: #5d7285;
  --line: #e4eef2;
  --bg: #f5f8fa;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(11, 39, 68, 0.08);
  --shadow-lg: 0 22px 50px rgba(11, 39, 68, 0.14);
  --container: 1180px;
  --header-h: 100px;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 100;
  background: var(--teal);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
  background: #fff;
  box-shadow: none;
}

.logo-on-dark {
  display: inline-flex;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  overflow: hidden;
}

.logo-on-dark img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 0;
}

.logo-mark { width: 48px; height: 48px; }

.btn-phone svg,
.contact-line svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--navy);
  font-weight: 800;
}

.logo-text span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}

.nav a:hover,
.nav a.is-active { color: var(--teal); }

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn-phone {
  background: var(--teal);
  color: #fff;
  padding: 12px 18px;
  font-size: 14.5px;
  box-shadow: 0 8px 20px rgba(14, 168, 154, 0.28);
}

.btn-phone:hover { background: var(--teal-2); transform: translateY(-1px); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(14, 168, 154, 0.25);
}

.btn-primary:hover { background: var(--teal-2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  padding: 13px 24px;
  font-size: 15px;
  border: 1.5px solid var(--teal);
}

.btn-outline:hover { background: var(--teal-soft); }

.btn-white {
  background: #fff;
  color: var(--navy);
  padding: 13px 22px;
}

.btn-white:hover { background: var(--teal-soft); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 28px;
  background:
    linear-gradient(180deg, rgba(245,248,250,0.55) 0%, rgba(255,255,255,0.92) 70%),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.45rem);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.hp-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hp-ico svg { width: 18px; height: 18px; }

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-photo {
  width: 88%;
  margin-left: auto;
  border-radius: 20px;
  object-fit: cover;
  object-position: 68% center;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 156px;
  animation: floaty 4.5s ease-in-out infinite;
}

.float-card b {
  display: block;
  font-size: 12px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.float-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.float-card .ico svg { width: 20px; height: 20px; }

.fc-1 { top: 24px; left: 0; }
.fc-2 { top: 118px; right: -6px; animation-delay: 0.6s; }
.fc-3 { bottom: 108px; left: 10px; animation-delay: 1.1s; }
.fc-4 { bottom: 16px; right: 22px; animation-delay: 1.7s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats */
.stats {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 45%, #0d3a58);
  color: #fff;
  padding: 28px 0;
  margin-top: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  text-align: center;
  padding: 8px;
}

.stat-ico {
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  color: var(--teal);
}

.stat-ico svg { width: 26px; height: 26px; }

.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.stat span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
}

/* Sections */
.section { padding: 84px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 42px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-head p { color: var(--muted); }

.kicker {
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Services */
.services { background: var(--bg); }

.section-head h2 em {
  font-style: normal;
  color: var(--teal);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,39,68,0.04);
  transition: 0.22s ease;
  min-height: 230px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.service-card .ico svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 800;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-cta {
  background: linear-gradient(160deg, #0c8f84, #0a6e72 70%, var(--navy));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

.service-cta:hover { transform: translateY(-6px); }

.service-cta h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-cta p { color: rgba(255,255,255,0.82); font-size: 14px; }

/* Why + steps */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 22px;
}

.why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.why-item .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-item .check svg { width: 15px; height: 15px; }

.why-item b {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
}

.why-item span {
  font-size: 13px;
  color: var(--muted);
}

.steps-card {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.steps-card::after { display: none; }

.steps-target {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  color: rgba(14,168,154,0.35);
  z-index: 0;
}

.steps-target svg { width: 120px; height: 120px; }

.steps-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.step b { display: block; font-size: 15px; margin-bottom: 2px; }
.step p { color: rgba(255,255,255,0.72); font-size: 13.5px; }

/* News */
.news-wrap {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 28px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.22s ease;
  display: block;
  color: inherit;
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.news-card img { height: 148px; width: 100%; object-fit: cover; }

.news-body { padding: 16px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.tag-green { background: #e7f8f0; color: #0b8a5a; }
.tag-teal { background: var(--teal-soft); color: var(--teal-dark); }
.tag-navy { background: #e8eef5; color: var(--navy); }

.news-body h3 {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 800;
}

.news-body p {
  font-size: 13px;
  color: var(--muted);
}

.meta {
  font-size: 12px;
  color: #8aa0b0;
  margin-top: 10px;
}

.announce {
  background: var(--bg);
  border-radius: 20px;
  padding: 22px;
}

.announce h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 16px;
}

.announce-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.announce-item:last-child { border-bottom: 0; }

.bell {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.bell svg { width: 18px; height: 18px; }

.quote-mark {
  font-size: 56px;
  line-height: 0.7;
  color: var(--teal-mid);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.announce-item b {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.4;
}

.announce-item span {
  font-size: 12px;
  color: #8aa0b0;
}

/* Testimonials */
.testimonials { background: var(--bg); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.quote p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.quote-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-user b { display: block; color: var(--navy); font-size: 14px; }
.quote-user span { font-size: 12.5px; color: var(--muted); }

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c9d6de;
  cursor: pointer;
}

.dots button.is-on { background: var(--teal); width: 22px; border-radius: 8px; }

/* Partners */
.partners { padding: 42px 0 70px; overflow: hidden; }

.partner-marquee {
  overflow: hidden;
  margin-top: 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 32s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.partner-logo {
  opacity: 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.partner-logo:hover { opacity: 1; }

.partner-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
  .partner-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
}

.site-footer .logo-text strong { color: #fff; }
.site-footer .logo-text span { color: rgba(255,255,255,0.55); }

.footer-about {
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.socials { display: flex; gap: 10px; }

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--teal);
  display: grid;
  place-items: center;
  color: var(--teal);
}

.socials a:hover { background: var(--teal); }

.site-footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--teal); }

.contact-line {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-line svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom nav { display: flex; gap: 16px; }

/* Page hero */
.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), #0d3a58);
  color: #fff;
  padding: 56px 0 48px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

.crumbs {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--teal); }

.content { padding: 56px 0 80px; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.article-body h2 {
  margin-top: 28px;
}

.article-body p { margin-bottom: 14px; }

.article-cover {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}

.city-chip {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.city-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.prose h2 { color: var(--navy); margin: 28px 0 10px; font-size: 22px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 18px; color: var(--muted); }
.prose li { list-style: disc; margin-bottom: 6px; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.card-list { display: grid; gap: 14px; }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.info-card h3 { color: var(--navy); margin-bottom: 6px; }
.info-card p { color: var(--muted); font-size: 14.5px; }

.info-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.info-card-link:hover {
  border-color: var(--teal, #0ea89a);
  transform: translateY(-2px);
}

.province-head {
  margin: 48px 0 18px;
}
.province-head h2 {
  color: var(--navy);
  margin-bottom: 8px;
}
.province-head p {
  color: var(--muted);
  max-width: 720px;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  background: #fbfdfe;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14,168,154,0.12);
}

.field textarea { min-height: 130px; resize: vertical; }

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
}

.alert-ok { background: #e7f8f0; color: #0b8a5a; }
.alert-err { background: #fdecec; color: #b42318; }

.hp { position: absolute; left: -9999px; }

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.intake-form { padding: 32px; }
.form-block {
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.form-block:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.form-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.form-block-head span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.form-block-head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.field abbr { color: var(--teal); text-decoration: none; }
.field-hint {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}
.choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfdfe;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.choice input {
  margin-top: 2px;
  accent-color: var(--teal);
}
.choice:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.choice-kvkk {
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.intake-form .btn-primary { min-width: 220px; }
.intake-side .btn-outline { margin-top: 12px; }
.intake-steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.intake-steps li { margin-bottom: 4px; }

@media (max-width: 960px) {
  .intake-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .choice-grid { grid-template-columns: 1fr; }
}

.map-box {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.map-box iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 40;
  padding: 18px 20px 32px;
  overflow: auto;
}

.mobile-nav.is-open { display: flex; flex-direction: column; gap: 6px; }

.mobile-nav a {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--navy);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(14,168,154,0.35);
  z-index: 30;
}

.scroll-top svg { width: 20px; height: 20px; }
.scroll-top:hover { background: var(--teal-2); }

.contact-line svg { color: var(--teal); }

@media (max-width: 1100px) {
  .logo img { height: 48px; }
  .logo-on-dark img { height: 48px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .news-wrap, .why-grid, .hero-grid, .two-col, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo { width: 100%; height: 380px; }
  .float-card { width: 140px; }
}

@media (max-width: 1100px) {
  .nav { gap: 12px; }
  .nav a { font-size: 13px; }
}

@media (max-width: 860px) {
  .nav, .header-inner .btn-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .stats-grid, .quote-grid, .news-grid, .why-list, .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .article-layout { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .stats-grid, .quote-grid, .news-grid, .why-list, .form-row, .service-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 36px; }
  .hero-visual { min-height: 360px; }
  .hero-photo { height: 300px; }
  .fc-2, .fc-4 { display: none; }
  .section { padding: 56px 0; }
}
