:root {
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --green: #0f8f5f;
  --green-dark: #10231c;
  --green-deep: #071b14;
  --mint: #eaf6f0;
  --ink: #17201c;
  --text: #46534d;
  --muted: #5f6d66;
  --line: #dce8e2;
  --paper: #f5f8f6;
  --white: #fff;
  --shadow: 0 18px 52px rgba(7, 27, 20, 0.15);
  font-family: var(--font-body);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 58px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(7, 27, 20, 0.08);
}
.logo {
  display: inline-flex;
  align-items: center;
  min-width: 92px;
  white-space: nowrap;
}
.logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
  image-rendering: auto;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.footer .logo-img {
  height: 40px;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}
.nav a,
.topbar-right .btn {
  white-space: nowrap;
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.nav-drop-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}
.nav-dropdown.open .nav-drop-toggle::after,
.nav-dropdown:hover .nav-drop-toggle::after {
  transform: translateY(2px) rotate(225deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 210px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(7, 27, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-drop-toggle:hover {
  color: var(--green);
}
.nav-drop-toggle:focus-visible {
  outline: 2px solid rgba(62, 145, 100, 0.45);
  outline-offset: 4px;
  border-radius: 6px;
}
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}
.nav-dropdown-menu a:hover {
  background: rgba(62, 145, 100, 0.1);
}
.nav a:hover { color: var(--green); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.circle-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}
.circle-icon svg, .mini-icon svg, .feature-icon svg { width: 18px; height: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 143, 95, 0.24);
}
.btn:hover { background: #0b744d; transform: translateY(-1px); }
.btn.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn svg { width: 16px; height: 16px; }

@media (max-width: 1180px) {
  .topbar {
    gap: 18px;
    padding: 0 28px;
  }
  .nav {
    gap: 20px;
    font-size: 12px;
  }
  .topbar-right {
    gap: 10px;
  }
  .topbar-right .btn {
    padding-inline: 18px;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}
.hero.hero-small { min-height: 570px; }
.hero-picture,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-picture { display: block; }
.hero-picture .hero-img { position: static; display: block; }
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.88), rgba(7, 27, 20, 0.5) 58%, rgba(7, 27, 20, 0.12)),
    radial-gradient(circle at 78% 24%, rgba(15, 143, 95, 0.32), transparent 32%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 80px 0;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 16px;
  color: #64d49f;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}
h1 strong, h2 strong { color: #54c98f; }
.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

body.home-page .hero-img {
  opacity: 0.74;
  object-position: 58% center;
}
body.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.66), rgba(7, 27, 20, 0.28) 56%, rgba(7, 27, 20, 0.04)),
    radial-gradient(circle at 78% 24%, rgba(15, 143, 95, 0.16), transparent 32%);
}
@media (max-width: 640px) {
  body.home-page .hero-img {
    opacity: 0.64;
    object-position: 60% center;
  }
  body.home-page .hero::after {
    background: linear-gradient(180deg, rgba(7, 27, 20, 0.62), rgba(7, 27, 20, 0.42));
  }
}


.services-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  min-height: 170px;
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  transition: background 0.2s, transform 0.2s;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--mint); transform: translateY(-2px); }
.service-card h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 16px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.savings-band {
  padding: 34px 0;
  background: linear-gradient(135deg, #eff8f3, #ffffff);
  border-bottom: 1px solid var(--line);
}
.savings-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.savings-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.savings-copy > p:not(.section-tag) {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.savings-grid span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 143, 95, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 27, 20, 0.05);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.savings-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 143, 95, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.savings-toggle:hover {
  background: #347b55;
  box-shadow: 0 18px 34px rgba(15, 143, 95, 0.22);
  transform: translateY(-1px);
}
.savings-visual {
  position: relative;
  min-height: 176px;
}
.savings-visual .savings-grid,
.savings-visual .compare-panel {
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}
.compare-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 16px;
  color: var(--white);
  background: #09271b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(7, 27, 20, 0.14);
}
.savings-visual .compare-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  visibility: hidden;
}
.savings-band.compare-open .savings-grid {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  visibility: hidden;
}
.savings-band.compare-open .compare-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.compare-column {
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 7px;
}
.compare-column p {
  margin: 0 0 12px;
  color: #74d5a6;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.compare-column li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}
.compare-column li::before {
  position: absolute;
  left: 0;
  color: #74d5a6;
  content: "✓";
  font-weight: 800;
}
.compare-column.muted li {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}
.compare-column.muted li::before {
  color: #d46a63;
  content: "×";
}

.stats-bar {
  padding: 30px 0;
  background: var(--green-dark);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child { border-right: 0; }
.mini-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green);
  background: rgba(15, 143, 95, 0.16);
  border-radius: 8px;
  flex: 0 0 auto;
}
.stat-num {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 800;
  line-height: 1.08;
}
.stat-label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.section { padding: 82px 0; }
.section.alt { background: var(--paper); }
.focus-band {
  padding: 84px 0;
  background: #f2f6f3;
}
.focus-heading {
  max-width: 680px;
  margin-bottom: 34px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.focus-card {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(7, 27, 20, 0.06);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.focus-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 54px;
  content: "";
  background: rgba(15, 143, 95, 0.1);
  border-radius: 50%;
  transform: scale(0.7);
  transition: transform 0.22s ease, background 0.22s ease;
}
.focus-card:hover {
  background: var(--white);
  box-shadow: 0 20px 48px rgba(7, 27, 20, 0.12);
  transform: translateY(-6px);
}
.focus-card:hover::after {
  background: rgba(15, 143, 95, 0.16);
  transform: scale(2.2);
}
.focus-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  background: rgba(15, 143, 95, 0.1);
  border-radius: 8px;
}
.focus-icon svg {
  width: 21px;
  height: 21px;
}
.focus-kicker {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.focus-card h3,
.focus-card p {
  position: relative;
  z-index: 1;
}
.focus-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
}
.focus-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-tag {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-copy p {
  margin: 16px 0 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}
.feature-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(7, 27, 20, 0.06);
}
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green);
  background: rgba(15, 143, 95, 0.1);
  border-radius: 8px;
}
.info-card h3 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  font-family: var(--font-heading);
  font-size: 16px;
}
.info-card p, .info-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
.info-card ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 32px; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--text); line-height: 1.6; }
.check-list svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; margin-top: 3px; }

.detail-band {
  padding: 82px 0;
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.detail-copy p {
  margin: 16px 0 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}
.detail-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(7, 27, 20, 0.07);
}
.detail-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.32;
}
.detail-card p,
.faq-item p,
.rich-list li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}
.image-card {
  display: grid;
  gap: 22px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}
.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.image-card > div { padding: 0 28px 28px; }
.process-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.process-list li {
  position: relative;
  min-height: 74px;
  padding: 18px 20px 18px 74px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.process-list li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
}
.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 15px;
}
.process-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.rich-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.rich-list li {
  position: relative;
  padding-left: 24px;
}
.rich-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}
.faq-section {
  padding: 82px 0;
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-item {
  min-height: 168px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-map {
  min-height: 330px;
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 20, 0.96), rgba(12, 45, 32, 0.98)),
    radial-gradient(circle at 80% 15%, rgba(118, 220, 170, 0.16), transparent 34%);
  color: var(--white);
}
.map-meta {
  display: grid;
  gap: 14px;
  max-width: 330px;
  margin-left: auto;
}
.map-meta > a:not(.map-link) {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}
.map-label {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.map-card {
  position: relative;
  min-height: 160px;
  display: block;
  padding: 22px;
  overflow: hidden;
  background: #f6f7f1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, box-shadow 0.24s ease, min-height 0.24s ease;
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.28;
  filter: grayscale(0.66) sepia(0.2) hue-rotate(78deg) saturate(1.28) brightness(1.08);
  pointer-events: none;
  transition: opacity 0.24s ease, filter 0.24s ease;
}
.map-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, rgba(246, 247, 241, 0.92), rgba(246, 247, 241, 0.5));
  transition: opacity 0.24s ease;
}
.map-pin {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  background: rgba(15, 143, 95, 0.12);
  border: 1px solid rgba(15, 143, 95, 0.2);
  border-radius: 50%;
}
.map-pin svg {
  width: 19px;
  height: 19px;
}
.map-dot {
  position: absolute;
  right: 28px;
  top: 25px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #76dcaa;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(118, 220, 170, 0.13);
}
.map-card strong,
.map-card small {
  position: relative;
  z-index: 1;
  display: block;
}
.map-card strong {
  margin-top: 86px;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 16px;
}
.map-card small {
  margin-top: 5px;
  color: var(--text);
  font-size: 13px;
}
.map-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
}
.map-link:hover {
  color: #76dcaa;
}
.map-card:hover,
.map-card:focus-visible,
.map-card.map-active {
  min-height: 208px;
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}
.map-card:hover iframe,
.map-card:focus-visible iframe,
.map-card.map-active iframe {
  opacity: 0.82;
  filter: grayscale(0.34) sepia(0.18) hue-rotate(78deg) saturate(1.42) brightness(0.95);
}
.map-card:hover::after,
.map-card:focus-visible::after,
.map-card.map-active::after {
  opacity: 0.34;
}
.map-card:hover .map-dot,
.map-card:focus-visible .map-dot,
.map-card.map-active .map-dot {
  animation: map-pulse 1s ease-in-out infinite;
}

@keyframes map-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(118, 220, 170, 0.13); }
  50% { box-shadow: 0 0 0 14px rgba(118, 220, 170, 0.22); }
}

.split-band {
  padding: 82px 0;
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.sticky-copy {
  position: sticky;
  top: 92px;
}
.stack-list {
  display: grid;
  gap: 16px;
}
.stack-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(7, 27, 20, 0.05);
}
.stack-num {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
}
.stack-item h3,
.plan-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
}
.stack-item p,
.plan-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.plan-band {
  padding: 82px 0;
  background: var(--green-dark);
  color: var(--white);
}
.plan-band .section-title,
.plan-band .section-tag { color: var(--white); }
.plan-band .section-header { text-align: left; margin-left: 0; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-card {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.plan-card h3 { color: #78d8a7; }
.plan-card p { color: rgba(255, 255, 255, 0.72); }
.plan-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}
.plan-card li::before {
  content: "- ";
  color: #78d8a7;
}
.seo-section .content-stack {
  display: grid;
  gap: 18px;
}
.package-band {
  padding: 82px 0;
  background: var(--paper);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 27, 20, 0.07);
}
.package-card.featured {
  border-color: rgba(68, 148, 99, 0.62);
  box-shadow: 0 24px 68px rgba(68, 148, 99, 0.16);
}
.package-badge {
  position: absolute;
  top: -15px;
  left: 34px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 24px;
}
.package-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.package-card ul {
  display: grid;
  gap: 13px;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.package-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(68, 148, 99, 0.14);
}
.package-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.35em + 5px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.note-band {
  padding: 58px 0;
  background: var(--mint);
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.note-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.note-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 17px;
}
.note-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.blog-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.blog-feature p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(7, 27, 20, 0.06);
}
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.blog-card div {
  padding: 24px;
}
.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.32;
}
.blog-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.blog-card a {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}
.article-page {
  background: var(--white);
}
.article-hero {
  padding: 118px 0 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.article-hero p:not(.section-tag) {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}
.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 27, 20, 0.14);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 0.36fr);
  gap: clamp(34px, 6vw, 86px);
  padding-top: 72px;
  padding-bottom: 90px;
}
.article-body {
  display: grid;
  gap: 34px;
}
.article-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.article-body p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}
.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.article-aside h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
}
.article-aside a:not(.btn) {
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}
.article-aside .btn {
  justify-content: center;
  margin-top: 8px;
}
.home-blog-grid {
  margin-bottom: 28px;
}
.center-action {
  display: flex;
  justify-content: center;
}

