:root {
  --c-ink: #0D1B2A;
  --c-gold: #E8A020;
  --c-gold-lt: #F5C76A;
  --c-cream: #FAF6EE;
  --c-cream-dk: #F0E9D8;
  --c-ink-lt: #1E2F42;
  --c-ink-mid: #2E4560;
  --c-white: #FDFAF5;
  --c-text-on-ink: #FAF6EE;
  --c-text-on-cream: #0D1B2A;
  --c-muted: #6B7E94;
  --c-border: rgba(13,27,42,0.12);
  --c-border-lt: rgba(250,246,238,0.15);

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-xxl: 7rem;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 32px;

  --sh-subtle: 0 2px 8px rgba(13,27,42,0.08), 0 1px 3px rgba(13,27,42,0.05);
  --sh-card: 0 4px 16px rgba(13,27,42,0.10), 0 2px 6px rgba(13,27,42,0.07), 0 1px 2px rgba(13,27,42,0.04);
  --sh-lift: 0 12px 40px rgba(13,27,42,0.18), 0 4px 12px rgba(13,27,42,0.10), 0 1px 4px rgba(13,27,42,0.06);
  --sh-gold: 0 4px 24px rgba(232,160,32,0.25), 0 2px 8px rgba(232,160,32,0.15);
  --sh-gold-lift: 0 8px 40px rgba(232,160,32,0.35), 0 3px 12px rgba(232,160,32,0.20);
  --sh-nav: 0 2px 8px rgba(13,27,42,0.08), 0 1px 3px rgba(13,27,42,0.05);

  --trans: 0.25s cubic-bezier(0.4,0,0.2,1);
  --trans-slow: 0.45s cubic-bezier(0.4,0,0.2,1);
  --trans-spring: 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c-cream);
  color: var(--c-text-on-cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Familjen Grotesk', sans-serif;
  line-height: 1.15;
  color: inherit;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}


.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--c-ink);
  box-shadow: var(--sh-nav);
  transition: box-shadow var(--trans-slow);
}

.hdr-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex; align-items: center;
  height: 72px; gap: var(--sp-lg);
}

.hdr-logo {
  display: flex; align-items: center; gap: var(--sp-xs);
  flex-shrink: 0; text-decoration: none;
}

.hdr-logo img, .hdr-logo svg {
  height: 38px; width: auto;
}

.hdr-nav {
  display: flex; align-items: center;
  gap: 0; margin-left: auto;
}

.hdr-nav a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}

.hdr-nav a:hover, .hdr-nav a.active-link {
  color: var(--c-gold);
  background: rgba(232,160,32,0.10);
}

.lang-switcher {
  display: flex; align-items: center; gap: 0.35rem;
  margin-left: var(--sp-md);
  padding-left: var(--sp-md);
  border-left: 1px solid var(--c-border-lt);
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  padding: 0.25rem 0.4rem;
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
}

.lang-btn:hover { color: var(--c-gold); }
.lang-btn.active { color: var(--c-gold); background: rgba(232,160,32,0.12); }

.lang-divider { color: var(--c-border-lt); font-size: 0.8rem; }

.hdr-cta {
  display: flex; align-items: center; gap: var(--sp-sm);
  flex-shrink: 0;
}

.btn-hdr {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--c-gold);
  color: var(--c-ink) !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-md);
  box-shadow: var(--sh-gold);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans-spring);
}

.btn-hdr:hover {
  background: var(--c-gold-lt);
  box-shadow: var(--sh-gold-lift);
  transform: translateY(-1px);
}

.btn-hdr:active { transform: translateY(0) scale(0.98); }

.hdr-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  width: 44px; height: 44px;
  gap: 5px; padding: 0 8px;
  margin-left: auto;
  border-radius: var(--r-md);
  transition: background var(--trans);
}

.hdr-hamburger:hover { background: rgba(250,246,238,0.08); }

.hdr-hamburger span {
  display: block; height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), width var(--trans);
}

.hdr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hdr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  background: var(--c-ink-lt);
  border-top: 1px solid var(--c-border-lt);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mob-menu.open { max-height: 600px; }

.mob-menu-inner {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-md);
  display: flex; flex-direction: column; gap: 0.2rem;
}

.mob-menu a {
  display: block;
  padding: 0.7rem var(--sp-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-cream);
  border-radius: var(--r-md);
  transition: color var(--trans), background var(--trans);
}

