:root {
  --bg-primary: #0a0a0a;
  --bg-offset: #18181b;
  --bg-panel: #111113;
  --bg-panel-soft: rgba(255, 255, 255, 0.04);
  --bg-panel-strong: rgba(255, 255, 255, 0.07);
  --bg-accent: #ff5a1f;
  --bg-accent-soft: rgba(255, 90, 31, 0.14);
  --bg-blue: #6fb7ff;
  --bg-blue-soft: rgba(111, 183, 255, 0.14);
  --bg-petrol: #2bb2a3;
  --bg-petrol-soft: rgba(43, 178, 163, 0.14);
  --text-main: #ffffff;
  --text-muted: #d1d5db;
  --text-soft: rgba(255, 255, 255, 0.82);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: min(1144px, calc(100vw - 2rem));
  --font-display: "Inter", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a,
button,
input,
textarea {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.landing-page,
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 90, 31, 0.07), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #090909 100%);
}

.card-glass,
.surface-card,
.legal-content,
.legal-hero {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.card-glass,
.legal-content,
.legal-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.surface-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  min-height: 80px;
  padding: 0.9rem max(1rem, calc((100vw - var(--shell)) / 2));
  backdrop-filter: blur(14px);
}

.site-header--overlay {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand::before {
  content: none;
}

.brand__accent {
  color: var(--bg-accent);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.site-nav a {
  padding: 0.45rem 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-main);
  border-color: rgba(255, 90, 31, 0.5);
}

.site-header__cta {
  justify-self: end;
  min-height: 40px;
  padding: 0.68rem 0.95rem;
  font-size: 0.92rem;
  border-radius: 12px;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

.language-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.55);
  background: rgba(255, 90, 31, 0.08);
}

.language-switcher__link[aria-current="true"] {
  border-color: rgba(255, 90, 31, 0.7);
  background: rgba(255, 90, 31, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--bg-accent);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(255, 90, 31, 0.22);
}

.button--primary:hover {
  background: #ff6a36;
}

.button--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.16);
}

.button--ghost:hover {
  border-color: rgba(255, 90, 31, 0.7);
  color: var(--bg-accent);
}

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line-soft);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(255, 90, 31, 0.08), transparent 24%);
}

.hero::after {
  content: none;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 24vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem 0 3rem;
}

.hero__copy,
.contact-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--bg-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

.eyebrow--dark {
  background: rgba(255, 90, 31, 0.1);
  color: var(--bg-accent);
}

.hero__copy .eyebrow,
.section-heading .eyebrow,
.method-intro .eyebrow,
.contact-panel__intro .eyebrow,
.social-proof__label {
  background: rgba(255, 90, 31, 0.1);
  color: var(--bg-accent);
}

.hero__copy h1,
.section-heading h2,
.method-intro h2,
.contact-panel__intro h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  color: var(--text-main);
  letter-spacing: -0.05em;
}

.hero__copy h1 {
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  max-width: 8.5ch;
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 26ch;
  font-size: clamp(1.2rem, 1rem + 0.45vw, 1.6rem);
  line-height: 1.5;
  color: var(--text-muted);
}

.hero__support,
.section-heading p,
.method-intro p,
.contact-panel__intro p,
.footer-copy,
.legal-hero p,
.legal-text,
.cookie-banner__panel p,
.cookie-modal__dialog p {
  color: var(--text-muted);
}

.hero__support {
  max-width: 52ch;
  margin: 1rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__visual {
  display: flex;
  align-items: stretch;
}

.hero__portrait {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
  padding: 0;
  background: var(--bg-offset);
  overflow: hidden;
}

.hero__portrait--product {
  padding: 0.6rem;
  background: rgba(17, 17, 19, 0.92);
}

.hero__image {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: none;
  transform: scale(1.5);
  transform-origin: center top;
}

.hero__image--product {
  width: 100%;
  min-height: 0;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.22);
  transform-origin: center center;
}

.hero__portrait::after {
  content: none;
}

.hero__note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(220, 220, 226, 0.88);
  color: #141416;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.social-proof {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.social-proof__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  min-height: 112px;
  padding: 1.25rem 0;
}

.social-proof__label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--bg-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

.social-proof__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  opacity: 0.38;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section--cta {
  padding-top: 6rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.section-heading h2,
.method-intro h2,
.contact-panel__intro h2,
.legal-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.offer-grid,
.audience-grid,
.method-steps,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.offer-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

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

.offer-card,
.audience-card,
.method-step,
.pricing-card {
  padding: 1.6rem;
}

.offer-card__image {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center center;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  opacity: 1;
  filter: none;
  padding: 0.35rem;
}

.offer-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.offer-card__image-link:hover .offer-card__image,
.offer-card__image-link:focus-visible .offer-card__image {
  border-color: rgba(255, 90, 31, 0.3);
  transform: translateY(-1px);
}

.offer-card__image-link:focus-visible {
  outline: none;
}

.offer-card:hover,
.audience-card:hover,
.method-step:hover,
.pricing-card:hover,
.contact-panel__form:hover,
.legal-content:hover {
  border-color: rgba(255, 90, 31, 0.26);
}

.offer-card__index,
.method-step__index {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 90, 31, 0.72);
}