.dark-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: var(--white);
  background: var(--green-dark);
}
.dark-cta::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  content: "";
  background: radial-gradient(circle, rgba(15, 143, 95, 0.28), transparent 68%);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}
.cta-inner p { color: rgba(255, 255, 255, 0.72); line-height: 1.8; }
.cta-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.contact-panel, .form-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(7, 27, 20, 0.07);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: var(--text); font-family: var(--font-heading); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { min-height: 138px; resize: vertical; }
.wide { grid-column: 1 / -1; }

.footer {
  padding: 62px 0 0;
  color: rgba(255, 255, 255, 0.66);
  background: #0b1712;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .logo { color: var(--white); margin-bottom: 18px; }
.footer p { color: rgba(255, 255, 255, 0.78); font-size: 13px; line-height: 1.75; }
.footer-contact-link {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}
.footer-contact-link:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}
.footer-social a:hover {
  color: var(--white);
  background: rgba(15, 143, 95, 0.24);
  border-color: rgba(15, 143, 95, 0.42);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social svg rect,
.footer-social svg circle,
.footer-social svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.footer-social a[aria-label="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}
.footer-title {
  display: block;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.footer a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(7, 27, 20, 0.26);
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.whatsapp-float img {
  width: 31px;
  height: 31px;
}
.quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(7, 27, 20, 0.46);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  width: min(440px, 100%);
  height: 100vh;
  padding: 34px;
  overflow-y: auto;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 64px rgba(7, 27, 20, 0.22);
  transform: translateX(100%);
  transition: transform 0.26s ease;
}
.quote-open {
  overflow: hidden;
}
.quote-open .quote-overlay {
  opacity: 1;
}
.quote-open .quote-drawer {
  transform: translateX(0);
}
.quote-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--white);
  cursor: pointer;
}
.quote-close svg {
  width: 20px;
  height: 20px;
}
.quote-drawer h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.quote-intro {
  margin: 16px 0 24px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}
.quote-form {
  display: grid;
  gap: 14px;
}
.quote-form textarea {
  min-height: 116px;
}
.quote-form .btn {
  width: 100%;
  margin-top: 4px;
}
.promo-widget {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 125;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.promo-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.promo-bag {
  position: relative;
  display: block;
  width: 92px;
  height: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 14px 20px rgba(7, 27, 20, 0.18));
  cursor: pointer;
  animation: bag-nudge 1.9s ease-in-out infinite;
}
.promo-notice {
  position: absolute;
  left: 42px;
  bottom: 54px;
  z-index: 3;
  min-width: 92px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(7, 27, 20, 0.12);
}
.promo-notice::before {
  position: absolute;
  left: -7px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.bag-handle {
  position: absolute;
  left: 32px;
  top: 0;
  width: 30px;
  height: 25px;
  border: 7px solid #0b704b;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.bag-body {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 80px;
  height: 62px;
  overflow: hidden;
  background: #07583c;
  border: 3px solid #0b704b;
  border-radius: 13px 13px 12px 12px;
}
.bag-flap {
  position: absolute;
  inset: 0 0 auto;
  height: 30px;
  background: #119461;
  border-bottom: 3px solid #064b34;
  border-radius: 10px 10px 2px 2px;
}
.bag-strap {
  position: absolute;
  top: 0;
  width: 9px;
  height: 54px;
  background: #68d19f;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  border-right: 2px solid rgba(7, 27, 20, 0.12);
  border-radius: 0 0 999px 999px;
}
.bag-strap-left {
  left: 19px;
}
.bag-strap-right {
  right: 19px;
}
.bag-buckle {
  position: absolute;
  top: 34px;
  width: 18px;
  height: 13px;
  background: #e8f8b7;
  border: 2px solid #0b704b;
  border-radius: 3px;
}
.bag-buckle-left {
  left: 14px;
}
.bag-buckle-right {
  right: 14px;
}
.bag-badge {
  position: absolute;
  left: 50%;
  top: 13px;
  width: 17px;
  height: 17px;
  background: #e8f8b7;
  border: 2px solid #0b704b;
  border-radius: 50%;
  transform: translateX(-50%);
}
.promo-open .promo-bag {
  animation: none;
  transform: translateY(-2px);
}
.promo-pop {
  position: absolute;
  left: 0;
  bottom: 88px;
  width: min(330px, calc(100vw - 32px));
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 27, 20, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: left bottom;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.promo-open .promo-pop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--white);
  cursor: pointer;
}
.promo-close svg {
  width: 16px;
  height: 16px;
}
.promo-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.promo-pop strong {
  display: block;
  max-width: 230px;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.2;
}
.promo-pop p {
  margin: 12px 0 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}
.promo-pop .btn {
  width: 100%;
}

@keyframes bag-nudge {
  0%, 70%, 100% { transform: translateX(0) rotate(0); }
  76% { transform: translateX(-2px) rotate(-4deg); }
  82% { transform: translateX(3px) rotate(5deg); }
  88% { transform: translateX(-2px) rotate(-3deg); }
  94% { transform: translateX(2px) rotate(2deg); }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(7, 27, 20, 0.12);
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease;
  }
  .nav.open {
    max-height: 520px;
    padding: 12px 20px 18px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a,
  .nav-drop-toggle {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-dropdown {
    display: grid;
    width: 100%;
  }
  .nav-drop-toggle {
    justify-content: space-between;
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 16px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.22s ease, padding 0.22s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 260px;
    padding: 2px 0 6px 16px;
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 12px 0;
    border-radius: 0;
    font-size: 12px;
  }
  .nav-dropdown-menu a:hover {
    background: transparent;
  }
  .nav a:last-child { border-bottom: 0; }
  .topbar { padding: 0 18px; }
  .phone-link span { display: none; }
  .services-grid, .stats-inner, .savings-inner, .cards-grid, .cards-grid.four, .focus-grid, .feature-row, .cta-inner, .contact-layout, .detail-grid, .faq-grid, .split-layout, .plan-grid, .package-grid, .note-grid, .blog-feature, .blog-grid, .article-hero-grid, .article-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-copy { position: static; }
  .article-aside { position: static; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .feature-row.reverse .feature-copy { order: initial; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (min-width: 821px) and (max-width: 980px) {
  .menu-toggle {
    display: none;
  }
  .nav {
    position: static;
    display: flex;
    grid-template-columns: none;
    gap: clamp(18px, 2.4vw, 30px);
    max-height: none;
    padding: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }
  .nav a,
  .nav-drop-toggle {
    padding: 18px 0;
    border-bottom: 0;
  }
  .nav-dropdown {
    display: inline-flex;
    width: auto;
  }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 210px;
    max-height: none;
    padding: 10px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(7, 27, 20, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 6px;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1200px); }
  .topbar { gap: 10px; }
  .logo { min-width: 92px; }
  .logo-img { height: 40px; }
  .topbar-right { display: none; }
  .btn { padding: 11px 16px; }
  .hero { min-height: 660px; }
  h1 { font-size: clamp(36px, 12vw, 52px); }
  .hero-content { padding: 56px 0; }
  .feature-img, .cta-image, .blog-feature img { height: 290px; }
  .savings-grid {
    grid-template-columns: 1fr;
  }
  .savings-grid span {
    min-height: 54px;
  }
  .savings-toggle {
    width: 100%;
  }
  .savings-visual {
    min-height: 360px;
  }
  .compare-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .compare-column {
    padding: 14px;
  }
  .stat-item {
    padding-inline: 0;
  }
  .stats-inner {
    gap: 0;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11px;
  }
  .contact-panel, .form-card, .info-card, .detail-card, .faq-item, .stack-item, .plan-card, .note-card, .focus-card { padding: 24px; }
  .focus-band { padding: 58px 0; }
  .focus-card { min-height: 220px; }
  .image-card { padding: 0; }
  .image-card > div { padding: 0 22px 24px; }
  .process-list li { padding-left: 66px; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .promo-widget {
    left: 16px;
    bottom: 16px;
  }
  .promo-bag {
    width: 84px;
    height: 72px;
  }
  .promo-notice {
    left: 38px;
    bottom: 50px;
    min-width: 86px;
    font-size: 10px;
  }
  .bag-body {
    width: 74px;
    height: 58px;
  }
  .quote-drawer {
    width: 100%;
    padding: 26px 20px;
  }
  .quote-drawer h2 {
    font-size: 26px;
  }
}

/* Ballad-style location card and focus stack refinements */
.location-band {
  padding: 82px 0;
  background: var(--white);
}
.location-panel {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(28px, 9vw, 160px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(118, 220, 170, 0.12), transparent 32%),
    linear-gradient(135deg, #082119, #0b2c20 72%, #0a241b);
  border: 1px solid rgba(118, 220, 170, 0.22);
  border-radius: 10px;
  box-shadow: 0 34px 80px rgba(7, 27, 20, 0.18);
}
.location-content {
  width: min(560px, 100%);
  margin: 0 auto;
}
.location-content .map-label {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.location-content .map-label + .map-email {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 31px);
  font-weight: 800;
}
.location-content .map-card {
  width: min(555px, 100%);
  min-height: 290px;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: var(--green-dark);
  background: #f5f7f0;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  transform: none;
}
.location-content .map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.28;
  filter: grayscale(0.72) sepia(0.18) hue-rotate(78deg) saturate(1.15) brightness(1.08);
  pointer-events: none;
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}
.location-content .map-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, rgba(245, 247, 240, 0.94), rgba(245, 247, 240, 0.48));
  transition: opacity 0.28s ease;
}
.location-content .map-pin {
  position: absolute;
  left: 38px;
  top: 38px;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--green);
  background: rgba(15, 143, 95, 0.14);
  border: 2px solid rgba(15, 143, 95, 0.18);
  border-radius: 50%;
}
.location-content .map-pin svg {
  width: 28px;
  height: 28px;
}
.location-content .map-dot {
  position: absolute;
  right: 48px;
  top: 44px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: #76dcaa;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(118, 220, 170, 0.15);
}
.location-content .map-card strong,
.location-content .map-card small {
  position: relative;
  z-index: 1;
  display: block;
  left: 38px;
  width: calc(100% - 76px);
}
.location-content .map-card strong {
  margin-top: 184px;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 32px);
  line-height: 1.1;
}
.location-content .map-card small {
  margin-top: 8px;
  color: #46534d;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 800;
}
.location-content .map-cursor {
  position: absolute;
  left: 124px;
  bottom: -28px;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: var(--white);
  clip-path: polygon(8% 0, 92% 50%, 52% 59%, 38% 100%);
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.75));
  transform: rotate(-18deg);
  transition: left 0.28s ease, bottom 0.28s ease, transform 0.28s ease;
}
.location-content .map-link {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 800;
}
.location-content .map-card:hover,
.location-content .map-card:focus-visible,
.location-content .map-card.map-active {
  min-height: 290px;
  transform: none;
  box-shadow: none;
}
.location-content .map-card:hover iframe,
.location-content .map-card:focus-visible iframe,
.location-content .map-card.map-active iframe {
  opacity: 0.62;
  filter: grayscale(0.5) sepia(0.18) hue-rotate(78deg) saturate(1.3) brightness(1.02);
  transform: scale(1.04);
}
.location-content .map-card:hover::after,
.location-content .map-card:focus-visible::after,
.location-content .map-card.map-active::after {
  opacity: 0.58;
}
.location-content .map-card:hover .map-cursor,
.location-content .map-card:focus-visible .map-cursor,
.location-content .map-card.map-active .map-cursor {
  left: 132px;
  bottom: -12px;
  transform: rotate(-12deg) translateY(-6px);
}
.location-content .map-card:hover .map-dot,
.location-content .map-card:focus-visible .map-dot,
.location-content .map-card.map-active .map-dot {
  animation: map-pulse 1s ease-in-out infinite;
}
.contact-process {
  width: min(780px, 100%);
  margin: 0 auto;
}

