:root {
  --df-bg: #f5faff;
  --df-surface: #ffffff;
  --df-surface-2: #eff4f9;
  --df-ink: #011027;
  --df-ink-soft: #44474d;
  --df-gold: #f9bd08;
  --df-gold-dark: #785a00;
  --df-line: #d7dee7;
  --df-dark: #011027;
  --df-dark-2: #16253d;
  --df-shadow: 0 18px 45px rgba(1, 16, 39, 0.12);
  --df-radius: 8px;
  --df-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--df-bg);
  color: var(--df-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select { font: inherit; }

.df-skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 9999;
  background: var(--df-gold);
  color: var(--df-ink);
  padding: 10px 14px;
}
.df-skip-link:focus { top: 12px; }

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

.df-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(1, 16, 39, .10);
  backdrop-filter: blur(14px);
}
.df-header__inner {
  width: min(var(--df-max), calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.df-brand { display: inline-flex; align-items: center; min-height: 64px; }
.df-brand img {
  width: auto;
  height: 64px;
}

.df-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.df-menu li { position: relative; }
.df-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--df-ink-soft);
  font-size: 14px;
  font-weight: 700;
}
.df-menu > li.current-menu-item > a,
.df-menu > li.current-menu-ancestor > a,
.df-menu a:hover { color: var(--df-gold-dark); text-decoration: none; }
.df-menu > .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.df-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: var(--df-surface);
  border: 1px solid var(--df-line);
  border-radius: 8px;
  box-shadow: var(--df-shadow);
}
.df-menu li:hover > .sub-menu,
.df-menu li:focus-within > .sub-menu { display: block; }
.df-menu .sub-menu a {
  width: 100%;
  padding: 8px 10px;
  min-height: 40px;
}
.df-menu .df-sub-menu--areas {
  min-width: 210px;
}

.df-header__actions { display: flex; align-items: center; gap: 14px; }
.df-phone { font-size: 14px; font-weight: 800; white-space: nowrap; }
.df-button,
.df-quick-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--df-gold);
  color: var(--df-ink);
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(120, 90, 0, .16);
  cursor: pointer;
}
.df-button:hover,
.df-quick-form button:hover { background: #e6ad00; text-decoration: none; }
.df-button--small { min-height: 42px; padding: 10px 16px; }
.df-button--ghost {
  background: transparent;
  border: 1px solid var(--df-ink);
  box-shadow: none;
}
.df-button--dark { background: var(--df-ink); color: white; }

.df-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(120, 90, 0, .26);
  background: rgba(249, 189, 8, .34);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.df-menu-toggle:hover,
.df-menu-toggle[aria-expanded="true"] {
  background: rgba(249, 189, 8, .46);
  border-color: rgba(120, 90, 0, .36);
}
.df-menu-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(249, 189, 8, .34);
}
.df-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--df-ink);
  border-radius: 999px;
}
.df-mobile-nav {
  background: var(--df-surface);
  border-top: 1px solid var(--df-line);
  padding: 14px 20px 22px;
}
.df-mobile-nav .df-menu {
  display: block;
}
.df-mobile-nav .df-menu a {
  width: 100%;
  min-height: 48px;
}
.df-mobile-nav .sub-menu {
  position: static;
  display: block;
  min-width: 0;
  max-height: none;
  overflow: visible;
  box-shadow: none;
  border: 0;
  padding: 0 0 0 14px;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--df-ink);
}
h1 { font-size: clamp(42px, 6.4vw, 76px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.01em; }
h3 { font-size: 21px; }
h4 {
  margin: 0;
  color: var(--df-ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
em { color: var(--df-gold-dark); }

.df-hero {
  padding: 78px 0 110px;
}
.df-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .76fr);
  gap: 72px;
  align-items: center;
}
.df-hero__copy { display: grid; gap: 24px; }
.df-kicker,
.df-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--df-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.df-kicker {
  width: fit-content;
  padding: 8px 12px;
  color: white;
  background: var(--df-ink);
  border-radius: 999px;
}
.df-kicker span {
  width: 8px;
  height: 8px;
  background: var(--df-gold);
  border-radius: 999px;
}
.df-lead,
.df-section-intro {
  max-width: 680px;
  margin: 0;
  color: var(--df-ink-soft);
  font-size: 18px;
}
.df-quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 650px;
  padding: 20px;
  background: var(--df-surface);
  border: 1px solid var(--df-line);
  border-radius: var(--df-radius);
  box-shadow: var(--df-shadow);
}
.df-quick-form label {
  display: grid;
  gap: 7px;
  color: var(--df-ink-soft);
  font-size: 12px;
  font-weight: 800;
}
.df-quick-form input,
.df-quick-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--df-line);
  border-radius: 4px;
  background: #fbfdff;
  padding: 0 14px;
}
.df-quick-form__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.df-quick-form button {
  width: 100%;
  background: var(--df-ink);
  color: white;
}
.df-call-button {
  box-shadow: none;
  white-space: nowrap;
}
.df-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--df-ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.df-trust-row li::before { content: "✓"; color: var(--df-gold-dark); margin-right: 7px; }