.offer-card h3,
.audience-card h3,
.method-step h3,
.pricing-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.12;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.portfolio-link {
  color: #8ec5ff;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.portfolio-link:hover {
  color: #b8dbff;
}

.offer-card p:last-child,
.audience-card p:last-child,
.method-step p:last-child,
.pricing-card p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.pricing-card__image {
  height: 300px;
}

.pricing-card__image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pricing-card__image-button:focus-visible {
  outline: none;
}

.pricing-card__image-button:hover .pricing-card__image,
.pricing-card__image-button:focus-visible .pricing-card__image {
  transform: translateY(-1px);
}

.pricing-card__intro {
  margin-top: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
}

.pricing-card__toggle,
.pricing-card__cta {
  min-height: 44px;
  border-radius: 10px;
}

.pricing-card__toggle,
.pricing-card__summary {
  justify-self: start;
  margin-top: 0.35rem;
  padding-inline: 1rem;
}

.pricing-card__details {
  margin-top: 1.2rem;
}

.pricing-card__summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.pricing-card__summary::-webkit-details-marker {
  display: none;
}

.pricing-card__summary::after {
  content: "+";
  margin-left: 0.55rem;
  font-size: 1rem;
  line-height: 1;
}

.pricing-card__details[open] .pricing-card__summary::after {
  content: "-";
}

.pricing-card__details-body {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.pricing-card__details-body p {
  margin: 0;
  color: var(--text-muted);
}

.pricing-card__toggle--s {
  background: var(--bg-accent-soft);
  color: #ffb08f;
}

.pricing-card__toggle--m {
  background: var(--bg-blue-soft);
  color: #b9daff;
}

.pricing-card__toggle--l {
  background: var(--bg-petrol-soft);
  color: #9de8df;
}

.pricing-card__toggle--s:hover,
.pricing-card__cta--s:hover {
  background: rgba(255, 90, 31, 0.2);
}

.pricing-card__toggle--m:hover,
.pricing-card__cta--m:hover {
  background: rgba(111, 183, 255, 0.2);
}

.pricing-card__toggle--l:hover,
.pricing-card__cta--l:hover {
  background: rgba(43, 178, 163, 0.2);
}

.pricing-card__jump--s .pricing-card__image,
.pricing-card__cta--s {
  border-color: rgba(255, 90, 31, 0.28);
}

.pricing-card__jump--m .pricing-card__image,
.pricing-card__cta--m {
  border-color: rgba(111, 183, 255, 0.3);
}

.pricing-card__jump--l .pricing-card__image,
.pricing-card__cta--l {
  border-color: rgba(43, 178, 163, 0.3);
}

.pricing-card__cta {
  justify-self: start;
}

.pricing-card__cta--s {
  background: var(--bg-accent);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(255, 90, 31, 0.2);
}

.pricing-card__cta--m {
  background: var(--bg-blue);
  color: #0a1220;
  box-shadow: 0 16px 30px rgba(111, 183, 255, 0.18);
}

.pricing-card__cta--l {
  background: var(--bg-petrol);
  color: #081513;
  box-shadow: 0 16px 30px rgba(43, 178, 163, 0.18);
}

.pricing-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-meta p {
  margin: 0;
}

.pricing-meta strong {
  color: var(--text-main);
}

.pricing-meta span {
  color: var(--text-soft);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 7rem;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-panel--with-image {
  position: relative;
  overflow: hidden;
}

.contact-panel--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.16), rgba(10, 10, 10, 0.24)),
    url("Photos/kompas.JPG");
  background-size: cover;
  background-position: center;
  opacity: 0.48;
  pointer-events: none;
}

.contact-panel--website::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.36), rgba(10, 10, 10, 0.42)),
    url("Photos/laptop.JPG");
  background-size: cover;
  background-position: center top;
  opacity: 0.28;
}

.contact-panel--startup::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.38)),
    url("Photos/amt.JPG");
  background-size: cover;
  background-position: center;
  opacity: 0.26;
}

.contact-panel--with-image > * {
  position: relative;
  z-index: 1;
}