.focus-band {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 96px 0;
  overflow: hidden;
  background: #f5f6f1;
}
.focus-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.focus-heading {
  max-width: 520px;
  margin: 0;
}
.focus-heading p:not(.section-tag) {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}
.focus-stack {
  position: relative;
  min-height: 430px;
}
.focus-stack .focus-card {
  position: absolute;
  width: min(420px, 82%);
  min-height: 190px;
  display: grid;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(114, 128, 120, 0.22);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(7, 27, 20, 0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}
.focus-stack .focus-card::after {
  display: none;
}
.focus-stack .focus-card-one {
  left: 0;
  top: 26px;
  opacity: 0.74;
  transform: rotate(-2deg);
}
.focus-stack .focus-card-two {
  left: 78px;
  top: 118px;
  opacity: 0.86;
  transform: rotate(1deg);
}
.focus-stack .focus-card-three {
  right: 0;
  top: 212px;
  opacity: 1;
  transform: rotate(-1deg);
}
.focus-stack .focus-card:hover {
  opacity: 1;
  transform: translateY(-10px) rotate(0);
  box-shadow: 0 30px 72px rgba(7, 27, 20, 0.16);
}
.focus-stack .focus-icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  background: rgba(15, 143, 95, 0.1);
}
.focus-stack .focus-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 26px;
}
.focus-stack .focus-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}
.focus-stack .focus-card span:last-child {
  margin-top: 4px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .focus-stage {
    grid-template-columns: 1fr;
  }
  .focus-stack {
    min-height: 560px;
  }
  .focus-stack .focus-card {
    width: min(520px, 100%);
    left: 0;
    right: auto;
  }
  .focus-stack .focus-card-one { top: 0; }
  .focus-stack .focus-card-two { top: 174px; }
  .focus-stack .focus-card-three { top: 348px; }
}

@media (max-width: 620px) {
  .location-band {
    padding: 48px 0;
  }
  .location-panel {
    padding: 36px 20px;
  }
  .location-content .map-label {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .location-content .map-label + .map-email {
    margin-bottom: 38px;
    font-size: 22px;
  }
  .location-content .map-card {
    min-height: 230px;
  }
  .location-content .map-card strong {
    margin-top: 142px;
    font-size: 24px;
  }
  .location-content .map-card small {
    font-size: 18px;
  }
  .location-content .map-cursor {
    left: 88px;
  }
  .focus-band {
    min-height: auto;
    padding: 58px 0;
  }
  .focus-stack .focus-card {
    min-height: 166px;
    padding: 22px;
  }
}

/* Ballad contact clone: contact map and focus cards */
.location-band {
  padding: 112px 0;
  background: #171918;
  color: #f3f0ea;
}
.ballad-contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.92fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}
.ballad-contact-shell h2 {
  margin: 0;
  color: #f3f0ea;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.4vw, 74px);
  font-weight: 500;
  letter-spacing: 0;
}
.ballad-contact-info {
  display: grid;
  gap: 40px;
}
.ballad-meta {
  margin: 0 0 18px;
  color: rgba(243, 240, 234, 0.42);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ballad-email {
  color: #f3f0ea;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
}
.ballad-location-block {
  width: min(100%, 430px);
}
.ballad-map-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ballad-map-card {
  position: relative;
  display: block;
  width: min(100%, 348px);
  height: 160px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  color: #17251f;
  background: #f3f0ea;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: width 0.55s ease, height 0.55s ease, transform 0.55s ease, box-shadow 0.55s ease;
}
.ballad-map-card iframe {
  position: absolute;
  inset: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  border: 0;
  opacity: 0.16;
  filter: grayscale(0.8) sepia(0.16) hue-rotate(70deg) saturate(1.2) brightness(1.12);
  pointer-events: none;
}
.ballad-map-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(243, 240, 234, 0.88), rgba(243, 240, 234, 0.72));
}
.ballad-map-icon,
.ballad-map-dot,
.ballad-map-copy,
.ballad-map-hint {
  position: absolute;
  z-index: 1;
}
.ballad-map-icon {
  left: 22px;
  top: 22px;
  color: #35b884;
}
.ballad-map-icon svg {
  width: 22px;
  height: 22px;
}
.ballad-map-dot {
  right: 28px;
  top: 26px;
  width: 9px;
  height: 9px;
  background: #55d6a2;
  border-radius: 999px;
  box-shadow: 0 0 0 9px rgba(85, 214, 162, 0.1);
}
.ballad-map-copy {
  left: 28px;
  right: 26px;
  bottom: 25px;
  display: grid;
  gap: 8px;
}
.ballad-map-copy strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}
.ballad-map-copy small {
  max-width: 360px;
  color: rgba(23, 37, 31, 0.78);
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease 0.18s, transform 0.28s ease 0.18s;
}
.ballad-map-hint {
  left: 50%;
  bottom: -30px;
  color: rgba(243, 240, 234, 0.42);
  font-size: 10px;
  white-space: nowrap;
  transform: translateX(-50%) translateY(4px);
}
.ballad-map-card:hover {
  transform: perspective(900px) rotateX(1deg) rotateY(-3deg);
}
.ballad-map-toggle:checked + .ballad-map-card {
  width: min(430px, calc(100vw - 36px));
  height: 320px;
  transform: perspective(900px) rotateX(2deg) rotateY(-8deg);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  opacity: 1;
  transform: translateY(0);
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-hint {
  display: none;
}
.ballad-map-link {
  display: inline-flex;
  margin-top: 16px;
  color: rgba(243, 240, 234, 0.38);
  font-size: 15px;
  font-weight: 700;
}

.focus-band {
  min-height: 780px;
  display: block;
  padding: 96px 0 142px;
  overflow: hidden;
  background: #f2efea;
}
.ballad-focus-stage {
  display: grid;
  justify-items: center;
}
.ballad-focus-heading {
  text-align: center;
}
.ballad-focus-heading h2 {
  margin: 0 0 28px;
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
}
.ballad-focus-heading p {
  margin: 0;
  color: rgba(26, 26, 26, 0.48);
  font-size: 18px;
}
.ballad-focus-stack {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  width: min(520px, 92vw);
  min-height: 430px;
  margin-top: 94px;
}
.ballad-focus-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ballad-focus-card {
  position: relative;
  grid-area: stack;
  display: flex;
  width: min(420px, 74vw);
  height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: rgba(26, 26, 26, 0.72);
  background: rgba(247, 247, 244, 0.72);
  border: 2px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  box-shadow: 0 22px 58px rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(10px);
  filter: grayscale(1);
  transform: skewY(-8deg);
  transition: transform 0.55s ease, filter 0.55s ease, z-index 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}
.ballad-focus-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: rgba(242, 239, 234, 0.55);
  transition: opacity 0.55s ease;
}
.ballad-focus-card::after {
  position: absolute;
  top: -5%;
  right: -4px;
  width: 86%;
  height: 110%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(270deg, #f2efea, rgba(242, 239, 234, 0));
}
.ballad-focus-card > * {
  position: relative;
  z-index: 1;
}
.ballad-focus-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}
.ballad-focus-card i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}
.ballad-focus-card i svg {
  width: 16px;
  height: 16px;
}
.ballad-focus-card strong {
  font-size: 19px;
  font-weight: 500;
}
.ballad-focus-card small {
  color: rgba(26, 26, 26, 0.42);
  font-size: 14px;
}
.ballad-focus-one {
  z-index: 1;
  transform: translate(0, 0) skewY(-8deg);
}
.ballad-focus-two {
  z-index: 2;
  transform: translate(64px, 42px) skewY(-8deg);
}
.ballad-focus-three {
  z-index: 3;
  transform: translate(128px, 84px) skewY(-8deg);
}
.ballad-focus-card:hover,
#focus-adres:checked ~ .ballad-focus-one,
#focus-alan:checked ~ .ballad-focus-two,
#focus-gorusme:checked ~ .ballad-focus-three {
  z-index: 8;
  filter: grayscale(0);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 76px rgba(26, 26, 26, 0.14);
}
.ballad-focus-card:hover::before,
#focus-adres:checked ~ .ballad-focus-one::before,
#focus-alan:checked ~ .ballad-focus-two::before,
#focus-gorusme:checked ~ .ballad-focus-three::before {
  opacity: 0;
}
.ballad-focus-one:hover,
#focus-adres:checked ~ .ballad-focus-one {
  transform: translate(0, -72px) skewY(-8deg);
}
.ballad-focus-two:hover,
#focus-alan:checked ~ .ballad-focus-two {
  transform: translate(64px, -36px) skewY(-8deg);
}
.ballad-focus-three:hover,
#focus-gorusme:checked ~ .ballad-focus-three {
  transform: translate(128px, 10px) skewY(-8deg);
}

@media (max-width: 760px) {
  .ballad-contact-shell {
    grid-template-columns: 1fr;
  }
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(100%, 430px);
    transform: perspective(900px) rotateX(1deg) rotateY(-3deg);
  }
  .ballad-focus-one {
    transform: translate(0, 0) skewY(-8deg);
  }
  .ballad-focus-two {
    transform: translate(40px, 32px) skewY(-8deg);
  }
  .ballad-focus-three {
    transform: translate(80px, 64px) skewY(-8deg);
  }
  .ballad-focus-one:hover,
  #focus-adres:checked ~ .ballad-focus-one {
    transform: translate(0, -56px) skewY(-8deg);
  }
  .ballad-focus-two:hover,
  #focus-alan:checked ~ .ballad-focus-two {
    transform: translate(40px, -24px) skewY(-8deg);
  }
  .ballad-focus-three:hover,
  #focus-gorusme:checked ~ .ballad-focus-three {
    transform: translate(80px, 8px) skewY(-8deg);
  }
}

