:root {
  --bg: #f6f8f8;
  --bg-soft: #edf2f1;
  --ink: #0f1f1d;
  --muted: #516261;
  --brand: #055f5d;
  --brand-2: #08918d;
  --card: #ffffff;
  --border: #d8e5e2;
  --shadow: 0 18px 48px rgba(5, 95, 93, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcfc 0%, var(--bg) 42%, #ecf3f2 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
.logo,
.btn,
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(8, 145, 141, 0.11), transparent 33%),
    radial-gradient(circle at 10% 72%, rgba(5, 95, 93, 0.1), transparent 36%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 248, 0.78);
  border-bottom: 1px solid rgba(5, 95, 93, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(246, 248, 248, 0.95);
  box-shadow: 0 10px 28px rgba(5, 95, 93, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-height: 78px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  font-weight: 700;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #066c5b;
  color: #f2eee8;
  border-radius: 4px;
  padding: 6px 12px 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.08rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #3a4a47;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.main-nav a {
  font-weight: 500;
  color: #27403d;
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.main-nav a:hover {
  color: var(--brand);
  background: rgba(5, 95, 93, 0.06);
}

.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 5px;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a.nav-link:hover::after,
.main-nav a.nav-link:focus-visible::after,
.main-nav a.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: #083f3e;
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(5, 95, 93, 0.2);
}

.main-nav a.nav-cta:hover,
.main-nav a.nav-cta:focus-visible {
  background: #0a5150;
  color: #ffffff !important;
}

.nav-link.active {
  color: var(--brand);
  background: rgba(5, 95, 93, 0.07);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 23, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 35;
}

.nav-scrim.show {
  opacity: 1;
  pointer-events: auto;
}

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

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  padding: 34px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  margin: 0 0 16px;
  max-width: 14ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 700;
}

.lead {
  margin: 0 0 14px;
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-tags span {
  background: rgba(5, 95, 93, 0.08);
  border: 1px solid rgba(5, 95, 93, 0.2);
  color: #16413e;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}


.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #0a5b59;
  color: #fff;
  box-shadow: 0 10px 24px rgba(5, 95, 93, 0.22);
}

.btn-primary:hover {
  background: #0c6a67;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand);
  border: 1px solid #c9dbd7;
}

.btn-inverse {
  background: #fff;
  color: var(--brand);
}

.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metrics article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.metrics strong {
  font-size: 1.45rem;
}

.metrics span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(160deg, #0a4543 0%, #086562 58%, #0b817d 100%);
  color: #f8fffe;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin: 0 0 18px;
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  opacity: 0.85;
}

.hero-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  max-width: 22ch;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.domain-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.domain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 95, 93, 0.26);
  box-shadow: 0 14px 24px rgba(5, 95, 93, 0.1);
}

.service-card h3,
.domain-card h3 {
  margin: 0 0 10px;
}

.service-card p,
.domain-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.strip {
  background: linear-gradient(180deg, rgba(230, 239, 237, 0.65), rgba(217, 233, 229, 0.6));
  border-top: 1px solid rgba(5, 95, 93, 0.08);
  border-bottom: 1px solid rgba(5, 95, 93, 0.08);
}

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

.domain-card {
  border-left: 3px solid rgba(5, 95, 93, 0.5);
}