.df-hero__media {
  position: relative;
}
.df-hero__media::before {
  content: "";
  position: absolute;
  inset: 34px 34px -22px -22px;
  background: var(--df-gold);
  border-radius: var(--df-radius);
}
.df-hero__media img {
  position: relative;
  border-radius: var(--df-radius);
  box-shadow: var(--df-shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.df-reco-trust {
  padding: 0 0 58px;
  background: var(--df-bg);
}
.df-reco-trust .df-container {
  max-width: 1120px;
}
.df-reco-trust iframe {
  min-height: 225px;
  background: var(--df-surface);
  border-radius: 8px;
}
.df-process,
.df-services,
.df-footer {
  background: var(--df-dark);
  color: white;
}
.df-process { padding: 86px 0 96px; text-align: center; }
.df-process h2,
.df-services h2,
.df-footer h2 { color: white; }
.df-process .df-section-kicker,
.df-services .df-section-kicker {
  color: var(--df-gold);
}
.df-process__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.df-process article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--df-dark-2);
  color: var(--df-gold);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  font-weight: 900;
}
.df-process h3,
.df-services h3 { color: white; margin-top: 20px; }
.df-process p { color: #bdc8d6; margin: 10px 0 0; font-size: 14px; }

.df-offer-info,
.df-packages,
.df-about,
.df-offer { padding: 96px 0; background: var(--df-surface); }
.df-packages .df-container,
.df-offer .df-container { display: grid; justify-items: center; gap: 16px; }
.df-offer-info {
  background: var(--df-bg);
  border-top: 1px solid rgba(1,16,39,.06);
}
.df-offer-info__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.df-offer-info p { color: var(--df-ink-soft); }
.df-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.df-info-list span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: 0 6px 18px rgba(1,16,39,.04);
  font-weight: 800;
}
.df-info-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 10px;
  background: var(--df-gold);
  border-radius: 999px;
}
.df-package-grid {
  width: 100%;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}
.df-package {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: 0 4px 16px rgba(1,16,39,.05);
}
.df-package--featured {
  border-color: var(--df-gold);
  box-shadow: var(--df-shadow);
}
.df-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 5px 8px;
  background: var(--df-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.df-package p { margin: 0; color: var(--df-ink-soft); }
.df-package__subtitle {
  color: var(--df-ink) !important;
  font-weight: 900;
}
.df-package ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.df-package li::before { content: "✓"; margin-right: 8px; color: var(--df-gold-dark); }
.df-package__note,
.df-package__addons {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--df-bg);
  border-left: 3px solid var(--df-gold);
}
.df-package__note strong,
.df-package__addons strong {
  color: var(--df-ink);
  font-weight: 900;
}
.df-package__addons ul { gap: 6px; }

.df-services { padding: 92px 0; }
.df-services__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.df-service-card {
  min-height: 188px;
  padding: 24px;
  background: var(--df-dark-2);
  border: 1px solid rgba(255,255,255,.10);
}
.df-service-card p { color: #bdc8d6; font-size: 14px; }
.df-service-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--df-gold);
  font-size: 13px;
  font-weight: 900;
}