/* Animated Ballad-style map illustration */
.ballad-map-card {
  height: 158px;
  background:
    linear-gradient(90deg, rgba(243, 240, 234, 0.94), rgba(243, 240, 234, 0.82)),
    #f3f0ea;
  transform-style: preserve-3d;
  will-change: transform, width, height;
}
.ballad-map-card iframe {
  display: none;
}
.ballad-map-card::after {
  display: none;
}
.ballad-map-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.12) 1px, transparent 1px);
  background-size: 86px 64px;
  transform: scale(1.04);
  transition: opacity 0.45s ease, background-size 0.55s ease;
}
.ballad-map-road,
.ballad-map-block,
.ballad-map-pin-big {
  position: absolute;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.19, 1, 0.22, 1);
}
.ballad-map-road {
  background: rgba(26, 26, 26, 0.18);
  border-radius: 999px;
}
.road-a {
  left: -8%;
  top: 37%;
  width: 116%;
  height: 6px;
}
.road-b {
  left: -4%;
  top: 74%;
  width: 108%;
  height: 6px;
}
.road-c {
  left: 31%;
  top: -8%;
  width: 6px;
  height: 116%;
}
.ballad-map-block {
  background: rgba(92, 92, 88, 0.28);
  border: 2px solid rgba(92, 92, 88, 0.18);
  border-radius: 12px;
}
.block-a {
  left: 10%;
  top: 42%;
  width: 96px;
  height: 82px;
}
.block-b {
  left: 36%;
  top: 16%;
  width: 78px;
  height: 62px;
}
.block-c {
  right: 10%;
  top: 24%;
  width: 82px;
  height: 116px;
}
.block-d {
  right: 7%;
  bottom: 11%;
  width: 120px;
  height: 76px;
}
.ballad-map-pin-big {
  left: 49%;
  top: 45%;
  width: 42px;
  height: 52px;
  background: #35d39b;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 20px rgba(53, 211, 155, 0.13);
  transform: translate(-50%, -50%) rotate(-45deg) scale(0.74);
}
.ballad-map-pin-big::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  content: "";
  background: #f3f0ea;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ballad-map-copy {
  bottom: 22px;
}
.ballad-map-copy strong {
  opacity: 1;
  transition: transform 0.34s ease, opacity 0.34s ease;
}
.ballad-map-copy small {
  max-width: 390px;
}
.ballad-map-toggle:checked + .ballad-map-card {
  width: min(840px, calc(100vw - 36px));
  height: 590px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-visual {
  opacity: 1;
  background-size: 118px 94px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-road,
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-block,
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-pin-big {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-pin-big {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  transition-delay: 0.16s;
}
.ballad-map-toggle:checked + .ballad-map-card .road-a { transition-delay: 0.04s; }
.ballad-map-toggle:checked + .ballad-map-card .road-b { transition-delay: 0.1s; }
.ballad-map-toggle:checked + .ballad-map-card .road-c { transition-delay: 0.14s; }
.ballad-map-toggle:checked + .ballad-map-card .block-a { transition-delay: 0.18s; }
.ballad-map-toggle:checked + .ballad-map-card .block-b { transition-delay: 0.24s; }
.ballad-map-toggle:checked + .ballad-map-card .block-c { transition-delay: 0.3s; }
.ballad-map-toggle:checked + .ballad-map-card .block-d { transition-delay: 0.36s; }
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
  bottom: 28px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
  font-size: 24px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  font-size: 20px;
}

.focus-band {
  display: none;
}

@media (max-width: 760px) {
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(100%, 430px);
    height: 360px;
  }
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
    font-size: 18px;
  }
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    font-size: 14px;
  }
}

/* Light location variant and steadier Ballad interactions */
.location-band {
  background: #f2efea;
  color: #1a1a1a;
}
.ballad-contact-shell h2 {
  color: #1a1a1a;
}
.ballad-meta {
  color: rgba(26, 26, 26, 0.42);
}
.ballad-email {
  color: #1a1a1a;
}
.ballad-map-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: 0 20px 54px rgba(26, 26, 26, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}
.ballad-map-card:hover {
  --tilt-x: 1deg;
  --tilt-y: -3deg;
  --lift: -8px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}
.ballad-map-card.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}
.ballad-map-toggle:checked + .ballad-map-card {
  width: min(430px, calc(100vw - 36px));
  height: 320px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
  font-size: 15px;
}
.ballad-map-link,
.ballad-map-hint {
  color: rgba(26, 26, 26, 0.45);
}
.home-location-band {
  padding-top: 96px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.ballad-location-block {
  width: min(860px, calc(100vw - 40px));
  max-width: none;
}

.ballad-focus-card {
  height: 152px;
}
.ballad-focus-card:hover,
.ballad-focus-card.is-active,
#focus-adres:checked ~ .ballad-focus-one,
#focus-alan:checked ~ .ballad-focus-two,
#focus-gorusme:checked ~ .ballad-focus-three {
  z-index: 8;
  filter: grayscale(0);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 76px rgba(26, 26, 26, 0.14);
}
.ballad-focus-card:hover::before,
.ballad-focus-card.is-active::before,
#focus-adres:checked ~ .ballad-focus-one::before,
#focus-alan:checked ~ .ballad-focus-two::before,
#focus-gorusme:checked ~ .ballad-focus-three::before {
  opacity: 0;
}
.ballad-focus-one:hover,
.ballad-focus-one.is-active,
#focus-adres:checked ~ .ballad-focus-one {
  transform: translate(0, -44px) skewY(-8deg);
}
.ballad-focus-two:hover,
.ballad-focus-two.is-active,
#focus-alan:checked ~ .ballad-focus-two {
  transform: translate(64px, -10px) skewY(-8deg);
}
.ballad-focus-three:hover,
.ballad-focus-three.is-active,
#focus-gorusme:checked ~ .ballad-focus-three {
  transform: translate(128px, 28px) skewY(-8deg);
}

@media (max-width: 760px) {
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(100%, 430px);
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  }
  .ballad-focus-one:hover,
  .ballad-focus-one.is-active,
  #focus-adres:checked ~ .ballad-focus-one {
    transform: translate(0, -34px) skewY(-8deg);
  }
  .ballad-focus-two:hover,
  .ballad-focus-two.is-active,
  #focus-alan:checked ~ .ballad-focus-two {
    transform: translate(40px, -4px) skewY(-8deg);
  }
  .ballad-focus-three:hover,
  .ballad-focus-three.is-active,
  #focus-gorusme:checked ~ .ballad-focus-three {
    transform: translate(80px, 28px) skewY(-8deg);
  }
}

/* Final premium map composition */
.ballad-contact-shell {
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
}
.ballad-location-copy {
  max-width: 520px;
}
.ballad-location-copy h2 {
  margin: 0 0 22px;
  color: #171918;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
}
.ballad-location-copy p:not(.ballad-meta) {
  max-width: 430px;
  margin: 0 0 26px;
  color: rgba(26, 26, 26, 0.62);
  font-size: 17px;
  line-height: 1.75;
}
.ballad-location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ballad-location-points span {
  padding: 9px 13px;
  color: #0e7b58;
  background: rgba(53, 184, 132, 0.1);
  border: 1px solid rgba(53, 184, 132, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.ballad-contact-info {
  justify-items: start;
}
.ballad-location-block {
  width: min(860px, 100%);
}
.ballad-map-card {
  width: min(340px, 100%);
  height: 310px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  border-color: rgba(26, 26, 26, 0.1);
  border-radius: 22px;
  background: #f4f1ec;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.13);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), height 0.7s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.32s ease, transform 0.12s ease-out;
}
.ballad-map-visual {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.08) 1px, transparent 1px);
  background-size: 88px 72px;
}
.ballad-map-road {
  background: rgba(26, 26, 26, 0.14);
  border-radius: 0;
}
.road-a {
  top: 34%;
  height: 5px;
}
.road-b {
  top: 70%;
  height: 5px;
}
.road-c {
  left: 31%;
  width: 5px;
}
.ballad-map-block {
  background: rgba(85, 85, 80, 0.2);
  border: 2px solid rgba(85, 85, 80, 0.12);
  border-radius: 15px;
  backdrop-filter: blur(1px);
}
.block-a {
  left: 10%;
  top: 44%;
  width: 12%;
  height: 18%;
}
.block-b {
  left: 38%;
  top: 18%;
  width: 11%;
  height: 14%;
}
.block-c {
  right: 11%;
  top: 24%;
  width: 13%;
  height: 24%;
}
.block-d {
  right: 6%;
  bottom: 12%;
  width: 20%;
  height: 16%;
}
.ballad-map-pin-big {
  left: 51%;
  top: 50%;
  width: 34px;
  height: 42px;
  background: #50c995;
  box-shadow: 0 0 0 22px rgba(80, 201, 149, 0.11);
}
.ballad-map-pin-big::after {
  width: 10px;
  height: 10px;
}
.ballad-map-visual::after {
  position: absolute;
  left: 56%;
  top: 27%;
  z-index: 1;
  width: 24px;
  height: 24px;
  content: "";
  background: #101010;
  clip-path: polygon(8% 0, 92% 48%, 54% 58%, 39% 100%);
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.82));
  opacity: 0;
  transform: translate(-8px, 8px) rotate(-18deg);
  transition: opacity 0.35s ease 0.24s, transform 0.55s cubic-bezier(0.19, 1, 0.22, 1) 0.24s;
}
.ballad-map-copy {
  left: 26px;
  right: 24px;
  bottom: 22px;
}
.ballad-map-copy strong {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ballad-map-copy small {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.45;
}
.ballad-map-toggle:checked + .ballad-map-card {
  width: min(100%, 540px);
  height: 330px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  box-shadow: 0 34px 92px rgba(26, 26, 26, 0.18);
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-visual {
  background-size: 110px 86px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-visual::after {
  opacity: 1;
  transform: translate(0, 0) rotate(-18deg);
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
  bottom: 30px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
  font-size: 18px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  font-size: 16px;
}
@media (max-width: 900px) {
  .ballad-contact-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .ballad-map-card {
    width: min(100%, 300px);
    height: 270px;
  }
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(100%, 380px);
    height: 310px;
  }
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
    font-size: 16px;
  }
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    font-size: 14px;
  }
}

/* Final compact map sizing */
.ballad-map-card {
  width: min(260px, 100%);
  height: 210px;
}
.ballad-map-toggle:checked + .ballad-map-card {
  width: min(100%, 380px);
  height: 200px;
}

@media (max-width: 760px) {
  .ballad-map-card {
    width: min(100%, 260px);
    height: 210px;
  }
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(100%, 340px);
    height: 200px;
  }
}

.ballad-map-card .ballad-map-copy {
  bottom: 18px;
}
.ballad-map-card .ballad-map-copy strong {
  font-size: 12px;
}
.ballad-map-card .ballad-map-copy small {
  display: none;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
  bottom: 24px;
}
.ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  display: block;
}

/* Contact page cleanup */
.contact-layout {
  align-items: start;
}
.contact-panel,
.form-card {
  padding: 28px;
}
.form-card {
  display: grid;
  gap: 16px;
}
.form-card .btn {
  width: fit-content;
}
.consent-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(7, 27, 20, 0.68);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}
.consent-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}
.consent-label span {
  display: block;
  min-width: 0;
}
.consent-label a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.utility-hero {
  min-height: calc(100vh - 260px);
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #f3faf6, #ffffff);
}
.utility-card {
  max-width: 860px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 27, 20, 0.08);
}
.utility-card h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}
.utility-card p {
  max-width: 680px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 20px;
}
.contact-location-final {
  padding: 64px 0 88px;
  background: #f8f6f1;
}
.contact-location-final .ballad-contact-shell {
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
}
.contact-location-final,
.contact-location-final .ballad-contact-info,
.contact-location-final .ballad-map-card,
.contact-location-final .ballad-map-copy,
.contact-location-final .ballad-map-link {
  font-family: var(--font-body);
}
.contact-location-final .ballad-location-copy h2 {
  max-width: 460px;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.045em;
}
.contact-location-final .ballad-location-copy p:not(.ballad-meta) {
  max-width: 420px;
  font-size: 15px;
}
.contact-location-final .ballad-meta {
  color: rgba(26, 26, 26, 0.52);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.contact-location-final .ballad-email {
  font-size: clamp(23px, 3vw, 34px);
}
.contact-location-final .ballad-map-copy {
  left: 24px;
  right: 20px;
  bottom: 18px;
}
.contact-location-final .ballad-map-copy strong {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.contact-location-final .ballad-map-copy small {
  max-width: 300px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.32;
}
.contact-location-final .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
  bottom: 18px;
}
.contact-location-final .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
  font-size: 13px;
}
.contact-location-final .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  font-size: 10.5px;
}
.home-location-band .ballad-contact-shell {
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
}
.home-location-band .ballad-location-copy h2 {
  max-width: 520px;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.home-location-band .ballad-location-copy p:not(.ballad-meta) {
  max-width: 520px;
  font-size: 16px;
}
.home-location-band,
.home-location-band .ballad-contact-info,
.home-location-band .ballad-map-card,
.home-location-band .ballad-map-copy,
.home-location-band .ballad-map-link {
  font-family: var(--font-body);
}
.home-location-band .ballad-map-copy {
  left: 24px;
  right: 20px;
  bottom: 18px;
}
.home-location-band .ballad-map-copy strong {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.home-location-band .ballad-map-copy small {
  max-width: 300px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.32;
}
.home-location-band .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
  bottom: 18px;
}
.home-location-band .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
  font-size: 13px;
}
.home-location-band .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
  font-size: 10.5px;
}