.contact-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel__form {
  padding: 1.4rem;
  background: rgba(50, 50, 56, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-direct__link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}

.contact-direct__link:hover {
  border-color: rgba(255, 90, 31, 0.65);
  color: var(--bg-accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form__field label,
.contact-form__check {
  font-size: 0.96rem;
  color: var(--text-soft);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #34343a;
  color: var(--text-main);
  font: inherit;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: 2px solid rgba(255, 90, 31, 0.16);
  border-color: rgba(255, 90, 31, 0.6);
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.contact-form__check input {
  margin-top: 0.2rem;
  accent-color: var(--bg-accent);
}

.contact-form__check a {
  color: var(--bg-accent);
}

.contact-form__submit {
  justify-self: start;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.contact-success {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.28);
  color: #ffb090;
  font-weight: 700;
}

.contact-success-popup {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: min(420px, calc(100vw - 2rem));
  padding: 1.15rem 1.2rem 1.15rem;
  border: 1px solid rgba(255, 90, 31, 0.24);
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.97), rgba(12, 12, 14, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  animation: successPopupIn 220ms ease;
}

.contact-success-popup--closing {
  animation: successPopupOut 220ms ease forwards;
}

.contact-success-popup__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-success-popup__close:hover {
  background: rgba(255, 90, 31, 0.12);
  color: var(--bg-accent);
}

.contact-success-popup__eyebrow {
  margin: 0 0 0.85rem;
}

.contact-success-popup__message {
  margin: 0;
  padding-right: 2rem;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes successPopupIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes successPopupOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.site-footer {
  padding: 2.4rem 0 2.8rem;
  background: var(--bg-offset);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.footer-copy {
  margin: 0;
  max-width: 52ch;
}

.footer-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.55);
  background: rgba(255, 90, 31, 0.08);
}

.footer-social img {
  width: 1.18rem;
  height: 1.18rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-cookie-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bg-accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: #ff8259;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-nav a:hover {
  color: var(--bg-accent);
}

.legal-main {
  padding: 2.5rem 0 4.6rem;
}

.thanks-page .site-header {
  position: static;
}

.thanks-card {
  max-width: 760px;
  margin: 4rem auto 0;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.legal-hero {
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
}

.legal-content {
  padding: clamp(1.35rem, 3vw, 2.6rem);
}

.legal-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.legal-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-weight: 700;
}

.legal-jump-nav a:hover {
  border-color: rgba(255, 90, 31, 0.55);
  color: var(--bg-accent);
}

.legal-text {
  max-width: 78ch;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.06rem);
  line-height: 1.82;
}

.legal-text p,
.legal-text ul {
  margin: 0 0 1rem;
}

.legal-text p,
.legal-text li {
  overflow-wrap: anywhere;
}

.legal-text a {
  color: var(--bg-accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.legal-text a:hover {
  color: #ff8259;
}

.legal-text h2,
.legal-text h3,
.legal-text h4 {
  scroll-margin-top: 7rem;
}

.legal-text h2 {
  margin: 2.4rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 0.7vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  margin: 1.55rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.03rem + 0.34vw, 1.35rem);
  line-height: 1.3;
  color: var(--text-main);
}

.legal-text h4 {
  margin: 1.3rem 0 0.55rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  color: var(--text-main);
}

.legal-text ul {
  padding-left: 1.25rem;
}

.legal-text li {
  margin-bottom: 0.55rem;
}

.legal-text p + h2,
.legal-text ul + h2,
.legal-text p + h3,
.legal-text ul + h3,
.legal-text p + h4,
.legal-text ul + h4 {
  padding-top: 0.35rem;
}

.legal-meta {
  margin-bottom: 0.45rem;
}

.legal-action {
  margin: 0 0 1.2rem;
}

.legal-action__button {
  width: auto;
}

.legal-loading,
.legal-error {
  margin: 0;
  color: #ff9b7a;
  font-weight: 700;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 90;
}

.cookie-banner__panel {
  width: min(720px, calc(100vw - 2rem));
  padding: 1.2rem;
  border-radius: 20px;
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.cookie-banner__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--bg-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.cookie-banner__panel h2,
.cookie-modal__dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-main);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  padding: 1.5rem;
  background: rgba(12, 12, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-modal__intro {
  margin-top: 0.85rem;
  max-width: 66ch;
}

.cookie-category {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cookie-category__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-main);
}

.cookie-category details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.8rem;
}

.cookie-category summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
}

.cookie-category ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 34px;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle span {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease;
}

.cookie-toggle input:checked + span {
  background: var(--bg-accent);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(24px);
}

.cookie-toggle input:disabled {
  cursor: not-allowed;
}

.cookie-toggle input:disabled + span {
  opacity: 0.85;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero__content,
  .method-layout,
  .footer-grid,
  .offer-grid,
  .audience-grid,
  .method-steps,
  .pricing-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .social-proof__inner {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    align-items: start;
    justify-items: stretch;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .site-nav {
    grid-column: 1;
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .site-header__cta {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: end;
    justify-self: start;
    margin-top: 0.35rem;
  }

  .hero__content {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero__copy,
  .contact-panel,
  .contact-panel__form,
  .legal-hero,
  .legal-content {
    padding: 1.25rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero__note {
    right: 1rem;
    bottom: 1rem;
    font-size: 0.84rem;
  }

  .legal-main {
    padding: 1.5rem 0 3.2rem;
  }

  .legal-text {
    max-width: none;
    font-size: 1rem;
  }

  .legal-jump-nav a,
  .button {
    width: auto;
    max-width: 100%;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem;
  }

  .cookie-banner__panel,
  .cookie-modal__dialog {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .cookie-category__header {
    align-items: flex-start;
    flex-direction: column;
  }
}