.mob-menu a:hover { color: var(--c-gold); background: rgba(232,160,32,0.08); }

.mob-lang {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem var(--sp-sm);
  border-top: 1px solid var(--c-border-lt);
  margin-top: 0.4rem;
}

.mob-lang .lang-btn { color: var(--c-muted); }
.mob-lang .lang-btn.active { color: var(--c-gold); }


.hero {
  min-height: 100vh;
  background: var(--c-ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px var(--sp-lg) var(--sp-xxl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-cream));
  pointer-events: none;
}

.hero-display {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.03em;
  line-height: 1.0;
  position: relative; z-index: 1;
}

.hero-display em {
  font-style: normal;
  color: var(--c-gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(250,246,238,0.7);
  max-width: 520px;
  margin: var(--sp-md) auto 0;
  line-height: 1.7;
  position: relative; z-index: 1;
}

.hero-actions {
  display: flex; align-items: center; gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(250,246,238,0.35);
  color: var(--c-cream);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--r-xl);
  transition: border-color var(--trans), background var(--trans), transform var(--trans-spring);
  letter-spacing: 0.01em;
}

.btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(232,160,32,0.07);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-gold);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans-spring);
}

.btn-primary:hover {
  background: var(--c-gold-lt);
  box-shadow: var(--sh-gold-lift);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0) scale(0.98); }


.sec {
  padding: var(--sp-xxl) var(--sp-lg);
}

.sec-inner {
  max-width: 1280px; margin: 0 auto;
}

.sec-ink { background: var(--c-ink); color: var(--c-text-on-ink); }
.sec-cream { background: var(--c-cream); color: var(--c-text-on-cream); }
.sec-cream-dk { background: var(--c-cream-dk); color: var(--c-text-on-cream); }
.sec-ink-lt { background: var(--c-ink-lt); color: var(--c-text-on-ink); }

.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-sm);
}

.sec-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}

.sec-title-lg {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.sec-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--c-muted);
  max-width: 640px;
  line-height: 1.75;
}

.sec-ink .sec-lead, .sec-ink-lt .sec-lead { color: rgba(250,246,238,0.65); }

.sec-hd {
  margin-bottom: var(--sp-xl);
}

.sec-hd.centered { text-align: center; }
.sec-hd.centered .sec-lead { margin: 0 auto; }


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
}


.crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--sh-card);
  transition: transform var(--trans-spring), box-shadow var(--trans);
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}

.crd:has(.crd-img) {
  padding: 0;
}

.crd:has(.crd-img) .crd-body {
  padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
}

.crd-ink {
  background: var(--c-ink-lt);
  border-color: var(--c-border-lt);
  color: var(--c-text-on-ink);
}

.crd-ink:hover { box-shadow: 0 12px 40px rgba(13,27,42,0.5), 0 4px 12px rgba(13,27,42,0.3); }

.crd-gold {
  background: var(--c-gold);
  border-color: transparent;
  color: var(--c-ink);
  box-shadow: var(--sh-gold);
}

.crd-gold:hover { box-shadow: var(--sh-gold-lift); }

.crd-img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  filter: none;
  transition: filter var(--trans-slow), transform var(--trans-slow);
}

.crd:hover .crd-img {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.02);
}

.crd-ico {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: rgba(232,160,32,0.12);
  color: var(--c-gold);
  font-size: 1.3rem;
  margin-bottom: var(--sp-md);
  transition: background var(--trans), transform var(--trans-spring);
}

.crd:hover .crd-ico {
  background: rgba(232,160,32,0.22);
  transform: scale(1.08) rotate(-3deg);
}

.crd-ink .crd-ico {
  background: rgba(232,160,32,0.15);
}

.crd-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.crd-txt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.crd-ink .crd-txt { color: rgba(250,246,238,0.65); }
.crd-gold .crd-txt { color: rgba(13,27,42,0.75); }


.duo-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
}

.duo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.duo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.55) 0%, rgba(232,160,32,0.25) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.duo-wrap.duo-gold::after {
  background: linear-gradient(135deg, rgba(232,160,32,0.4) 0%, rgba(13,27,42,0.6) 100%);
}


.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.cc-card {
  background: var(--c-ink-lt);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--sp-sm);
  border: 1px solid var(--c-border-lt);
  box-shadow: var(--sh-card);
  transition: transform var(--trans-spring), box-shadow var(--trans);
}

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