@media (max-width: 760px) {
  .contact-panel,
  .form-card {
    padding: 22px;
  }
  .form-card .btn {
    width: 100%;
  }
  .contact-location-final {
    padding: 48px 0 72px;
  }
  .contact-location-final .ballad-contact-shell {
    gap: 28px;
  }
  .home-location-band .ballad-location-copy h2 {
    font-size: 34px;
  }
}

/* Partner page */
.partner-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}
.partner-hero-bg {
  position: absolute;
  inset: 0;
}
.partner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.82) contrast(1.04);
}
.partner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.92), rgba(7, 27, 20, 0.66) 56%, rgba(7, 27, 20, 0.44)),
    radial-gradient(circle at 72% 26%, rgba(80, 201, 149, 0.26), transparent 34%);
}
.partner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
  min-height: 760px;
  padding-top: 150px;
  padding-bottom: 84px;
}
.partner-hero-copy {
  max-width: 860px;
}
.partner-hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.35vw, 78px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.partner-hero-copy h1 .headline-line {
  display: block;
}
.no-break {
  white-space: nowrap;
}
.partner-hero-copy h1 strong {
  color: #82e2b7;
}
.partner-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}
.partner-hero-card {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}
.partner-hero-card span,
.partner-products span {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-hero-card h2 {
  margin: 12px 0 20px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.partner-hero-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.partner-hero-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.partner-hero-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}
.partner-strip {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}
.partner-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(7, 27, 20, 0.13);
}
.partner-strip-grid div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.partner-strip-grid div:last-child {
  border-right: 0;
}
.partner-strip-grid strong {
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 16px;
}
.partner-strip-grid span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}
.partner-audience-grid,
.partner-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-audience-grid article,
.partner-benefit-grid article,
.partner-steps article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 27, 20, 0.06);
}
.partner-audience-grid h3,
.partner-benefit-grid h3,
.partner-steps h3,
.partner-products h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.partner-audience-grid p,
.partner-benefit-grid p,
.partner-steps p,
.partner-products p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.partner-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: partner-step;
}
.partner-steps article {
  position: relative;
  overflow: hidden;
}
.partner-steps article::after {
  position: absolute;
  right: -18px;
  top: -32px;
  color: rgba(15, 143, 95, 0.07);
  content: attr(data-step);
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
}
.partner-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
}
.partner-steps h3 {
  margin-top: 22px;
}
.partner-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.partner-split > div:first-child p:not(.section-tag) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}
.partner-right-column {
  display: grid;
  gap: 18px;
}
.partner-benefit-grid {
  grid-template-columns: repeat(2, 1fr);
}
.partner-benefit-grid article {
  background: var(--paper);
}
.partner-benefit-grid h3 {
  margin-top: 0;
}
.partner-earning-note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.partner-earning-note span {
  flex: 0 0 auto;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-earning-note p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.partner-license-note {
  padding: 26px;
  background: #edf8f2;
  border: 1px solid rgba(15, 143, 95, 0.2);
  border-radius: 8px;
}
.partner-license-note span {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-license-note h3 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.partner-license-note p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.partner-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-products article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 27, 20, 0.06);
}
.partner-products img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.partner-products div {
  padding: 22px;
}
.partner-products h3 {
  margin-top: 8px;
}
.partner-cta-band {
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(80, 201, 149, 0.24), transparent 32%),
    linear-gradient(135deg, #071b14, #10231c);
}
.partner-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}
.partner-cta-band .section-title {
  color: var(--white);
}
.partner-cta-band p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}
.partner-contact-card {
  display: grid;
  gap: 8px;
  width: min(340px, 100%);
  margin-top: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.partner-contact-card strong {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-contact-card a {
  color: var(--white);
  font-weight: 800;
}
.partner-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}
.partner-form textarea {
  min-height: 118px;
}
.partner-form .btn {
  width: fit-content;
}

@media (max-width: 1040px) {
  .partner-hero-grid,
  .partner-cta-grid,
  .partner-split {
    grid-template-columns: 1fr;
  }
  .partner-strip-grid,
  .partner-audience-grid,
  .partner-steps,
  .partner-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .partner-hero {
    min-height: auto;
  }
  .partner-hero-grid {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 58px;
  }
  .partner-hero-card,
  .partner-form {
    padding: 22px;
  }
  .partner-strip {
    margin-top: 0;
  }
  .partner-strip-grid,
  .partner-audience-grid,
  .partner-steps,
  .partner-products,
  .partner-benefit-grid {
    grid-template-columns: 1fr;
  }
  .partner-license-note {
    grid-column: auto;
  }
  .partner-earning-note {
    grid-column: auto;
    display: grid;
  }
  .partner-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .partner-strip-grid div:last-child {
    border-bottom: 0;
  }
  .partner-products img {
    height: 220px;
  }
  .partner-form .btn {
    width: 100%;
  }
}

.legal-card {
  max-width: 980px;
}
.legal-card h3 {
  margin: 20px 0 8px;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 15px;
}
.legal-card ul {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}
.legal-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-decision-band {
  background: linear-gradient(135deg, #f5f8f6, #ffffff);
}
.service-decision-card {
  max-width: 960px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(7, 27, 20, 0.07);
}
.service-decision-card .section-title {
  max-width: 780px;
}
.service-decision-card p:not(.section-tag) {
  max-width: 820px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.service-decision-card a:not(.btn) {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-decision-card .btn {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .section {
    padding: 64px 0;
  }
  .hero.hero-small {
    min-height: 500px;
  }
  .hero-content {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: clamp(34px, 7vw, 54px);
  }
  .cards-grid,
  .cards-grid.four,
  .faq-grid,
  .blog-grid,
  .package-grid,
  .note-grid {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 28px, 1200px);
  }
  .topbar {
    height: 56px;
    padding: 0 14px;
  }
  .logo-img {
    height: 36px;
  }
  .hero,
  .hero.hero-small {
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    padding: 48px 0 44px;
  }
  .eyebrow {
    margin-bottom: 12px;
    padding: 6px 11px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  h1,
  .hero h1,
  .utility-card h1 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .hero p,
  .utility-card p,
  .lead-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-actions,
  .utility-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .btn,
  .utility-actions .btn,
  .form-card .btn,
  .quote-form .btn {
    width: 100%;
    min-height: 42px;
  }
  .service-card,
  .info-card,
  .note-card,
  .faq-item,
  .package-card {
    padding: 20px;
  }
  .service-card {
    min-height: auto;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-title,
  .savings-copy h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.12;
  }
  .feature-img,
  .cta-image,
  .blog-feature img,
  .article-hero img {
    height: 230px;
  }
  .faq-item h3 {
    font-size: 16px;
  }
  .faq-item p,
  .article-body p {
    font-size: 14px;
    line-height: 1.68;
  }
  .form-card,
  .contact-panel,
  .partner-form,
  .quote-drawer {
    padding: 20px;
  }
  .consent-label {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    font-size: 11px;
    line-height: 1.45;
  }
  .blog-card img {
    height: 210px;
  }
  .footer {
    padding-top: 52px;
  }
  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 24px, 1200px);
  }
  .btn {
    padding-inline: 16px;
    font-size: 13px;
  }
  .section {
    padding: 52px 0;
  }
}


/* Final responsive cleanup: route guide, map CTA, comparison tables */
.route-guide-cta {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 430px);
  margin: 14px 0 8px;
}

.route-guide-arrow {
  display: block;
  width: 86px;
  height: 46px;
  overflow: visible;
  pointer-events: none;
}

.route-guide-arrow path {
  fill: none;
  stroke: rgba(15, 143, 95, 0.72);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 4 7;
}

.route-guide-arrow .route-guide-arrow-head {
  stroke-dasharray: none;
  stroke-linejoin: round;
}

.route-guide-card {
  padding: 14px 16px;
  background: rgba(234, 246, 240, 0.72);
  border: 1px solid rgba(15, 143, 95, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(7, 27, 20, 0.07);
}

.route-guide-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-guide-card p {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.route-guide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.route-guide-link:hover {
  background: #0d7d54;
  box-shadow: 0 12px 24px rgba(15, 143, 95, 0.18);
  transform: translateY(-1px);
}

.ballad-location-block {
  display: grid;
  grid-template-columns: minmax(250px, 380px) 86px minmax(180px, 248px);
  column-gap: 14px;
  row-gap: 12px;
  align-items: center;
  max-width: 760px;
}

.ballad-location-block > .ballad-meta {
  grid-column: 1 / -1;
}

.ballad-location-block > .ballad-map-card {
  grid-column: 1;
  grid-row: 2;
}

.ballad-location-block > .route-guide-cta {
  grid-column: 2 / 4;
  grid-row: 2;
  width: 100%;
  margin: 0;
}

.ballad-location-block > .ballad-map-link {
  grid-column: 1;
  grid-row: 3;
}

.ballad-location-block .route-guide-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ballad-location-block .route-guide-card p {
  max-width: 230px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}

.ballad-location-block .route-guide-link {
  min-height: 40px;
  padding: 10px 16px;
}

.cost-table,
.cost-table.cost-table-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(1080px, 100%);
  max-width: 1080px;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cost-table [role="row"],
.cost-table.cost-table-3 [role="row"] {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(160px, 0.66fr) minmax(260px, 1.18fr);
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(7, 27, 20, 0.055);
}

.cost-table [role="row"]:first-child {
  background: linear-gradient(135deg, #071b14, #10231c);
  border-color: rgba(15, 143, 95, 0.2);
  box-shadow: 0 18px 42px rgba(7, 27, 20, 0.13);
}

.cost-table span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.cost-table span:last-child {
  border-right: 0;
}

.cost-table [role="columnheader"] {
  color: #bdebd9;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cost-table [role="cell"]:first-child {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.cost-table [role="row"]:not(:first-child) span:nth-child(2) {
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.cost-table [role="row"]:not(:first-child) span:nth-child(2)::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(15, 143, 95, 0.1);
}

.cost-table [role="row"]:not(:first-child) span:last-child {
  color: var(--text);
  background: linear-gradient(90deg, rgba(234, 246, 240, 0.72), rgba(245, 248, 246, 0.42));
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 700;
}

.savings-visual {
  min-height: 190px;
}

.compare-panel {
  gap: 14px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.compare-column {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(7, 27, 20, 0.07);
}

.compare-column p {
  color: var(--green);
  font-size: 12px;
}

.compare-column li {
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.compare-column li::before {
  top: 0.02em;
  color: var(--green);
  font-size: 18px;
}

.compare-column.muted {
  background: #f8faf9;
}

.compare-column.muted li {
  color: #7c8882;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(124, 136, 130, 0.55);
}

.compare-column.muted li::before {
  color: #c7635b;
}

.route-hero {
  position: relative;
  min-height: min(640px, calc(100vh - 78px));
  display: grid;
  align-items: end;
  padding: 140px 0 72px;
  color: #fff;
  overflow: hidden;
}

.route-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.82) 0%, rgba(7, 27, 20, 0.54) 42%, rgba(7, 27, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 27, 20, 0.52), rgba(7, 27, 20, 0.08));
}

.route-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.route-hero .eyebrow {
  color: rgba(232, 255, 244, 0.82);
}

.route-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.route-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.route-hero .btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.route-intro-section {
  background: var(--paper);
}

.route-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.route-intro-grid p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.route-intro-grid a,
.route-method-card a {
  color: var(--green);
  font-weight: 800;
}

.route-summary-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(7, 27, 20, 0.08);
}

.route-summary-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
}

.route-summary-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-summary-card li {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(220, 232, 226, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.route-summary-card li:last-child {
  border-bottom: 0;
}

.route-summary-card span {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-methods-section {
  background: #fff;
}

.route-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-method-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(7, 27, 20, 0.045);
}

.route-method-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
}

.route-method-card p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.route-method-card p:last-child {
  margin-bottom: 0;
}

.route-method-card.highlighted {
  color: #fff;
  background: linear-gradient(135deg, var(--deep-green, #071b14), var(--green-dark));
  border-color: rgba(255, 255, 255, 0.12);
}

.route-method-card.highlighted h3 {
  color: #fff;
}

.route-method-card.highlighted p {
  color: rgba(255, 255, 255, 0.78);
}

.route-final-cta {
  background: var(--paper);
}

.route-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(7, 27, 20, 0.08);
}

.route-final-card h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
}

.route-final-card p:not(.section-tag) {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.route-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .route-guide-cta {
    grid-template-columns: 66px minmax(0, 1fr);
  }
  .route-guide-arrow {
    width: 66px;
  }
  .route-intro-grid,
  .route-final-card {
    grid-template-columns: 1fr;
  }
  .route-summary-card {
    position: static;
  }
  .route-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .route-hero {
    min-height: auto;
    padding: 106px 0 52px;
  }
  .route-hero h1 {
    max-width: 520px;
    font-size: clamp(34px, 10vw, 48px);
  }
  .route-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.6;
  }
  .route-methods-grid {
    grid-template-columns: 1fr;
  }
  .route-method-card,
  .route-summary-card,
  .route-final-card {
    padding: 22px;
    border-radius: 16px;
  }
}

@media (max-width: 760px) {
  .ballad-location-block {
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: 100%;
  }
  .ballad-location-block > .ballad-map-card {
    grid-column: 1;
    grid-row: 2;
  }
  .ballad-location-block > .route-guide-cta {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    margin-top: 8px;
  }
  .ballad-location-block > .ballad-map-link {
    grid-column: 1;
    grid-row: 4;
  }
  .ballad-location-block .route-guide-arrow {
    width: 36px;
    height: 28px;
    transform: rotate(68deg);
    transform-origin: center;
  }
  .ballad-location-block .route-guide-card {
    max-width: min(340px, 100%);
  }
  .ballad-location-block .route-guide-card p {
    max-width: none;
    margin-bottom: 8px;
    font-size: 12px;
  }
  .ballad-location-block .route-guide-link {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .cost-table,
  .cost-table.cost-table-3 {
    gap: 10px;
  }
  .cost-table [role="row"]:first-child {
    display: none;
  }
  .cost-table [role="row"],
  .cost-table.cost-table-3 [role="row"] {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
  }
  .cost-table span {
    display: block;
    padding: 0;
    border-right: 0;
    font-size: 13px;
  }
  .cost-table [role="cell"]:first-child {
    font-size: 15px;
  }
  .cost-table [role="row"]:not(:first-child) span:nth-child(2),
  .cost-table [role="row"]:not(:first-child) span:last-child {
    position: relative;
    padding-left: 86px;
    background: transparent;
    font-size: 12px;
    line-height: 1.45;
  }
  .cost-table [role="row"]:not(:first-child) span:nth-child(2)::before,
  .cost-table [role="row"]:not(:first-child) span:last-child::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 76px;
    height: auto;
    margin: 0;
    color: var(--green);
    background: transparent;
    box-shadow: none;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .cost-table [role="row"]:not(:first-child) span:nth-child(2)::before {
    content: "Avantaj";
  }
  .cost-table [role="row"]:not(:first-child) span:last-child::before {
    content: "Çözüm";
  }
  .savings-visual {
    min-height: 330px;
  }
  .compare-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .compare-column {
    padding: 16px;
    border-radius: 14px;
  }
  .compare-column ul {
    gap: 8px;
  }
  .compare-column li {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  body {
    overflow-x: hidden;
  }
  .route-guide-cta {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
  }
  .route-guide-arrow {
    justify-self: center;
    width: 58px;
    height: 26px;
    transform: rotate(82deg);
  }
  .route-guide-card {
    padding: 12px;
    border-radius: 14px;
  }
  .route-guide-card p {
    font-size: 12px;
  }
  .route-guide-link {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .route-hero {
    padding: 96px 0 42px;
  }
  .route-hero-overlay {
    background: linear-gradient(0deg, rgba(7, 27, 20, 0.82), rgba(7, 27, 20, 0.34));
  }
  .route-hero .hero-actions,
  .route-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .route-hero .btn,
  .route-final-actions .btn {
    width: 100%;
  }
  .route-intro-grid {
    gap: 22px;
  }
  .route-intro-grid p,
  .route-method-card p,
  .route-final-card p:not(.section-tag) {
    font-size: 14px;
    line-height: 1.65;
  }
  .route-summary-card ul {
    gap: 6px;
  }
  .route-summary-card li {
    padding: 9px 0;
    font-size: 13px;
  }
  .route-method-card h3 {
    font-size: 20px;
  }
  .hero,
  .hero.hero-small {
    min-height: auto;
  }
  .hero-content {
    padding-top: 44px;
    padding-bottom: 42px;
  }
  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 24px, 1200px);
  }
  .btn {
    padding-inline: 16px;
    font-size: 13px;
  }
  .cost-table [role="row"]:not(:first-child) span:nth-child(2),
  .cost-table [role="row"]:not(:first-child) span:last-child {
    padding-left: 78px;
  }
  .cost-table [role="row"]:not(:first-child) span:nth-child(2)::before,
  .cost-table [role="row"]:not(:first-child) span:last-child::before {
    width: 68px;
    font-size: 9px;
  }
}

/* Final Ballad polish: quieter service pages, fewer bulky CTAs, safer mobile layout */
body.service-page .hero.hero-small {
  min-height: clamp(460px, 58vh, 560px);
}

body.service-page .section.seo-section,
body.service-page .section.alt,
body.service-page .detail-band,
body.service-page .note-band,
body.service-page .faq-section {
  padding-block: clamp(52px, 6vw, 76px);
}

body.service-page .seo-section .split-layout {
  align-items: stretch;
}

body.service-page .sticky-copy,
body.service-page .content-stack .note-card,
body.service-page .info-card,
body.service-page .detail-card,
body.service-page .faq-item {
  border-radius: 14px;
}

body.service-page .sticky-copy {
  align-self: stretch;
  position: relative;
  top: auto;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, #ffffff 0%, #f5f8f6 100%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(7, 27, 20, 0.06);
}

body.service-page .sticky-copy .lead-text {
  margin-top: 16px;
}

body.service-page .content-stack {
  gap: 14px;
}

body.service-page .content-stack .note-card {
  padding: 22px 24px;
  box-shadow: 0 12px 30px rgba(7, 27, 20, 0.045);
}

body.service-page .section:not(.seo-section) .feature-row {
  margin-bottom: 0;
}

body.service-page .feature-copy .check-list {
  margin-bottom: 0;
}

body.service-page .section.alt .section-header {
  max-width: 780px;
  margin-inline: auto;
}

body.service-page .note-band {
  background: linear-gradient(135deg, rgba(234,246,240,0.9), rgba(255,255,255,0.86));
}

body.service-page .note-grid {
  gap: 14px;
}

body.service-page .note-grid .note-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 27, 20, 0.045);
}