.df-why {
  padding: 92px 0;
  background: var(--df-bg);
}
.df-why__grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.df-why article {
  padding: 24px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: 0 6px 18px rgba(1,16,39,.05);
}
.df-why h3 { font-size: 20px; }
.df-why p { color: var(--df-ink-soft); margin-bottom: 0; }

.df-about__grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 70px;
  align-items: center;
}
.df-about p { color: var(--df-ink-soft); }
.df-about__image { position: relative; }
.df-about__image img {
  filter: grayscale(1);
  border: 10px solid white;
  box-shadow: var(--df-shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.df-about__image div {
  position: absolute;
  right: -20px;
  bottom: 32px;
  background: var(--df-ink);
  color: white;
  padding: 18px;
}
.df-about__image strong {
  display: block;
  color: var(--df-gold);
  font-size: 36px;
  line-height: 1;
}
blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--df-gold);
  background: var(--df-bg);
  color: var(--df-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.df-faq {
  padding: 90px 0;
  background: #eaf2fb;
}
.df-faq__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.df-faq details {
  width: min(760px, 100%);
  background: white;
  border: 1px solid var(--df-line);
  padding: 0;
}
.df-faq summary {
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-weight: 800;
}
.df-faq summary::after { content: "+"; color: var(--df-gold-dark); }
.df-faq details[open] summary::after { content: "−"; }
.df-faq details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--df-ink-soft);
}

.df-offer { background: var(--df-bg); }
.df-offer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.df-form-shell {
  width: min(820px, 100%);
  margin-top: 30px;
  padding: 28px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: var(--df-shadow);
}

.df-trust-area {
  padding: 84px 0;
  background: white;
  border-top: 1px solid var(--df-line);
}
.df-trust-area__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.7fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
}
.df-trust-area__brand {
  display: grid;
  gap: 18px;
}
.df-trust-area__brand > img.df-trust-area__logo {
  width: auto;
  height: 96px;
  max-width: 100%;
  padding: 8px;
  background: white;
  border-radius: 8px;
}
.df-trust-area p {
  margin: 0;
  color: var(--df-ink-soft);
}
.df-trust-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.df-trust-area__brand ul {
  display: grid;
  gap: 10px;
  color: var(--df-ink-soft);
}
.df-trust-area__brand a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.df-trust-area a:hover { color: var(--df-gold-dark); }
.df-trust-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 22px 28px;
  align-items: center;
  margin-top: 18px;
}
.df-trust-logos img {
  display: block;
  max-height: 82px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  justify-self: center;
  align-self: center;
}
.df-trust-logo {
  display: inline-flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 2px solid #4f8f47;
  border-radius: 8px;
  background: #dff1d8;
  color: var(--df-ink);
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.df-trust-area__links {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, .8fr) minmax(0, 1.7fr);
  gap: 42px;
}
.df-trust-area__links h2 {
  margin-bottom: 16px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  letter-spacing: 0;
}
.df-trust-area__links ul {
  display: grid;
  gap: 10px;
}
.df-trust-area__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--df-ink-soft);
  font-size: 16px;
}
.df-area-links ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 10px;
}