.domain-card ul,
.service-card ul {
  margin: 0 0 8px;
  padding-left: 20px;
  color: #2e3b39;
  display: grid;
  gap: 6px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.cta-band {
  padding-top: 18px;
  padding-bottom: 20px;
}

.cta-inner {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, rgba(5, 95, 93, 0.3), rgba(8, 145, 141, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  box-shadow: 0 14px 30px rgba(5, 95, 93, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 145, 141, 0.16), transparent 45%),
    radial-gradient(circle at 12% 120%, rgba(5, 95, 93, 0.1), transparent 48%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  max-width: 22ch;
}

.cta-text {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.cta-action {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding-inline: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-copy p {
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}

.steps-list {
  margin: 8px 0 20px;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.signature-quote {
  margin: 14px 0 6px;
  color: #173533;
  padding: 4px 0 2px;
  position: relative;
  overflow: visible;
}

.signature-quote::before {
  content: "“";
  position: absolute;
  left: -2px;
  top: -12px;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: rgba(5, 95, 93, 0.14);
  font-family: "Space Grotesk", sans-serif;
  pointer-events: none;
}

.signature-quote p {
  margin: 0;
  width: auto;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  text-align: left;
  letter-spacing: 0.01em;
  max-width: 50ch;
  padding-left: 24px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #d9e5e3;
  border-radius: 16px;
  padding: 24px 22px;
  display: grid;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(5, 95, 93, 0.08);
}

.form-head h3 {
  margin: 0 0 4px;
  font-size: 1.26rem;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.field {
  display: grid;
  gap: 7px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8dbd7;
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
  background: #fbfdfc;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0b6a67;
  box-shadow: 0 0 0 3px rgba(8, 145, 141, 0.15);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #2f5653 50%),
    linear-gradient(135deg, #2f5653 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #2f4a47;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand);
}

.contact-form .btn {
  margin-top: 4px;
  width: 100%;
}

.form-note {
  min-height: 20px;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(5, 95, 93, 0.12);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(6px);
  padding: 20px 0 24px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(5, 95, 93, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 120;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 2px;
}

.footer-meta {
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a,
.footer-link-btn {
  color: #33524e;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-link-btn:hover {
  color: var(--brand);
}

.footer-link-btn {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d3dfdc;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(23, 35, 33, 0.14);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #3c504c;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-width: 146px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 24, 0.44);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d6e1df;
  box-shadow: 0 22px 40px rgba(23, 35, 33, 0.18);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.cookie-card h3 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1;
}

.cookie-card p {
  margin: 0;
  color: var(--muted);
}

.cookie-opt {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #324a46;
}

.cookie-opt input {
  width: 17px;
  height: 17px;
  accent-color: var(--brand);
}

.cookie-opt-fixed {
  opacity: 0.8;
}

.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 21, 0.5);
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.legal-modal.show {
  display: flex;
}

.legal-card {
  width: min(760px, 100%);
  max-height: min(82vh, 780px);
  overflow: auto;
  background: #fff;
  border: 1px solid #d6e1df;
  border-radius: 12px;
  box-shadow: 0 24px 42px rgba(23, 35, 33, 0.2);
  padding: 18px;
  position: relative;
}

.legal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #3c514d;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.legal-close:hover {
  background: rgba(5, 95, 93, 0.08);
  color: var(--brand);
}

.legal-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
}

.legal-body {
  color: #344744;
  display: grid;
  gap: 10px;
}

.legal-body h4 {
  margin: 8px 0 0;
  font-size: 1.08rem;
}

.legal-body p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 74px 0;
  }

  .menu-btn {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(243, 246, 245, 0.98);
    border-left: 1px solid var(--border);
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 86px 20px 22px;
    align-items: flex-start;
    border-radius: 0;
    box-shadow: -20px 0 50px rgba(5, 95, 93, 0.15);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 36;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .main-nav a.nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding: 28px 0;
  }

  .metrics,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags span {
    font-size: 0.78rem;
  }

  .cta-inner {
    padding: 22px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-inner h2 {
    max-width: 18ch;
  }

  .cta-action {
    width: 100%;
    justify-content: center;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signature-quote {
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .signature-quote::before {
    left: 0;
    top: -8px;
    font-size: 2.2rem;
  }

  .signature-quote p {
    padding-left: 18px;
    max-width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Premium visual pass */
:root {
  --bg: #f8f8f6;
  --bg-soft: #f1f1ee;
  --ink: #172321;
  --muted: #5f6c68;
  --border: #d8dfdc;
  --radius: 16px;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, #ffffff 0%, transparent 30%),
    linear-gradient(180deg, #fbfbf9 0%, #f6f7f5 46%, #eef2f0 100%);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

.logo,
.btn,
.eyebrow {
  font-family: "Manrope", sans-serif;
}

.site-header {
  background: rgba(248, 248, 246, 0.72);
  border-bottom-color: rgba(23, 35, 33, 0.08);
}

.site-header.scrolled {
  background: rgba(248, 248, 246, 0.94);
  box-shadow: 0 12px 32px rgba(23, 35, 33, 0.08);
}

.logo {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-mark {
  font-size: 1.78rem;
  padding: 5px 10px 6px;
}

.main-nav a {
  border-radius: 8px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-cta {
  border-radius: 8px;
  background: #0d3837;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 11ch;
  font-weight: 600;
}

.lead {
  font-size: 1.01rem;
  color: #52615d;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.hero-card {
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(9, 52, 50, 0.98), rgba(10, 86, 83, 0.98));
  box-shadow: 0 22px 50px rgba(5, 95, 93, 0.2);
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.metrics article {
  background: rgba(255, 255, 255, 0.7);
  border-color: #d9e0dc;
  backdrop-filter: blur(2px);
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1;
  max-width: 17ch;
}

.service-card,
.domain-card,
.contact-form,
.cta-inner {
  border-radius: 14px;
}

.service-card,
.domain-card {
  border-color: #dbe2df;
  background: rgba(255, 255, 255, 0.92);
}

.service-card h3,
.domain-card h3 {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 12px;
}

.minor-title {
  font-size: 1.35rem !important;
  margin-top: 12px;
  margin-bottom: 8px;
}

.domain-card {
  border-left: 0;
  position: relative;
}

.domain-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 26px;
  height: 2px;
  background: rgba(5, 95, 93, 0.45);
}

.cta-inner {
  background:
    linear-gradient(#fcfcfb, #fcfcfb) padding-box,
    linear-gradient(120deg, rgba(5, 95, 93, 0.35), rgba(8, 145, 141, 0.5)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 20px 38px rgba(23, 35, 33, 0.08);
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.96;
}

.contact-form {
  border-color: #d5dcda;
  box-shadow: 0 18px 42px rgba(23, 35, 33, 0.08);
}

.form-head h3 {
  font-size: 2rem;
  line-height: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border-color: #d2dbd8;
  border-radius: 8px;
}

.btn {
  border-radius: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: #0a4e4c;
}

.btn-primary:hover {
  background: #0d605d;
}

.back-to-top {
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

@media (max-width: 760px) {
  .logo-sub {
    display: none;
  }

  .logo-mark {
    font-size: 1.45rem;
    padding: 4px 8px 5px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .service-card h3,
  .domain-card h3,
  .form-head h3,
  .cta-inner h2 {
    font-size: 1.7rem;
  }
}

/* Version B: high-end corporate minimal */
.main-nav {
  gap: 4px;
}

.main-nav a {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}

.hero-copy h1 {
  font-size: clamp(2.45rem, 5.1vw, 4.35rem);
  line-height: 0.98;
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

#bojana .contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
}

.consultant-photo {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d8e1de;
  box-shadow: 0 16px 30px rgba(23, 35, 33, 0.1);
  max-width: 420px;
}

.consultant-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

#bojana .contact-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

#bojana .contact-copy p {
  font-size: 1.04rem;
}

#bojana .contact-list li {
  font-size: 1.03rem;
}

.contact-form {
  border-radius: 14px;
  padding: 20px;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(23, 35, 33, 0.06);
}

.form-head h3 {
  font-size: 1.68rem;
  margin-bottom: 2px;
}

.form-head p {
  font-size: 0.9rem;
}

.form-main {
  display: grid;
  gap: 12px;
}

.field-grid {
  gap: 10px;
}

.field-grid-2x {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field {
  gap: 6px;
}

.contact-form label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4f5e5b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 0.95rem;
}

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

.consent {
  margin-top: 2px;
  font-size: 0.82rem;
}

.consent span {
  text-transform: none;
  letter-spacing: 0;
  color: #576563;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form .btn {
  width: auto;
  min-width: 220px;
  padding-inline: 16px;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  min-height: 0;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-wrap {
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #bojana .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consultant-photo {
    max-width: 360px;
  }

  .field-message textarea {
    min-height: 132px;
  }
}

@media (max-width: 760px) {
  .contact-form {
    padding: 16px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .field-grid-2x {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Soft section dividers */
main > .section {
  position: relative;
}

main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 92vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(5, 95, 93, 0.16) 18%,
    rgba(5, 95, 93, 0.16) 82%,
    transparent 100%
  );
}

main > .section:nth-of-type(even):not(.hero) {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.cta-band {
  margin-top: 8px;
}

#kontakt {
  margin-top: 10px;
}

/* Three.js layer + portfolio additions */
#three-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}

.page-bg {
  z-index: -2;
}

main > .section,
.site-header,
.site-footer {
  backdrop-filter: saturate(105%);
}

.process-detail {
  margin: 14px 0 8px;
  display: grid;
  gap: 8px;
}

.process-detail p {
  margin: 0;
  color: #4f625f;
  font-size: 0.96rem;
}

.advantage-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.advantage-grid .section-head {
  margin-bottom: 0;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d7e2df;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(23, 35, 33, 0.08);
}

.advantage-card p {
  margin: 0 0 10px;
  color: #435754;
}

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

@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero single column + language switch */
.hero-grid-single {
  grid-template-columns: 1.2fr 0.8fr !important;
  align-items: start;
}

.hero-grid-single .hero-copy {
  max-width: none;
}

.hero-aside {
  background: linear-gradient(165deg, rgba(8, 58, 56, 0.95), rgba(10, 94, 89, 0.92));
  color: #effaf8;
  border: 1px solid rgba(137, 210, 201, 0.26);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 18px 36px rgba(10, 74, 71, 0.2);
  display: grid;
  gap: 12px;
  max-width: 540px;
  justify-self: end;
}

.hero-aside-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #bae8e2;
}

.hero-aside h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.02;
}

.hero-aside-list {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  font-size: 0.94rem;
}

.hero-aside-list li {
  color: #d8f0ec;
}

.hero-aside .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 8px 10px;
  border: 1px solid #cddad7;
  color: #2e4a46;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch:hover {
  border-color: #8db8b2;
  background: rgba(5, 95, 93, 0.06);
}

@media (max-width: 760px) {
  .hero-grid-single {
    grid-template-columns: 1fr !important;
  }

  .hero-aside {
    padding: 18px 15px;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-aside h2 {
    font-size: 1.4rem;
  }

  .lang-switch {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 8px;
    justify-content: center;
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .nav-actions {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .nav-actions .lang-switch {
    display: inline-flex !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: 1 !important;
  }

  .nav-actions .menu-btn {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    margin: 0 !important;
  }
}

/* Header language switch final polish */
.nav-actions .lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #c9d8d5;
  background: rgba(255, 255, 255, 0.86);
  color: #254541;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(9, 46, 45, 0.08);
}

.nav-actions .lang-switch:hover {
  background: #ffffff;
  border-color: #9ebeb8;
}

@media (max-width: 760px) {
  .nav-actions .lang-switch {
    width: 44px !important;
    padding: 0 !important;
    font-size: 0.82rem;
  }
}