body.service-page .service-final-band {
  padding-block: clamp(42px, 5vw, 62px);
  background: linear-gradient(135deg, #071b14 0%, #10231c 62%, #0f8f5f 140%);
}

body.service-page .service-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  column-gap: clamp(20px, 4vw, 42px);
  row-gap: 16px;
  align-items: center;
  max-width: 1120px;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

body.service-page .service-final-card .section-tag,
body.service-page .service-final-card .section-title,
body.service-page .service-final-card p:not(.section-tag) {
  color: #fff;
}

body.service-page .service-final-card .section-tag {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #76dcaa;
}

body.service-page .service-final-card .section-title {
  max-width: 680px;
  font-size: clamp(26px, 3vw, 38px);
}

body.service-page .service-final-card p:not(.section-tag) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

body.service-page .service-final-card .service-inline-links {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

body.service-page .service-final-card a:not(.btn) {
  color: #b8f1d8;
}

body.service-page .service-final-card .btn {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  margin-top: 0;
  white-space: nowrap;
  background: #fff;
  color: #0f8f5f;
  box-shadow: none;
}

body.service-page .service-final-card .btn:hover {
  background: #eaf6f0;
  color: #10231c;
}

@media (max-width: 768px) {
  body.service-page .hero.hero-small {
    min-height: auto;
  }
  body.service-page .section.seo-section,
  body.service-page .section.alt,
  body.service-page .detail-band,
  body.service-page .note-band,
  body.service-page .faq-section {
    padding-block: 46px;
  }
  body.service-page .stats-bar {
    padding: 16px 0;
  }
  body.service-page .stat-item {
    padding: 10px 0;
  }
  body.service-page .sticky-copy,
  body.service-page .content-stack .note-card,
  body.service-page .note-grid .note-card,
  body.service-page .info-card,
  body.service-page .detail-card {
    padding: 18px;
    border-radius: 12px;
  }
  body.service-page .service-final-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 16px;
  }
  body.service-page .service-final-card .btn {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
  body.service-page .service-final-card .section-title {
    font-size: clamp(25px, 7.2vw, 34px);
  }
  body.service-page .service-final-card p:not(.section-tag) {
    font-size: 14px;
    line-height: 1.62;
  }
}

@media (max-width: 390px) {
  body.service-page .section.seo-section,
  body.service-page .section.alt,
  body.service-page .detail-band,
  body.service-page .note-band,
  body.service-page .faq-section {
    padding-block: 40px;
  }
  body.service-page .content-stack,
  body.service-page .note-grid {
    gap: 12px;
  }
  body.service-page .service-final-card {
    padding: 20px 16px;
  }
}

/* Final mobile fix: location/contact band should never clip on narrow screens */
.ballad-contact-info,
.ballad-location-block,
.ballad-map-card,
.route-guide-cta,
.route-guide-card,
.ballad-map-link,
.ballad-email {
  max-width: 100%;
  min-width: 0;
}

.ballad-email {
  display: inline-block;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .home-location-band .ballad-contact-shell,
  .contact-location-final .ballad-contact-shell,
  .ballad-contact-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .home-location-band .ballad-contact-info,
  .contact-location-final .ballad-contact-info,
  .ballad-contact-info {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-location-band,
  .contact-location-final,
  .location-band {
    overflow-x: hidden;
  }

  .home-location-band .ballad-contact-shell,
  .contact-location-final .ballad-contact-shell,
  .ballad-contact-shell {
    width: min(100% - 24px, 1200px);
  }

  .home-location-band .ballad-location-copy h2,
  .contact-location-final .ballad-location-copy h2,
  .ballad-location-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
  }

  .home-location-band .ballad-location-copy p:not(.ballad-meta),
  .contact-location-final .ballad-location-copy p:not(.ballad-meta),
  .ballad-location-copy p:not(.ballad-meta) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
  }

  .home-location-band .ballad-email,
  .contact-location-final .ballad-email,
  .ballad-email {
    font-size: clamp(19px, 6.2vw, 26px);
  }

  .home-location-band .ballad-location-block,
  .contact-location-final .ballad-location-block,
  .ballad-location-block {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    height: 216px;
  }

  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: 100%;
    max-width: 100%;
    height: 216px;
  }

  .home-location-band .ballad-location-block > .route-guide-cta,
  .contact-location-final .ballad-location-block > .route-guide-cta,
  .ballad-location-block > .route-guide-cta {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    overflow: hidden;
  }

  .home-location-band .route-guide-arrow,
  .contact-location-final .route-guide-arrow,
  .ballad-location-block .route-guide-arrow {
    display: none;
  }

  .home-location-band .route-guide-card,
  .contact-location-final .route-guide-card,
  .ballad-location-block .route-guide-card {
    width: 100%;
    max-width: 100%;
    padding: 12px 0 0;
  }

  .home-location-band .route-guide-card p,
  .contact-location-final .route-guide-card p,
  .ballad-location-block .route-guide-card p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
  }

  .home-location-band .route-guide-link,
  .contact-location-final .route-guide-link,
  .ballad-location-block .route-guide-link {
    width: fit-content;
    max-width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .home-location-band .ballad-location-block > .ballad-map-link,
  .contact-location-final .ballad-location-block > .ballad-map-link,
  .ballad-location-block > .ballad-map-link {
    grid-column: 1;
    grid-row: 4;
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .home-location-band .ballad-contact-shell,
  .contact-location-final .ballad-contact-shell,
  .ballad-contact-shell {
    width: min(100% - 20px, 1200px);
  }

  .home-location-band .ballad-location-copy h2,
  .contact-location-final .ballad-location-copy h2,
  .ballad-location-copy h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .home-location-band .ballad-map-card,
  .contact-location-final .ballad-map-card,
  .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    height: 198px;
  }
}