.df-footer { padding: 64px 0 24px; }
.df-footer__inner {
  width: min(var(--df-max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
.df-footer__brand {
  display: grid;
  align-content: start;
  gap: 12px;
}
.df-footer__logo {
  display: inline-flex;
  width: fit-content;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  padding: 8px;
  background: white;
  border-radius: 8px;
}
.df-footer__logo img {
  width: auto;
  height: 82px;
}
.df-footer h2 {
  margin: 0 0 12px;
  color: white;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.df-footer p,
.df-footer a,
.df-footer li,
.df-footer address,
.df-footer address span { color: #bdc8d6; font-size: 14px; }
.df-footer address strong {
  color: white;
  font-size: 14px;
  line-height: 1.35;
}
.df-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.df-footer ul a {
  min-height: 30px;
}
.df-footer address {
  display: grid;
  gap: 4px;
  font-style: normal;
}
.df-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.df-footer__bottom {
  width: min(var(--df-max), calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #8f9bad;
  font-size: 12px;
}

.df-page { padding: 72px 0; }
.df-page__inner {
  background: white;
  padding: 44px;
  border: 1px solid var(--df-line);
}
.df-page-title { margin-bottom: 30px; }

.df-price-hero,
.df-price-factors,
.df-price-examples,
.df-price-rut,
.df-price-form {
  padding: 86px 0;
  background: var(--df-surface);
}
.df-price-hero__grid,
.df-price-factors__grid,
.df-price-rut__grid,
.df-price-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 58px;
  align-items: center;
}
.df-price-hero__copy,
.df-price-form__grid > div:first-child {
  display: grid;
  gap: 22px;
}
.df-price-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.df-price-hero__media {
  position: relative;
}
.df-price-hero__media::before {
  content: "";
  position: absolute;
  inset: 30px 30px -20px -20px;
  background: var(--df-gold);
  border-radius: var(--df-radius);
}
.df-price-hero__media img {
  position: relative;
  border-radius: var(--df-radius);
  box-shadow: var(--df-shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.df-price-factors,
.df-price-rut {
  background: var(--df-bg);
}
.df-price-factors p,
.df-price-rut p,
.df-price-form p {
  color: var(--df-ink-soft);
}
.df-price-list,
.df-price-form__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.df-price-list span,
.df-price-form__list li {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 13px 15px;
  background: white;
  border: 1px solid var(--df-line);
  font-weight: 800;
}
.df-price-list span::before,
.df-price-form__list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--df-gold-dark);
}
.df-price-examples .df-container {
  display: grid;
  justify-items: center;
  gap: 16px;
}
.df-price-example-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.df-price-process__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.df-price-example-grid article,
.df-price-process article,
.df-price-callout {
  padding: 24px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: 0 6px 18px rgba(1,16,39,.05);
}
.df-price-example-grid p,
.df-price-process p,
.df-price-callout p {
  color: var(--df-ink-soft);
}
.df-price-example-grid strong,
.df-price-callout strong {
  color: var(--df-ink);
}
.df-price-process {
  padding: 86px 0;
  background: var(--df-dark);
  color: white;
  text-align: center;
}
.df-price-process h2,
.df-price-process h3 {
  color: white;
}
.df-price-process .df-section-kicker {
  color: var(--df-gold);
}
.df-price-process article {
  background: var(--df-dark-2);
  border-color: rgba(255,255,255,.12);
}
.df-price-process p {
  color: #d8e2ee;
}
.df-price-process article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--df-ink);
  color: var(--df-gold);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  font-weight: 900;
}
.df-price-form .df-form-shell {
  margin-top: 0;
}
.df-price-form .df-form-shell > .forminator-ui[data-form] {
  display: none;
}
.df-price-form .df-form-shell form.forminator-custom-form {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.df-price-form .forminator-ui,
.df-price-form .forminator-ui *,
.df-price-form .forminator-ui label,
.df-price-form .forminator-ui input,
.df-price-form .forminator-ui textarea,
.df-price-form .forminator-ui select,
.df-price-form .forminator-ui button {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.df-price-form .forminator-ui {
  background: #ffffff !important;
  color: var(--df-ink) !important;
}
.df-price-form .forminator-ui label,
.df-price-form .forminator-ui .forminator-label {
  color: var(--df-ink) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}
.df-price-form .forminator-ui input,
.df-price-form .forminator-ui textarea,
.df-price-form .forminator-ui select,
.df-price-form .forminator-ui .select2-selection {
  min-height: 48px !important;
  border: 1px solid #a8b6c6 !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: var(--df-ink) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.df-price-form .forminator-ui input::placeholder,
.df-price-form .forminator-ui textarea::placeholder {
  color: #66758a !important;
  opacity: 1 !important;
}
.df-price-form .forminator-ui button,
.df-price-form .forminator-ui .forminator-button {
  border-radius: 4px !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}

.df-service-hero .df-trust-row {
  gap: 12px 18px;
}
.df-service-process .df-container {
  display: grid;
  justify-items: center;
}
.df-service-steps {
  width: 100%;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}
.df-service-steps article {
  padding: 22px;
  background: var(--df-dark-2);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 6px 18px rgba(1,16,39,.12);
}
.df-service-steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--df-ink);
  color: var(--df-gold);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  font-weight: 900;
}
.df-service-steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.df-service-steps p {
  margin: 0;
  color: #d8e2ee;
  font-size: 15px;
}
.df-service-included,
.df-service-tips {
  padding: 90px 0;
  background: var(--df-surface);
}
.df-service-included__grid,
.df-service-tips__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 58px;
  align-items: start;
}
.df-service-included p,
.df-service-tips p,
.df-service-addons p {
  color: var(--df-ink-soft);
}
.df-service-checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.df-service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #fbfdff;
  border: 1px solid var(--df-line);
  font-weight: 800;
}
.df-service-checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--df-gold-dark);
  font-weight: 900;
}
.df-service-note {
  padding: 24px;
  background: var(--df-bg);
  border: 1px solid var(--df-line);
  box-shadow: var(--df-shadow);
}
.df-service-note img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--df-radius);
  margin-bottom: 20px;
}
.df-service-note h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.df-service-tips {
  background: var(--df-bg);
}