.cc-ico {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(232,160,32,0.15);
  color: var(--c-gold);
  font-size: 1.4rem;
  box-shadow: 0 0 0 8px rgba(232,160,32,0.06);
  transition: background var(--trans), box-shadow var(--trans);
}

.cc-card:hover .cc-ico {
  background: rgba(232,160,32,0.25);
  box-shadow: 0 0 0 12px rgba(232,160,32,0.08), var(--sh-gold);
}

.cc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.cc-val {
  font-size: 0.95rem;
  color: var(--c-cream);
  line-height: 1.5;
}

.cc-val a {
  color: var(--c-cream);
  transition: color var(--trans);
}

.cc-val a:hover { color: var(--c-gold); }


.areas-sec {
  background: var(--c-cream-dk);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.areas-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lift);
}

.areas-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.areas-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.5) 0%, rgba(232,160,32,0.2) 100%);
  pointer-events: none;
}

.area-list {
  display: flex; flex-direction: column; gap: var(--sp-md);
}

.area-item {
  display: flex; gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-subtle);
  transition: transform var(--trans-spring), box-shadow var(--trans);
}

.area-item:hover {
  transform: translateX(4px);
  box-shadow: var(--sh-card);
}

.area-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(232,160,32,0.2);
}

.area-name {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.area-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lift);
}

.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.split-img:hover img { transform: scale(1.04); }

.split-content { }

.split-content .sec-tag { display: block; margin-bottom: var(--sp-sm); }


.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 14%; right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, rgba(232,160,32,0.2) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative; z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-ink);
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  box-shadow: var(--sh-gold);
  transition: transform var(--trans-spring), box-shadow var(--trans);
}

.step:hover .step-num {
  transform: scale(1.12);
  box-shadow: var(--sh-gold-lift);
}

.step-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-cream);
}

.step-txt {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.65;
}


.feat-list {
  display: flex; flex-direction: column; gap: var(--sp-sm);
}

.feat-item {
  display: flex; gap: var(--sp-sm);
  align-items: flex-start;
}

.feat-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,160,32,0.15);
  color: var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-txt {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-muted);
}

.sec-ink .feat-txt, .sec-ink-lt .feat-txt { color: rgba(250,246,238,0.7); }


.cta-band {
  background: var(--c-gold);
  padding: var(--sp-xxl) var(--sp-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .sec-title { color: var(--c-ink); position: relative; z-index: 1; }
.cta-band p { color: rgba(13,27,42,0.75); position: relative; z-index: 1; margin-bottom: var(--sp-lg); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--c-ink);
  color: var(--c-cream);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 20px rgba(13,27,42,0.3);
  transition: background var(--trans), transform var(--trans-spring), box-shadow var(--trans);
  position: relative; z-index: 1;
}

.btn-dark:hover {
  background: var(--c-ink-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,27,42,0.4);
}


.frm-sec {
  background: var(--c-ink);
}

.frm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lift);
}

.frm-map {
  position: relative;
  min-height: 500px;
}

.frm-map iframe {
  width: 100%; height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

.frm-side {
  background: var(--c-ink-lt);
  padding: var(--sp-xl);
  display: flex; flex-direction: column; gap: var(--sp-md);
}

.frm-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--sp-sm);
}

.frm-group {
  display: flex; flex-direction: column; gap: 0.4rem;
}

.frm-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
}

.frm-group input,
.frm-group textarea,
.frm-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(250,246,238,0.06);
  border: 1.5px solid rgba(250,246,238,0.12);
  border-radius: var(--r-md);
  color: var(--c-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}

.frm-group input::placeholder,
.frm-group textarea::placeholder {
  color: rgba(250,246,238,0.3);
}

.frm-group input:focus,
.frm-group textarea:focus {
  border-color: var(--c-gold);
  background: rgba(250,246,238,0.09);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

.frm-group textarea { resize: vertical; min-height: 110px; }

.frm-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  cursor: pointer;
}

.frm-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--c-gold);
  cursor: pointer;
}

.frm-check span {
  font-size: 0.82rem;
  color: rgba(250,246,238,0.55);
  line-height: 1.55;
}

.frm-check span a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%;
  padding: 0.95rem;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-gold);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans-spring);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-submit:hover {
  background: var(--c-gold-lt);
  box-shadow: var(--sh-gold-lift);
  transform: translateY(-2px);
}