/* İstanbul sanal ofis landing page */
.mini-lead-form{display:grid;gap:14px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:22px;box-shadow:0 22px 50px rgba(16,35,28,.09)}
.mini-lead-form label{display:grid;gap:7px;font-weight:800;color:var(--ink);font-size:.9rem}
.mini-lead-form input,.mini-lead-form select{width:100%;border:1px solid var(--line);border-radius:14px;padding:13px 14px;font:inherit;background:#f8fbf9;color:var(--ink)}
.mini-lead-form .checkbox{display:flex;align-items:flex-start;gap:9px;font-size:.82rem;line-height:1.45;color:var(--muted);font-weight:700}
.mini-lead-form .checkbox input{width:auto;margin-top:3px}
.ad-landing-hero .hero-actions{gap:12px;flex-wrap:wrap}
@media (max-width: 640px){.mini-lead-form{padding:16px;border-radius:18px}.ad-landing-hero .hero-actions .btn{width:100%;justify-content:center}.package-panel{gap:18px}}


/* Final mobile map compact override */
@media (max-width: 768px) {
  .home-location-band .ballad-location-block,
  .contact-location-final .ballad-location-block,
  .ballad-location-block {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: 100% !important;
    max-width: 100% !important;
    height: 168px !important;
    min-height: 0 !important;
    border-radius: 16px !important;
    transform: none !important;
  }

  .ballad-map-card iframe {
    inset: -10px !important;
    width: calc(100% + 20px) !important;
    height: calc(100% + 20px) !important;
  }

  .ballad-map-card .ballad-map-copy,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
    left: 18px !important;
    right: 18px !important;
    bottom: 14px !important;
    gap: 4px !important;
  }

  .ballad-map-card .ballad-map-copy strong,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .ballad-map-card .ballad-map-copy small,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    display: none !important;
  }

  .ballad-map-icon {
    left: 18px !important;
    top: 14px !important;
  }

  .ballad-map-dot {
    right: 20px !important;
    top: 18px !important;
  }

  .ballad-map-hint,
  .route-guide-arrow {
    display: none !important;
  }

  .ballad-location-block > .route-guide-cta {
    margin-top: 8px !important;
  }

  .ballad-location-block .route-guide-card {
    padding-top: 8px !important;
  }
}

@media (max-width: 390px) {
  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    height: 148px !important;
  }

  .ballad-map-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .ballad-map-dot {
    width: 7px !important;
    height: 7px !important;
    box-shadow: 0 0 0 7px rgba(85, 214, 162, 0.1) !important;
  }
}

/* Final polish: clearer home hero image + smaller mobile map */
body.home-page .hero-img {
  opacity: 0.72;
}
body.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.64), rgba(7, 27, 20, 0.30) 56%, rgba(7, 27, 20, 0.04)),
    radial-gradient(circle at 78% 24%, rgba(15, 143, 95, 0.12), transparent 32%);
}
@media (max-width: 640px) {
  body.home-page .hero-img {
    opacity: 0.66;
  }
  body.home-page .hero::after {
    background: linear-gradient(180deg, rgba(7, 27, 20, 0.58), rgba(7, 27, 20, 0.42));
  }
}

@media (max-width: 768px) {
  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(78vw, 300px) !important;
    max-width: 300px !important;
    height: 128px !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .home-location-band .ballad-location-block,
  .contact-location-final .ballad-location-block,
  .ballad-location-block {
    justify-items: start !important;
  }

  .ballad-map-card .ballad-map-copy,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
    left: 14px !important;
    right: 14px !important;
    bottom: 12px !important;
  }

  .ballad-map-icon {
    left: 14px !important;
    top: 12px !important;
  }

  .ballad-map-dot {
    right: 16px !important;
    top: 16px !important;
  }
}

@media (max-width: 390px) {
  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: min(74vw, 280px) !important;
    max-width: 280px !important;
    height: 118px !important;
  }
}


/* FINAL OVERRIDE - mobile map must be visibly smaller and left aligned */
@media (max-width: 900px) {
  .home-location-band .ballad-location-block,
  .contact-location-final .ballad-location-block,
  .ballad-location-block {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: 240px !important;
    max-width: 68vw !important;
    height: 132px !important;
    min-height: 0 !important;
    margin: 0 auto 0 0 !important;
    justify-self: start !important;
    align-self: start !important;
    border-radius: 18px !important;
    transform: none !important;
  }

  .home-location-band .ballad-map-visual,
  .contact-location-final .ballad-map-visual,
  .ballad-map-visual {
    transform: scale(0.72) !important;
    transform-origin: left top !important;
  }

  .home-location-band .ballad-map-card .ballad-map-copy,
  .contact-location-final .ballad-map-card .ballad-map-copy,
  .ballad-map-card .ballad-map-copy,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
  }

  .home-location-band .ballad-map-card .ballad-map-copy strong,
  .contact-location-final .ballad-map-card .ballad-map-copy strong,
  .ballad-map-card .ballad-map-copy strong,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
    font-size: 10px !important;
    letter-spacing: 0.04em !important;
  }

  .home-location-band .ballad-map-card .ballad-map-copy small,
  .contact-location-final .ballad-map-card .ballad-map-copy small,
  .ballad-map-card .ballad-map-copy small,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    display: none !important;
  }

  .home-location-band .ballad-map-icon,
  .contact-location-final .ballad-map-icon,
  .ballad-map-icon {
    left: 14px !important;
    top: 12px !important;
  }

  .home-location-band .ballad-map-icon svg,
  .contact-location-final .ballad-map-icon svg,
  .ballad-map-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .home-location-band .ballad-map-dot,
  .contact-location-final .ballad-map-dot,
  .ballad-map-dot {
    right: 15px !important;
    top: 15px !important;
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 0 9px rgba(85, 214, 162, 0.12) !important;
  }

  .home-location-band .ballad-map-hint,
  .contact-location-final .ballad-map-hint,
  .ballad-map-hint,
  .route-guide-arrow {
    display: none !important;
  }

  .home-location-band .route-guide-cta,
  .contact-location-final .route-guide-cta,
  .route-guide-cta {
    margin-top: 10px !important;
  }
}

@media (max-width: 390px) {
  .home-location-band .ballad-location-block > .ballad-map-card,
  .contact-location-final .ballad-location-block > .ballad-map-card,
  .ballad-location-block > .ballad-map-card,
  .home-location-band .ballad-map-toggle:checked + .ballad-map-card,
  .contact-location-final .ballad-map-toggle:checked + .ballad-map-card,
  .ballad-map-toggle:checked + .ballad-map-card {
    width: 220px !important;
    max-width: 64vw !important;
    height: 116px !important;
  }
}

/* FINAL FIX - keep map text visible on mobile while retaining compact map size */
@media (max-width: 900px) {
  .home-location-band .ballad-map-card .ballad-map-copy small,
  .contact-location-final .ballad-map-card .ballad-map-copy small,
  .ballad-map-card .ballad-map-copy small,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    display: block !important;
    font-size: 8px !important;
    line-height: 1.15 !important;
    max-width: 165px !important;
    white-space: normal !important;
    opacity: 0.75 !important;
  }

  .home-location-band .ballad-map-card .ballad-map-copy,
  .contact-location-final .ballad-map-card .ballad-map-copy,
  .ballad-map-card .ballad-map-copy,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
    gap: 2px !important;
    bottom: 8px !important;
  }
}

@media (max-width: 390px) {
  .home-location-band .ballad-map-card .ballad-map-copy small,
  .contact-location-final .ballad-map-card .ballad-map-copy small,
  .ballad-map-card .ballad-map-copy small,
  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    font-size: 7px !important;
    max-width: 145px !important;
  }
}

/* FINAL mobile map behavior: compact square when closed, expands on tap */
@media (max-width: 760px) {
  .home-location-band .ballad-location-block,
  .ballad-location-block {
    width: 100% !important;
    max-width: 280px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-self: start !important;
  }

  .ballad-map-card {
    width: 88px !important;
    height: 88px !important;
    max-width: 88px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    transform: none !important;
    box-shadow: 0 14px 34px rgba(26, 26, 26, 0.12) !important;
  }

  .ballad-map-card:hover,
  .ballad-map-card.is-tilting {
    transform: none !important;
  }

  .ballad-map-visual {
    opacity: 0.22 !important;
    background-size: 46px 40px !important;
    transform: none !important;
  }

  .ballad-map-icon {
    left: 18px !important;
    top: 18px !important;
  }

  .ballad-map-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .ballad-map-dot {
    right: 18px !important;
    top: 18px !important;
    width: 9px !important;
    height: 9px !important;
    box-shadow: 0 0 0 10px rgba(85, 214, 162, 0.12) !important;
  }

  .ballad-map-copy {
    left: 16px !important;
    right: 14px !important;
    bottom: 12px !important;
    gap: 4px !important;
    opacity: 0 !important;
    transform: translateY(6px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
  }

  .ballad-map-copy strong,
  .ballad-map-copy small {
    line-height: 1.15 !important;
  }

  .ballad-map-copy strong {
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
  }

  .ballad-map-copy small {
    display: block !important;
    max-width: 210px !important;
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ballad-map-hint {
    display: none !important;
  }

  .ballad-map-road,
  .ballad-map-block,
  .ballad-map-pin-big {
    display: none !important;
  }

  .ballad-map-toggle:checked + .ballad-map-card {
    width: 255px !important;
    height: 160px !important;
    max-width: calc(100vw - 52px) !important;
    border-radius: 20px !important;
    transform: none !important;
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.15) !important;
  }

  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-visual {
    opacity: 0.3 !important;
    background-size: 64px 52px !important;
  }

  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy {
    opacity: 1 !important;
    transform: none !important;
  }

  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy strong {
    font-size: 13px !important;
  }

  .ballad-map-toggle:checked + .ballad-map-card .ballad-map-copy small {
    font-size: 10px !important;
  }
}

@media (max-width: 390px) {
  .ballad-map-toggle:checked + .ballad-map-card {
    width: 248px !important;
    height: 156px !important;
  }
}

/* Safe performance optimization for below-the-fold sections */
main > section:not(.hero):not(.hero-small) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}
@media (max-width: 640px) {
  main > section:not(.hero):not(.hero-small) {
    contain-intrinsic-size: 1px 620px;
  }
}