.df-office-segments {
  padding: 90px 0;
  background: var(--df-surface);
}
.df-office-segments .df-container {
  display: grid;
  gap: 18px;
}
.df-office-segments__intro {
  max-width: 820px;
  margin: 0;
  color: var(--df-ink-soft);
}
.df-office-segments__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.df-office-segments__grid article {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
  background: var(--df-bg);
  border: 1px solid var(--df-line);
  border-radius: 8px;
}
.df-office-segments__grid h3 {
  margin: 0;
  font-size: 20px;
}
.df-office-segments__grid p {
  margin: 0;
  color: var(--df-ink-soft);
}

.df-business-priority,
.df-area-commercial-links {
  padding: 90px 0;
  background: var(--df-surface);
}
.df-business-priority + .df-area-commercial-links,
.df-service-tips + .df-area-commercial-links {
  padding-top: 0;
}
.df-business-priority__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}
.df-business-priority__grid > div:first-child {
  display: grid;
  gap: 18px;
}
.df-business-priority__grid p {
  margin: 0;
  color: var(--df-ink-soft);
}
.df-business-priority__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.df-business-priority__cards,
.df-area-commercial-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.df-business-priority__cards article,
.df-area-commercial-links__grid a {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 20px;
  background: var(--df-bg);
  border: 1px solid var(--df-line);
  border-radius: 8px;
}
.df-business-priority__cards article:first-child {
  background: var(--df-dark);
  border-color: var(--df-dark);
}
.df-business-priority__cards article:first-child h3,
.df-business-priority__cards article:first-child p {
  color: #fff;
}
.df-area-commercial-links .df-container {
  display: grid;
  gap: 22px;
}
.df-area-commercial-links h2 {
  max-width: 840px;
}
.df-area-commercial-links__grid a:hover {
  border-color: rgba(120, 90, 0, .42);
  text-decoration: none;
}
.df-area-commercial-links__grid strong {
  font-size: 16px;
}
.df-area-commercial-links__grid span {
  color: var(--df-ink-soft);
}

.df-international-stockholm {
  padding: 90px 0;
  background: var(--df-surface);
  border-top: 1px solid rgba(1, 16, 39, .08);
}
.df-international-stockholm .df-container {
  display: grid;
  gap: 18px;
}
.df-international-stockholm p {
  max-width: 860px;
  margin: 0;
  color: var(--df-ink-soft);
}
.df-international-stockholm__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.df-international-stockholm__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 13px;
  background: var(--df-bg);
  border: 1px solid var(--df-line);
  border-radius: 4px;
  color: var(--df-ink);
  font-size: 14px;
  font-weight: 800;
}
.df-international-stockholm__links a:hover {
  border-color: rgba(120, 90, 0, .42);
  color: var(--df-gold-dark);
  text-decoration: none;
}