.btn-submit:active { transform: translateY(0) scale(0.98); }


.iti, #phone { width: 100%; }
.iti__flag-container { z-index: 10; }
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(250,246,238,0.08);
  border-right: 1px solid rgba(250,246,238,0.12);
}
.iti__country-list {
  background: var(--c-ink-lt);
  border: 1px solid rgba(250,246,238,0.15);
  color: var(--c-cream);
}
.iti__country.iti__highlight { background: rgba(232,160,32,0.12); }
.iti__search-input { background: rgba(250,246,238,0.08); color: var(--c-cream); border-color: rgba(250,246,238,0.15); }


.ftr {
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  padding: var(--sp-xxl) var(--sp-lg) var(--sp-lg);
}

.ftr-inner {
  max-width: 1280px; margin: 0 auto;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--c-border-lt);
}

.ftr-brand p {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.55);
  line-height: 1.7;
  margin-top: var(--sp-sm);
  max-width: 280px;
}

.ftr-col-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
}

.ftr-links {
  display: flex; flex-direction: column; gap: 0.6rem;
}

.ftr-links a {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.6);
  transition: color var(--trans);
}

.ftr-links a:hover { color: var(--c-gold); }

.ftr-contact-list {
  display: flex; flex-direction: column; gap: 0.75rem;
}

.ftr-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
}

.ftr-contact-item i {
  color: var(--c-gold); font-size: 0.85rem;
  margin-top: 3px; flex-shrink: 0;
}

.ftr-contact-item span {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.5;
}

.ftr-contact-item a {
  color: rgba(250,246,238,0.6);
  transition: color var(--trans);
}

.ftr-contact-item a:hover { color: var(--c-gold); }

.ftr-bottom {
  padding-top: var(--sp-lg);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-sm);
}

.ftr-copy {
  font-size: 0.8rem;
  color: rgba(250,246,238,0.35);
}

.ftr-legal {
  display: flex; gap: var(--sp-md); flex-wrap: wrap;
}

.ftr-legal a {
  font-size: 0.8rem;
  color: rgba(250,246,238,0.4);
  transition: color var(--trans);
}

.ftr-legal a:hover { color: var(--c-gold); }


.pg-hd {
  background: var(--c-ink);
  padding: 140px var(--sp-lg) var(--sp-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pg-hd::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(232,160,32,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hd .sec-tag { position: relative; z-index: 1; }

.pg-hd-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.025em;
  line-height: 1.1;
  position: relative; z-index: 1;
  margin-bottom: var(--sp-sm);
}

.pg-hd-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(250,246,238,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative; z-index: 1;
}


.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.pillar {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: transform var(--trans-spring), box-shadow var(--trans);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}

.pillar:first-child {
  grid-column: 1 / -1;
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-border-lt);
}

.pillar:first-child .crd-txt { color: rgba(250,246,238,0.65); }

.pillar-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,160,32,0.2);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}


.webinar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.webinar-crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border);
  transition: transform var(--trans-spring), box-shadow var(--trans);
}

.webinar-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lift);
}

.webinar-img {
  height: 200px; width: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.webinar-crd:hover .webinar-img { transform: scale(1.04); }

.webinar-body {
  padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
}

.webinar-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.webinar-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--c-ink);
}

.webinar-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
}


.de-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--sh-lift);
  margin-bottom: var(--sp-xl);
}

.de-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.de-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}


.thanks-sec {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--sp-xxl) var(--sp-lg);
  background: var(--c-ink);
}

.thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,160,32,0.15);
  color: var(--c-gold);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-lg);
  box-shadow: 0 0 0 16px rgba(232,160,32,0.07), var(--sh-gold);
}

.thanks-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
}

.thanks-sub {
  font-size: 1.05rem;
  color: rgba(250,246,238,0.6);
  max-width: 400px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.7;
}


.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-xl);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.legal-nav {
  position: sticky; top: 100px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-subtle);
}

.legal-nav-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}

.legal-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
  line-height: 1.4;
}

.legal-nav a:hover { color: var(--c-ink); background: var(--c-cream-dk); }

.legal-content h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: var(--sp-xl) 0 var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 2px solid var(--c-cream-dk);
  scroll-margin-top: 100px;
}

.legal-content h2:first-child { margin-top: 0; border-top: none; }