/* Final click safety: social and WhatsApp links stay tappable above decorative layers */
.whatsapp-float,
.footer-social,
.footer-social a {
  pointer-events: auto;
}
.footer-social {
  position: relative;
  z-index: 3;
}
.whatsapp-float {
  z-index: 1200;
}


/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(220, 232, 226, 0.9);
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 22px 70px rgba(7, 27, 20, 0.18);
  backdrop-filter: blur(12px);
}
.cookie-consent__text {
  display: grid;
  gap: 4px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.cookie-consent__text strong {
  font-family: Montserrat, sans-serif;
  color: var(--green-deep);
  font-size: 15px;
}
.cookie-consent__text a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}
.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--green);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn--ghost {
  background: #eef7f2;
  color: var(--green-deep);
}
.cookie-btn:hover { transform: translateY(-1px); }
@media (max-width: 720px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }
  .cookie-consent__text { font-size: 13px; }
  .cookie-consent__actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 11px 12px; }
}


/* Blog image fix: keep article hero visuals balanced and landscape on desktop/mobile */
.article-hero {
  padding: 132px 0 64px;
}
.article-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.article-hero img {
  display: block;
  justify-self: end;
  max-width: 460px;
  width: 100%;
  height: clamp(300px, 32vw, 420px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
}
.blog-card img {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 860px) {
  .article-hero {
    padding: 96px 0 42px;
  }
  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .article-hero img {
    justify-self: stretch;
    max-width: none;
    height: 220px;
    border-radius: 18px;
  }
}
@media (max-width: 520px) {
  .article-hero img {
    height: 190px;
  }
}

/* Subtle CTA pulse: attention without harsh blinking */
@keyframes balladCtaPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(15, 143, 95, 0.18), 0 0 0 0 rgba(15, 143, 95, 0.34);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 14px 30px rgba(15, 143, 95, 0.28), 0 0 0 7px rgba(15, 143, 95, 0.08);
    filter: brightness(1.06);
  }
}

.btn,
.cookie-btn,
.savings-toggle {
  animation: balladCtaPulse 2.4s ease-in-out infinite;
}

.btn.secondary,
.cookie-btn--ghost {
  animation-duration: 3.2s;
}

.btn:hover,
.cookie-btn:hover,
.savings-toggle:hover,
.btn:focus-visible,
.cookie-btn:focus-visible,
.savings-toggle:focus-visible {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .cookie-btn,
  .savings-toggle {
    animation: none !important;
  }
}


/* English landing page cluster */
.foreign-page .topbar .nav > a { white-space: nowrap; }
.foreign-hero .hero-content { max-width: 820px; }
.foreign-hero .hero-content h1 { max-width: 780px; }
.foreign-intro .section-header p { max-width: 860px; }
.foreign-two { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr); gap: 40px; align-items: start; }
.foreign-two > p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.85; }
.foreign-section { padding: 46px 0; background: var(--white); border-top: 1px solid var(--line); }
.foreign-section:nth-of-type(even) { background: var(--paper); }
.foreign-link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.foreign-link-row a { display: inline-flex; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--green); background: var(--white); font-weight: 700; text-decoration: none; }
.foreign-link-row a:hover { border-color: var(--green); background: var(--mint); }
@media (max-width: 820px) { .foreign-two { grid-template-columns: 1fr; gap: 14px; } .foreign-page .topbar-right .phone-link { display:none; } .foreign-hero .hero-content { padding-top: 64px; padding-bottom: 64px; } }

/* Ballad final CTA glow/flow: visible but premium across TR + EN */
@keyframes balladGlowFlowStrong {
  0%, 100% {
    box-shadow:
      0 12px 26px rgba(15, 143, 95, 0.28),
      0 0 0 0 rgba(80, 201, 149, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 18px 38px rgba(15, 143, 95, 0.42),
      0 0 0 8px rgba(80, 201, 149, 0.13),
      0 0 26px rgba(118, 220, 170, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
    filter: brightness(1.08);
  }
}

@keyframes balladButtonSweep {
  0% { transform: translateX(-180%) skewX(-18deg); opacity: 0; }
  18% { opacity: 0.32; }
  46% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
  100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}

@keyframes balladSecondaryGlow {
  0%, 100% {
    box-shadow: 0 8px 18px rgba(16, 35, 28, 0.06), 0 0 0 0 rgba(15, 143, 95, 0.14);
  }
  50% {
    box-shadow: 0 12px 26px rgba(16, 35, 28, 0.09), 0 0 0 6px rgba(15, 143, 95, 0.08);
  }
}

.btn,
.cookie-btn,
.savings-toggle {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: linear-gradient(135deg, #0f8f5f 0%, #0e7b58 100%);
  box-shadow:
    0 12px 26px rgba(15, 143, 95, 0.30),
    0 0 0 0 rgba(80, 201, 149, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  animation: balladGlowFlowStrong 2.55s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn::before,
.cookie-btn::before,
.savings-toggle::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -55%;
  bottom: -55%;
  left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: balladButtonSweep 4.1s ease-in-out infinite;
  pointer-events: none;
}

.btn.secondary,
.cookie-btn--ghost,
.hero-actions .btn.secondary,
.utility-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.96);
  background-image: none;
  color: var(--green-dark);
  border: 1px solid rgba(15, 143, 95, 0.22);
  box-shadow: 0 8px 18px rgba(16, 35, 28, 0.07), 0 0 0 0 rgba(15, 143, 95, 0.12);
  animation: balladSecondaryGlow 3.1s ease-in-out infinite;
}

.btn.secondary::before,
.cookie-btn--ghost::before,
.hero-actions .btn.secondary::before,
.utility-actions .btn.secondary::before {
  background: linear-gradient(90deg, transparent, rgba(15, 143, 95, 0.12), transparent);
  z-index: 0;
}

.btn:hover,
.cookie-btn:hover,
.savings-toggle:hover,
.btn:focus-visible,
.cookie-btn:focus-visible,
.savings-toggle:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.07);
  animation-play-state: paused;
  box-shadow:
    0 18px 42px rgba(15, 143, 95, 0.42),
    0 0 0 7px rgba(80, 201, 149, 0.12),
    0 0 30px rgba(118, 220, 170, 0.24);
}

.btn.secondary:hover,
.cookie-btn--ghost:hover {
  background: #ffffff;
  color: var(--green-deep);
  box-shadow: 0 14px 32px rgba(16, 35, 28, 0.12), 0 0 0 6px rgba(15, 143, 95, 0.10);
}

.foreign-page .hero-actions .btn,
.foreign-page .form-card .btn,
.foreign-page .topbar-right .btn,
[data-track-event="quote_click"],
[data-quote-trigger="true"] {
  animation-duration: 2.25s;
}

.foreign-link-row a {
  box-shadow: 0 8px 20px rgba(16, 35, 28, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.foreign-link-row a:hover,
.foreign-link-row a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(15, 143, 95, 0.14);
}

@media (max-width: 640px) {
  .btn,
  .cookie-btn,
  .savings-toggle {
    animation-duration: 3.2s;
  }
  .btn::before,
  .cookie-btn::before,
  .savings-toggle::before {
    animation-duration: 5.2s;
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .cookie-btn,
  .savings-toggle,
  .btn::before,
  .cookie-btn::before,
  .savings-toggle::before {
    animation: none !important;
  }
}

/* İstanbul sanal ofis content + final CTA polish */
.package-panel{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:34px;
  align-items:center;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
  box-shadow:0 26px 70px rgba(7,27,20,.08);
}
.package-panel h2{font-size:clamp(28px,3vw,46px);line-height:1.08;margin:0 0 14px;color:var(--ink)}
.package-panel p:not(.section-tag){font-size:1.02rem;line-height:1.8;color:var(--body)}
.istanbul-depth-section .section-header p:not(.section-tag){max-width:860px;margin-inline:auto;color:var(--body);line-height:1.8}
.istanbul-sirkeci-block .content-stack,
.istanbul-cost-section .content-stack{gap:16px}
.istanbul-sirkeci-block .content-stack p,
.istanbul-cost-section .content-stack p{font-size:1.02rem;line-height:1.85;color:var(--body)}
.istanbul-process-section .note-card{min-height:185px}
.istanbul-final-cta{padding:76px 0;background:linear-gradient(180deg,var(--paper) 0%,#fff 100%)}
.istanbul-final-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;
  align-items:center;
  padding:36px;
  border-radius:30px;
  background:linear-gradient(135deg,#071b14 0%,#10231c 58%,#0e7b58 140%);
  color:#fff;
  box-shadow:0 26px 80px rgba(7,27,20,.18);
  overflow:hidden;
  position:relative;
}
.istanbul-final-card::after{
  content:"";
  position:absolute;
  width:260px;height:260px;right:-90px;top:-100px;
  background:radial-gradient(circle,rgba(80,201,149,.32),rgba(80,201,149,0) 68%);
  pointer-events:none;
}
.istanbul-final-card .section-tag{color:#78d8a7;margin-bottom:12px}
.istanbul-final-card h2{margin:0 0 12px;font-size:clamp(28px,3.5vw,46px);line-height:1.08;color:#fff;letter-spacing:-.04em}
.istanbul-final-card p:not(.section-tag){margin:0;max-width:760px;color:rgba(255,255,255,.78);font-size:1.02rem;line-height:1.75}
.istanbul-final-actions{display:flex;gap:12px;align-items:center;justify-content:flex-end;flex-wrap:wrap;position:relative;z-index:1}
.istanbul-final-actions .btn{min-width:148px;justify-content:center;box-shadow:0 0 0 1px rgba(255,255,255,.12),0 16px 42px rgba(15,143,95,.35)}
.istanbul-final-actions .btn-light{background:#fff;color:var(--dark);box-shadow:0 16px 42px rgba(255,255,255,.14)}
@media (max-width: 900px){
  .package-panel,.istanbul-final-card{grid-template-columns:1fr;padding:24px;border-radius:24px}
  .istanbul-final-actions{justify-content:flex-start}
}
@media (max-width: 640px){
  .istanbul-final-cta{padding:48px 0}
  .istanbul-final-actions{display:grid;width:100%}
  .istanbul-final-actions .btn{width:100%}
  .package-panel{padding:18px}
}


/* v7 safety: remove istanbul stats bar if older html/css remains */
body.istanbul-v7-clean .stats-bar,
body.istanbul-v7-clean .istanbul-stats-clean{display:none!important;height:0!important;padding:0!important;margin:0!important;overflow:hidden!important;background:transparent!important}
body.istanbul-v7-clean .seo-section{margin-top:0!important;padding-top:76px!important;background:#fff!important}


/* v8 Istanbul final CTA text visibility */
.istanbul-final-card,
.istanbul-final-card h2,
.istanbul-final-card p,
.istanbul-final-card .section-tag,
.istanbul-final-card a.phone-soft-link{opacity:1!important;}
.istanbul-final-card h2{color:#fff!important;}
.istanbul-final-card p:not(.section-tag){color:rgba(255,255,255,.84)!important;}
.istanbul-final-card .section-tag{color:#76dcaa!important;}
.istanbul-final-card .btn{color:#fff!important;}