.df-area-hero {
  background:
    linear-gradient(90deg, rgba(255,197,0,.16), transparent 34%),
    var(--df-surface);
}
.df-area-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: 58px;
  align-items: center;
}
.df-area-hero__copy {
  display: grid;
  gap: 22px;
}
.df-area-hero__panel {
  padding: 30px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: var(--df-shadow);
}
.df-area-hero__panel h2 {
  font-size: clamp(27px, 3vw, 39px);
}
.df-area-hero__panel ul,
.df-area-richtext ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.df-area-hero__panel li,
.df-area-richtext li {
  position: relative;
  padding-left: 26px;
  color: var(--df-ink-soft);
}
.df-area-hero__panel li::before,
.df-area-richtext li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--df-gold-dark);
  font-weight: 900;
}
.df-area-local,
.df-area-why,
.df-area-section,
.df-area-case {
  padding: 88px 0;
  background: var(--df-bg);
}
.df-area-local__grid,
.df-area-why__grid {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.df-area-section__inner,
.df-area-case__inner {
  display: grid;
  gap: 22px;
}
.df-area-richtext {
  display: grid;
  gap: 18px;
}
.df-area-richtext p {
  max-width: 900px;
  color: var(--df-ink-soft);
}
.df-area-richtext strong {
  color: var(--df-ink);
}
.df-area-richtext a:not(.df-button) {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--df-ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.df-area-subsections {
  display: grid;
  gap: 18px;
}
.df-area-subsections article {
  padding: 22px;
  background: white;
  border: 1px solid var(--df-line);
}
.df-area-subsections h3 {
  font-size: clamp(21px, 2vw, 27px);
}
.df-area-reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 6px 0 12px;
}
.df-area-reading-grid article {
  padding: 20px;
  background: white;
  border: 1px solid var(--df-line);
}
.df-area-reading-grid span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--df-gold);
  color: var(--df-ink);
  font-weight: 900;
}
.df-area-reading-grid p {
  margin: 0;
}
.df-area-services,
.df-area-process {
  padding: 90px 0;
  background: var(--df-dark);
  color: white;
}
.df-area-services h2,
.df-area-services h3,
.df-area-process h2,
.df-area-process h3 {
  color: white;
}
.df-area-services .df-section-kicker,
.df-area-process .df-section-kicker {
  color: var(--df-gold);
}
.df-area-service-grid,
.df-area-process-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.df-area-service-grid article,
.df-area-process-grid article {
  padding: 22px;
  background: var(--df-dark-2);
  border: 1px solid rgba(255,255,255,.12);
}
.df-area-service-grid article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.df-area-service-grid article h3 {
  margin-bottom: 2px;
  font-size: clamp(22px, 2vw, 28px);
}
.df-area-service-grid article p {
  margin: 0;
  line-height: 1.65;
}
.df-area-service-grid article p + p {
  margin-top: 4px;
}
.df-area-service-grid p,
.df-area-process-grid p,
.df-area-service-grid li,
.df-area-process-grid li {
  color: #d8e2ee;
}
.df-area-process-grid article h3::first-letter {
  color: var(--df-gold);
}
.df-area-case {
  background: var(--df-surface);
}
.df-area-case__inner {
  padding: 34px;
  background: white;
  border: 1px solid var(--df-line);
  box-shadow: var(--df-shadow);
}
.df-area-faq {
  background: #eaf2fb;
}
.df-area-faq details {
  max-width: 880px;
  background: white;
  border: 1px solid var(--df-line);
  margin-top: 12px;
}
.df-area-faq summary {
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--df-ink);
  font-weight: 900;
}
.df-area-faq summary::after {
  content: "+";
  color: var(--df-gold-dark);
  font-size: 20px;
}
.df-area-faq details[open] summary::after {
  content: "-";
}
.df-area-faq details p {
  padding: 0 20px 18px;
}

