:root {
  --ink: #17352b;
  --ink-soft: #31463f;
  --paper: #f8f5ea;
  --paper-deep: #efe8d8;
  --white: #fffdf7;
  --gold: #d2a62c;
  --gold-soft: #f1e1a8;
  --coral: #d9825b;
  --coral-soft: #f4d9cc;
  --mint: #d9e8e4;
  --line: #dfdacb;
  --muted: #68746e;
  --shadow: 0 18px 55px rgba(23, 53, 43, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-space: 72px;
  --header-brand-width: 248px;
  --header-nav-width: 550px;
  --header-actions-width: 330px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body[data-page="home"],
body[data-page="home"] main,
body[data-page="for-dig"],
body[data-page="for-dig"] main,
body[data-page="tjanster"],
body[data-page="tjanster"] main,
body[data-page="rekrytering"],
body[data-page="rekrytering"] main,
body[data-page="om-oss"],
body[data-page="om-oss"] main,
body[data-page="krom"],
body[data-page="krom"] main {
  background: #efe8d8;
}

body[data-page="kontakt"],
body[data-page="kontakt"] main {
  background: var(--ink);
}


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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: var(--header-brand-width) minmax(var(--header-nav-width), 1fr) var(--header-actions-width);
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: var(--header-space);
  padding: 12px 5%;
  background: rgba(248, 245, 234, 0.95);
  border-bottom: 1px solid rgba(223, 218, 203, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand img {
  width: var(--header-brand-width);
  height: 64px;
}

.site-nav {
  justify-self: center;
  display: grid;
  grid-template-columns: 58px 78px 78px 128px 116px 72px;
  align-items: center;
  gap: 4px;
  width: var(--header-nav-width);
  min-width: 0;
}

.site-nav a {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--mint);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: var(--header-actions-width);
  min-width: 0;
}

.language-switcher {
  position: relative;
  flex: 0 0 96px;
  width: 96px;
  min-height: 48px;
}

.language-native {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language-trigger {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.language-trigger:hover {
  border-color: rgba(23, 53, 43, 0.24);
}

.language-trigger[aria-expanded="true"] {
  border-color: var(--gold);
}

.language-trigger:focus-visible {
  border-color: var(--gold);
  outline: 3px solid rgba(210, 166, 44, 0.16);
  outline-offset: 0;
}

.language-trigger [data-language-current] {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.language-trigger-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-trigger[aria-expanded="true"] .language-trigger-icon {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 96px;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  background: var(--mint);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  flex: 0 0 146px;
  width: 146px;
  padding: 0 10px;
  background: var(--ink);
  color: var(--white);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 53, 43, 0.22);
}

.button.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

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

.header-cta:hover {
  transform: none;
}

.hero-actions .button {
  position: relative;
  min-height: 54px;
  padding: 0 24px;
  gap: 10px;
  font-weight: 900;
  box-shadow:
    0 1px 0 rgba(255, 253, 247, 0.7) inset,
    0 14px 28px rgba(23, 53, 43, 0.16);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.hero-actions .button::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-actions .button.primary {
  border-color: rgba(23, 53, 43, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 253, 247, 0.12) inset,
    0 18px 36px rgba(23, 53, 43, 0.28);
}

.hero-actions .button.ghost {
  border-color: rgba(23, 53, 43, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 253, 247, 0.9) inset,
    0 12px 26px rgba(23, 53, 43, 0.1);
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 253, 247, 0.75) inset,
    0 22px 42px rgba(23, 53, 43, 0.2);
}

.hero-actions .button.primary:hover {
  background: #10281f;
}

.hero-actions .button.ghost:hover {
  border-color: var(--gold);
  background: #fffaf0;
}

.hero-actions .button:hover::after {
  transform: translateX(3px);
}

.hero-actions .button:focus-visible {
  outline: 3px solid rgba(210, 166, 44, 0.28);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

main {
  flex: 1 0 auto;
  overflow: hidden;
}

section {
  scroll-margin-top: 90px;
}

.nav-screen {
  min-height: auto;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(217, 232, 228, 0.55), transparent 32%),
    var(--paper);
}

body[data-page="home"] .section-band {
  background:
    linear-gradient(90deg, rgba(217, 232, 228, 0.48), transparent 32%),
    #efe8d8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 680px);
  align-items: center;
  gap: 56px;
  padding: 44px 5% 46px;
}

.hero.nav-screen {
  min-height: auto;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(210, 166, 44, 0.45);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.75);
  color: #8a6e18;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 70px;
}

h2 {
  margin-bottom: 18px;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.lead-small {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 30px 0 24px;
}

.desktop-only {
  display: flex !important;
}

.mobile-only {
  display: none !important;
}

.page-kicker {
  width: min(var(--max), 90%);
  margin: 0 auto;
  padding: 64px 0 0;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1341 / 1173;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual.transparent-layout {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual.transparent-layout img {
  width: 100%;
  margin-left: 0;
  height: auto;
  max-height: none !important;
  object-fit: contain !important;
}

@media (min-width: 901px) {
  .hero-visual.transparent-layout img {
    width: 160%;
    margin-left: -30%;
  }
}

.stats {
  width: min(var(--max), 90%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -30px auto 0;
  overflow: hidden;
  border: 1px solid #17352B;
  border-radius: var(--radius);
  background: #17352B;
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #17352B;
  color: #FFFDF7;
  text-align: center;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(255, 253, 247, 0.16);
}

.stat strong {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.stat span {
  color: #FFFDF7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.content-section {
  width: min(var(--max), 90%);
  margin: 0 auto;
  padding: 104px 0;
}

body[data-page="for-dig"] .content-section,
body[data-page="tjanster"] .content-section,
body[data-page="rekrytering"] .content-section,
body[data-page="krom"] .content-section {
  padding-top: 56px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: start;
}

.prose p,
.section-heading p,
.wide-text,
.card p,
.service-list p,
.service-panel,
.process-panel,
.feature-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.prose .lead-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 24px;
}

.belief-panel {
  position: relative;
  margin: 36px 0 0;
  padding: 36px 36px 36px 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, #20473a 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(23, 53, 43, 0.12);
  color: var(--white);
}

.quote-mark {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 76px;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  user-select: none;
}

.belief-panel p {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.35;
  color: rgba(255, 253, 247, 0.95);
}

.belief-panel cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

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

.section-heading.compact {
  max-width: 650px;
}

.section-heading.page-intro {
  max-width: 780px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}

.audience-grid .card {
  padding: 32px 26px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

/* Individual card accents */
.card-youth {
  border-top: 4px solid var(--mint) !important;
}
.card-newcomer {
  border-top: 4px solid var(--coral) !important;
}
.card-accessible {
  border-top: 4px solid var(--gold) !important;
}
.card-changer {
  border-top: 4px solid var(--mint) !important;
}
.card-unemployed {
  border-top: 4px solid var(--coral) !important;
}
.card-all {
  border-top: 4px solid var(--gold) !important;
}

.audience-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(23, 53, 43, 0.08);
}

.audience-grid .card-all:hover {
  box-shadow: 0 24px 48px rgba(23, 53, 43, 0.18);
}

/* Icon styling */
.card-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.card-youth .card-icon-container,
.card-changer .card-icon-container {
  background: var(--mint);
  color: var(--ink);
}

.card-newcomer .card-icon-container,
.card-unemployed .card-icon-container {
  background: var(--coral-soft);
  color: var(--coral);
}

.card-accessible .card-icon-container {
  background: var(--gold-soft);
  color: var(--ink);
}

.card-all .card-icon-container {
  background: rgba(255, 253, 247, 0.15);
  color: var(--gold-soft);
}

.audience-grid .card:hover .card-icon-container {
  transform: scale(1.1);
}

.audience-grid .card h3 {
  margin: 0 0 14px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.audience-grid .card-all h3 {
  color: var(--white);
}

.audience-grid .card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.audience-grid .card-all p {
  color: rgba(255, 253, 247, 0.85);
}

.card,
.service-list article,
.process-item,
.feature-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card {
  min-height: 238px;
  height: 100%;
  padding: 26px;
}

.card span,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.card span {
  margin-bottom: 28px;
}

.accent-card {
  background: var(--ink);
  color: var(--white);
}

.accent-card p,
.accent-card span {
  color: var(--white);
}

.accent-card span {
  background: var(--coral);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service-list article {
  min-height: 188px;
  padding: 28px;
  border-top: 0;
  border-radius: 0;
}

.service-list article:nth-child(odd) {
  border-right: 0;
}

.services-layout {
  --service-card-height: 104px;
  --service-gap: 14px;
  --services-stack-height: 576px;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.services-media {
  position: relative;
  height: var(--services-stack-height);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 30px 72px rgba(23, 53, 43, 0.18);
}

.services-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 53, 43, 0) 56%, rgba(23, 53, 43, 0.26)),
    linear-gradient(90deg, rgba(23, 53, 43, 0.12), rgba(23, 53, 43, 0));
}

.services-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-accordion {
  display: grid;
  gap: var(--service-gap);
  align-content: start;
}

.service-item {
  overflow: hidden;
  border: 1px solid rgba(223, 218, 203, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 53, 43, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-item:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 166, 44, 0.45);
  box-shadow: 0 18px 42px rgba(23, 53, 43, 0.1);
}

.service-item[open] {
  border-color: rgba(210, 166, 44, 0.68);
  box-shadow: 0 24px 56px rgba(23, 53, 43, 0.13);
}

.service-item summary {
  min-height: calc(var(--service-card-height) - 2px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 46px;
  gap: 18px;
  align-items: center;
  padding: 0 24px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(210, 166, 44, 0.14);
  color: #9a7412;
  font-size: 13px;
  font-weight: 900;
}

.service-title {
  min-width: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.16;
}

.service-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--mint);
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item[open] .service-toggle {
  background: var(--gold-soft);
}

.service-item[open] .service-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.service-panel {
  max-width: 640px;
  margin: -6px 24px 28px 80px;
}

.service-link {
  display: inline-flex;
  margin: -16px 24px 30px 80px;
  color: #1e64d8;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-link:hover {
  color: #1247a8;
}

.krom-section {
  width: 100%;
  padding-right: 5%;
  padding-left: 5%;
  background: var(--paper-deep);
}

.krom-section .section-heading,
.krom-section .process {
  width: min(var(--max), 90%);
  margin-right: auto;
  margin-left: auto;
}

.krom-section .section-heading {
  width: min(var(--max), 90%);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.krom-section .section-heading h1,
.krom-section .section-heading p {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "primary secondary";
  gap: 16px;
  align-items: start;
}

.process-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.process-column-primary {
  grid-area: primary;
}

.process-column-secondary {
  grid-area: secondary;
}

.process-item {
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 53, 43, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.process-item:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 166, 44, 0.45);
  box-shadow: 0 18px 42px rgba(23, 53, 43, 0.1);
}

.process-item[open] {
  border-color: rgba(210, 166, 44, 0.68);
  box-shadow: 0 24px 56px rgba(23, 53, 43, 0.13);
}

.process-item summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.process-item summary::-webkit-details-marker {
  display: none;
}

.process-title {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--mint);
}

.process-toggle::before,
.process-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.process-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.process-item[open] .process-toggle {
  background: var(--gold-soft);
}

.process-item[open] .process-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.process-panel {
  max-width: 620px;
  margin: -4px 22px 26px 74px;
}

.recruitment {
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 48px;
}

.feature-card-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
  min-height: 130px;
}

.feature-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(23, 53, 43, 0.08);
  border-color: var(--mint);
}

.recruitment-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  width: 100%;
}

.feature-card-item h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.feature-card-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.languages {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.language-cloud span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.wide-text {
  max-width: 820px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 64px;
  padding: 104px 5%;
  background: var(--ink);
  color: var(--white);
}

.contact-section .eyebrow {
  background: rgba(255, 253, 247, 0.08);
  color: var(--gold-soft);
}

.contact-copy {
  max-width: 560px;
}

.contact-copy p {
  color: rgba(255, 253, 247, 0.78);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a,
.contact-details span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 253, 247, 0.2);
  color: var(--white);
  font-weight: 800;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  margin-top: 36px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.map-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.map-wrapper {
  height: 210px;
  width: 100%;
}

.map-wrapper iframe {
  display: block;
}

.map-info {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
}

.map-address-title {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}

.directions-link {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.directions-link svg {
  color: var(--ink);
  transition: color 0.2s ease, transform 0.2s ease;
}

.directions-link:hover {
  color: var(--coral);
}

.directions-link:hover svg {
  color: var(--coral);
  transform: translate(2px, -2px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 560px);
  justify-self: end;
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form .form-wide,
.contact-form .button,
.contact-form .form-note,
.contact-form .form-honeypot {
  grid-column: 1 / -1;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.form-choice-group {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 245, 234, 0.42);
}

.form-choice-group[hidden],
.employer-fields[hidden] {
  display: none !important;
}

.employer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 22px;
}

.employer-fields .form-wide {
  grid-column: 1 / -1;
}

.employer-fields .form-choice-group {
  margin-top: 4px;
}

.form-choice-group legend {
  margin: 0 0 14px;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.form-choice-group legend span {
  color: var(--coral);
}

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

.contact-form .radio-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 53, 43, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.radio-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--ink);
}

.radio-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(210, 166, 44, 0.14);
}

.contact-form input:not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
}

.contact-form input:not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 166, 44, 0.18);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-note[data-status="success"] {
  color: #17352b;
}

.form-note[data-status="error"] {
  color: #8a3a2b;
}

.site-footer {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 5%;
  background: #17352B;
  border-top: 4px solid var(--gold);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-logo {
  flex: 0 0 auto;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
  width: 154px;
}

.footer-brand strong {
  min-width: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
}

.footer-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.footer-copy p,
.site-footer small {
  margin: 0;
}

.site-footer small {
  justify-self: end;
  color: rgba(255, 253, 247, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.nav-mobile-only {
  display: none !important;
}

@keyframes slideDownMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 214px minmax(330px, 1fr) 44px;
    justify-content: space-between;
    gap: 12px;
  }

  .brand img {
    width: 214px;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    inset: calc(100% + 8px) 16px auto auto;
    width: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(23, 53, 43, 0.12);
    border: 1px solid rgba(23, 53, 43, 0.08);
    z-index: 100;
    animation: slideDownMenu 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .site-nav.open a {
    min-height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    padding: 12px 0;
    width: 100%;
    text-align: left;
    transition: color 0.18s ease;
  }

  .site-nav.open a:not(.nav-kontakt-btn) {
    border-bottom: 1px solid rgba(23, 53, 43, 0.08);
  }

  .site-nav.open a:not(.nav-kontakt-btn):hover,
  .site-nav.open a:not(.nav-kontakt-btn):active {
    color: var(--gold);
  }

  .site-nav.open .nav-mobile-only.nav-kontakt-btn {
    display: inline-flex !important;
    margin-top: 12px;
    min-height: 44px;
    background: var(--ink);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(23, 53, 43, 0.12);
    transform: none !important;
    width: 100%;
    text-align: center;
  }

  .site-nav.open .nav-mobile-only.nav-kontakt-btn:hover,
  .site-nav.open .nav-mobile-only.nav-kontakt-btn:active {
    background: var(--ink-soft);
    color: var(--white);
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    grid-template-columns: 1fr 430px;
    gap: 34px;
  }

}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 210px minmax(0, 1fr) 44px;
    justify-content: space-between;
  }

  .brand img {
    width: 210px;
    height: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    width: auto;
  }



  .hero,
  .split,
  .services-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    justify-self: stretch;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-visual {
    max-width: 430px;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    overflow-x: auto;
  }

  .audience-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-section {
    padding: 82px 0;
  }

  .process {
    grid-template-columns: 1fr;
    grid-template-areas:
      "primary"
      "secondary";
  }
}

@media (max-width: 640px) {
  :root {
    --header-space: 64px;
  }

  .site-header {
    grid-template-columns: 140px minmax(96px, 1fr) 44px;
    gap: 8px;
    min-height: 64px;
    padding: 8px 12px;
  }

  .brand img {
    width: 140px;
  }

  .language-switcher {
    flex-basis: 96px;
    width: 96px;
    min-height: 44px;
  }

  .language-trigger {
    min-height: 44px;
    padding: 0 10px;
  }



  .hero {
    padding: 30px 18px 28px;
  }

  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 19px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .lead,
  .prose p,
  .section-heading p,
  .wide-text,
  .card p,
  .service-list p,
  .service-panel,
  .process-panel,
  .feature-grid p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .stats {
    width: calc(100% - 36px);
    margin-top: 0;
    border-radius: var(--radius);
  }

  .stat {
    min-height: 112px;
  }

  .content-section {
    width: calc(100% - 36px);
    padding: 68px 0;
  }

  body[data-page="for-dig"] .content-section,
  body[data-page="tjanster"] .content-section,
  body[data-page="krom"] .content-section {
    padding-top: 42px;
  }

  .belief-panel {
    padding: 30px 22px 26px 48px;
  }

  .belief-panel p {
    font-size: 22px;
  }

  .quote-mark {
    top: 16px;
    left: 16px;
    font-size: 54px;
  }

  .audience-grid,
  .service-list,
  .process,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-areas:
      "primary"
      "secondary";
  }

  .services-layout {
    --service-card-height: 86px;
    --services-stack-height: 486px;
  }

  .service-item summary {
    min-height: 84px;
    grid-template-columns: auto minmax(0, 1fr) 40px;
    gap: 12px;
    padding: 0 14px;
  }

  .service-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-toggle {
    width: 40px;
    height: 40px;
  }

  .service-panel {
    margin: -2px 14px 22px 58px;
  }

  .service-link {
    margin: -12px 14px 24px 58px;
  }

  .process-column {
    gap: 12px;
  }

  .process-item summary {
    min-height: 78px;
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 8px;
    padding: 0 12px;
  }

  .process-number {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .process-title {
    font-size: 14px;
  }

  .process-toggle {
    width: 34px;
    height: 34px;
  }

  .process-toggle::before,
  .process-toggle::after {
    width: 15px;
  }

  .process-panel {
    margin: -2px 12px 22px 50px;
  }

  .service-list article,
  .service-list article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .card,
  .service-list article,
  .process-item {
    min-height: auto;
  }

  .audience-grid .card {
    min-height: auto;
    padding: 24px 20px;
  }

  .feature-card-item {
    min-height: auto;
    padding: 24px;
  }

  .language-cloud span {
    min-height: 44px;
    font-size: 18px;
  }

  .contact-section {
    padding: 68px 18px;
    gap: 34px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .employer-fields {
    grid-template-columns: 1fr;
  }

  .radio-options {
    grid-template-columns: 1fr;
  }

  .form-choice-group {
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 28px 18px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo img {
    width: 144px;
  }

  .footer-brand strong {
    font-size: 19px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .site-footer small {
    justify-self: start;
    white-space: normal;
  }

}

/* ==========================================================================
   REDESIGNED HOMEPAGE COMPONENTS
   ========================================================================== */

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(210, 166, 44, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.85);
  color: #8a6e18;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero image showcase with floating badge */
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(23, 53, 43, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  background: var(--white);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(23, 53, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-floating-badge .badge-icon {
  font-size: 24px;
  flex: 0 0 auto;
}

.hero-floating-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
}

.hero-floating-badge small {
  display: block;
  font-size: 12px;
  color: rgba(255, 253, 247, 0.82);
}

/* Centered section headings */
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

/* SECTION 1: Services Preview Grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(23, 53, 43, 0.08);
  box-shadow: 0 12px 36px rgba(23, 53, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(23, 53, 43, 0.12);
  border-color: rgba(210, 166, 44, 0.4);
}

.home-service-card.highlight-card {
  border-top: 4px solid var(--gold);
}

.card-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(23, 53, 43, 0.06);
  color: var(--ink);
  margin-bottom: 20px;
}

.card-tag.tag-alt {
  background: rgba(210, 166, 44, 0.15);
  color: #725911;
}

.home-service-card h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.card-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.card-checklist li span {
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}

.card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.card-btn .btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.card-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.why-us-section {
  padding-top: 48px;
}

/* SECTION 2: Why Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 30px 24px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(23, 53, 43, 0.06);
  box-shadow: 0 10px 28px rgba(23, 53, 43, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(23, 53, 43, 0.1);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* SECTION 4: 3-Step Process Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.step-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(23, 53, 43, 0.08);
  box-shadow: 0 10px 30px rgba(23, 53, 43, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210, 166, 44, 0.15);
  color: #725911;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* SECTION 5: CTA Banner */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ink) 0%, #1f4739 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(23, 53, 43, 0.2);
}

.cta-content h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 253, 247, 0.85);
  margin: 0;
  max-width: 540px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.button.gold-accent {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 800;
}

.button.gold-accent:hover {
  background: #c29724;
  border-color: #c29724;
}

.button.white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.button.white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .home-services-grid,
  .why-us-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .home-services-grid,
  .why-us-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    padding: 28px 22px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 14px;
  }

  .cta-banner {
    padding: 32px 20px;
  }
}