.legal-content h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-ink);
  margin: var(--sp-md) 0 0.5rem;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.legal-content ul {
  margin: var(--sp-sm) 0;
  padding-left: var(--sp-md);
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.legal-content strong { color: var(--c-ink); font-weight: 600; }

.legal-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--c-gold);
  background: rgba(232,160,32,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-lg);
  font-weight: 500;
}


.cookie-bell {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
}

.cookie-bell-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-gold), 0 0 0 0 rgba(232,160,32,0.4);
  cursor: pointer;
  border: none;
  transition: transform var(--trans-spring), box-shadow var(--trans);
  position: relative;
}

.cookie-bell-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--sh-gold-lift);
}

.cookie-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: #E53935;
  border-radius: 50%;
  border: 2px solid var(--c-cream);
  transition: opacity var(--trans), transform var(--trans);
}

.cookie-badge.hidden { opacity: 0; transform: scale(0); }

.cookie-panel {
  position: absolute;
  bottom: 64px; right: 0;
  width: 340px;
  background: var(--c-ink-lt);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border-lt);
  box-shadow: var(--sh-lift);
  padding: var(--sp-lg);
  transform-origin: bottom right;
  transform: scale(0.85) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--trans), opacity var(--trans);
}

.cookie-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.cookie-panel p {
  font-size: 0.8rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}

.cookie-panel p a { color: var(--c-gold); }

.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--c-border-lt);
}

.cookie-toggle-row:last-of-type { border-bottom: none; }

.cookie-toggle-label {
  font-size: 0.82rem;
  color: var(--c-cream);
  font-weight: 500;
}

.cookie-toggle-sub {
  font-size: 0.72rem;
  color: rgba(250,246,238,0.45);
}

.cookie-switch {
  position: relative;
  width: 36px; height: 20px;
  flex-shrink: 0;
}

.cookie-switch input { opacity: 0; width: 0; height: 0; }

.cookie-switch-track {
  position: absolute; inset: 0;
  background: rgba(250,246,238,0.15);
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--trans);
}

.cookie-switch input:checked + .cookie-switch-track { background: var(--c-gold); }

.cookie-switch-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: var(--c-cream);
  border-radius: 50%;
  transition: transform var(--trans);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(16px);
}

.cookie-actions {
  display: flex; gap: 0.5rem;
  margin-top: var(--sp-sm);
}

.btn-cookie-accept {
  flex: 1;
  padding: 0.6rem;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: background var(--trans), transform var(--trans-spring);
  font-family: 'DM Sans', sans-serif;
}

.btn-cookie-accept:hover { background: var(--c-gold-lt); transform: translateY(-1px); }

.btn-cookie-save {
  flex: 1;
  padding: 0.6rem;
  background: rgba(250,246,238,0.08);
  color: var(--c-cream);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-lt); cursor: pointer;
  transition: background var(--trans);
  font-family: 'DM Sans', sans-serif;
}

.btn-cookie-save:hover { background: rgba(250,246,238,0.14); }


.txt-gold { color: var(--c-gold); }
.txt-cream { color: var(--c-cream); }
.txt-muted { color: var(--c-muted); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }
.w-full { width: 100%; }


@media (max-width: 1024px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-hamburger { display: flex; }
  .mob-menu { display: block; }

  .ftr-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .ftr-brand { grid-column: 1 / -1; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

@media (max-width: 768px) {
  :root {
    --sp-xxl: 4.5rem;
    --sp-xl: 3rem;
  }

  .sec { padding: var(--sp-xl) var(--sp-md); }
  .hdr-inner { padding: 0 var(--sp-md); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .areas-grid, .frm-split { grid-template-columns: 1fr; }
  .split.rev { direction: ltr; }
  .contact-cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillars .pillar:first-child { grid-column: auto; }
  .webinar-grid { grid-template-columns: 1fr; }
  .de-grid { grid-template-columns: 1fr; }

  .frm-map { min-height: 280px; }
  .frm-map iframe { min-height: 280px; }
  .frm-side { padding: var(--sp-lg) var(--sp-md); }

  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }

  .hero { padding: 110px var(--sp-md) var(--sp-xl); }

  .cookie-panel { width: 300px; }

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

  .pg-hd { padding: 120px var(--sp-md) var(--sp-xl); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-ghost,
  .hero-actions .btn-primary { width: 100%; justify-content: center; }
  .cookie-panel { right: -8px; width: 290px; }
}