@media (max-width: 1024px) {
  .df-nav,
  .df-phone { display: none; }
  .df-menu-toggle { display: inline-flex; }
  .df-hero__grid,
  .df-about__grid,
  .df-trust-area__grid,
  .df-price-hero__grid,
  .df-area-hero__grid,
  .df-area-local__grid,
  .df-area-why__grid,
  .df-price-factors__grid,
  .df-price-rut__grid,
  .df-price-form__grid,
  .df-business-priority__grid { grid-template-columns: 1fr; }
  .df-process__grid,
  .df-services__grid,
  .df-price-example-grid,
  .df-price-process__grid,
  .df-area-service-grid,
  .df-area-process-grid,
  .df-business-priority__cards,
  .df-area-commercial-links__grid,
  .df-office-segments__grid { grid-template-columns: repeat(2, 1fr); }
  .df-service-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .df-service-included__grid,
  .df-service-tips__grid { grid-template-columns: 1fr; }
  .df-trust-area__links { grid-template-columns: repeat(2, 1fr); }
  .df-area-links { grid-column: 1 / -1; }
  .df-footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .df-container,
  .df-header__inner,
  .df-footer__inner,
  .df-footer__bottom { width: min(100% - 32px, var(--df-max)); }
  .df-header__inner { min-height: 72px; }
  .df-brand { min-height: 62px; }
  .df-brand img {
    width: auto;
    height: 62px;
  }
  .df-header__actions { gap: 8px; }
  .df-header__actions .df-button { display: none; }
  .df-hero { padding: 48px 0 72px; }
  .df-hero__grid { gap: 42px; }
  .df-quick-form,
  .df-quick-form__actions,
  .df-offer-info__grid,
  .df-info-list,
  .df-package-grid,
  .df-process__grid,
  .df-services__grid,
  .df-why__grid,
  .df-footer__inner { grid-template-columns: 1fr; }
  .df-process,
  .df-offer-info,
  .df-packages,
  .df-why,
  .df-services,
  .df-about,
  .df-faq,
  .df-offer,
  .df-trust-area,
  .df-price-hero,
  .df-price-factors,
  .df-price-examples,
  .df-price-rut,
  .df-price-form,
  .df-price-process,
  .df-business-priority,
  .df-area-commercial-links,
  .df-office-segments,
  .df-international-stockholm { padding: 66px 0; }
  .df-trust-area__links,
  .df-area-links ul,
  .df-trust-logos,
  .df-price-example-grid,
  .df-price-process__grid,
  .df-area-service-grid,
  .df-area-process-grid,
  .df-area-reading-grid,
  .df-business-priority__cards,
  .df-area-commercial-links__grid,
  .df-office-segments__grid,
  .df-service-steps { grid-template-columns: 1fr; }
  .df-service-included,
  .df-service-tips { padding: 66px 0; }
  .df-trust-logos {
    max-width: 260px;
    align-items: start;
  }
  .df-trust-logos img {
    max-height: 104px;
    max-width: 180px;
  }
  .df-trust-area__brand > img.df-trust-area__logo {
    height: 82px;
  }
  .df-about__image div {
    right: 12px;
    bottom: 18px;
  }
  .df-package,
  .df-form-shell,
  .df-page__inner { padding: 22px; }
  .df-footer { padding: 44px 0 22px; }
  .df-footer__inner { gap: 28px; }
  .df-footer__brand { gap: 7px; }
  .df-footer__logo {
    min-height: 76px;
    margin-bottom: 0;
  }
  .df-footer__logo img {
    width: auto;
    height: 72px;
  }
  .df-footer p {
    margin: 0;
    line-height: 1.45;
  }
  .df-footer h2 { margin-bottom: 8px; }
  .df-footer ul { gap: 2px; }
  .df-footer ul a {
    min-height: 32px;
    line-height: 1.25;
  }
  .df-footer address { gap: 2px; }
}

@media (max-width: 980px) and (max-height: 540px) and (orientation: landscape) {
  .df-area-service-grid {
    grid-template-columns: 1fr;
  }
  .df-area-service-grid article {
    display: grid;
    grid-template-columns: minmax(220px, .42fr) 1fr;
    column-gap: 28px;
    row-gap: 10px;
    padding: 20px 24px;
  }
  .df-area-service-grid article h3 {
    grid-row: 1 / span 4;
    margin: 0;
  }
  .df-area-service-grid article p,
  .df-area-service-grid article ul,
  .df-area-service-grid article ol,
  .df-area-service-grid article a {
    grid-column: 2;
  }
}
