:root {
  --page-width: 1400px;
  --ink: #111827;
  --muted: #6b7280;
  --nav: #1f2937;
  --line: #e5e7eb;
  --section-gray: #f7f7f8;
  --gold: #c7a46a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.top-nav {
  height: 122px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.top-nav-inner {
  width: calc(100% - 160px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo img {
  display: block;
  width: 360px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 42px;
}

.top-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #6b7280;
  padding: 6px 2px 10px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, font-weight 180ms ease;
}

.top-nav a:hover {
  color: #1f2937;
  font-weight: 700;
  transform: translateY(-1px);
}


.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: #1f2937;
  border-radius: 999px;
}

.nav-menu {
  display: block;
}main {
  padding: 40px 0 70px;
}

.hero {
  position: relative;
  width: calc(100% - 160px);
  margin: 0 auto;
  height: 640px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero.hero-offer {
  height: 640px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
}

.hero-content {
  position: absolute;
  left: 70px;
  bottom: 185px;
  color: #fff;
  z-index: 2;
}

.hero-offer .hero-content {
  bottom: 185px;
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 600;
  margin: 0 0 20px;
}

.hero-offer .hero-content h1 {
  font-size: 64px;
}

.hero-content p {
  margin: 0;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.4;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 14px rgba(0, 0, 0, 0.2);
}

.btn-gold {
  background: var(--gold);
  color: #111827;
}

.btn-white {
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
}

.btn-small {
  min-width: 160px;
  height: 42px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: none;
  margin-top: 18px;
}

.section {
  padding: 80px 80px;
}

.section-gray {
  background: var(--section-gray);
}

.section-intro {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 72px 96px;
  border-radius: 18px;
}
.section h2,
.offer-intro h2,
.offer-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 26px;
}

.section-intro p,
.offer-intro p,
.offer-cta p {
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.section-lead {
  margin: 0 auto 34px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.card-image {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  object-fit: contain;
}


.card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 20px 44px;
  text-align: center;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.card-gold-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--gold);
  margin-bottom: 16px;
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin: 0 0 18px;
}

.card p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.partners {
  padding-top: 24px;
  padding-bottom: 0px;
}

.partners-marquee {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  width: 100%;
  margin-top: 24px;
  padding: 12px 0 20px;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partners-scroll 44s linear infinite;
}

.partner-logo-item {
  --partner-scale: 1;
  --partner-opacity: 1;
  flex: 0 0 clamp(220px, 22vw, 300px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

@media (min-width: 761px) {
  .partners-marquee.is-center-focus .partner-logo-item img {
    opacity: var(--partner-opacity);
    transform: scale(var(--partner-scale));
    transform-origin: center center;
    will-change: transform, opacity;
    transition: transform 180ms ease, opacity 180ms ease;
  }
}


.partner-logo-item img {
  display: block;
  max-width: 75%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
    -webkit-transform: translateX(-35%);
    -moz-transform: translateX(-35%);
    -ms-transform: translateX(-35%);
    -o-transform: translateX(-35%);
}
}
.about {
  margin: 5px auto 0;
  width: calc(100% - 160px);
  min-height: 520px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr 320px;
  padding: 78px 70px;
  gap: 36px;
}

.about.about-no-media {
  grid-template-columns: 1fr;
  gap: 0;
}

$116px;
  margin-bottom: 42px;
}

.brand-fk {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1f2937;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.brand-tag {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.about h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 22px;
}

.about p {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.about-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle.outer {
  width: 380px;
  height: 380px;
  background: #eaf0f6;
}

.circle.inner {
  width: 300px;
  height: 300px;
  background: #dbe7f3;
}

.about-profile {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.about-right-full {
  justify-self: end;
  align-self: stretch;
  width: 248px;
  min-height: 760px;
  margin-right: -22px;
}

.about-right-full .circle.outer {
  width: 248px;
  height: 700px;
  border-radius: 42px;
}

.about-right-full .circle.inner {
  width: 222px;
  height: 650px;
  border-radius: 36px;
}

.about-right-full .about-profile {
  width: 198px;
  height: 612px;
  border-radius: 30px;
}

.about-profile-full {
  object-position: center 8%;
}

.offer-intro {
  margin: 90px auto 0;
  width: calc(100% - 160px);
}

.offer-stack {
  width: calc(100% - 360px);
  margin: 50px auto 0;
  display: grid;
  gap: 56px;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 42px 60px 36px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.16);
}

.offer-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin: 0 0 16px;
}

.offer-card h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.offer-card p {
  margin: 0;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.55;
}

.offer-cta {
  width: calc(100% - 160px);
  margin: 80px auto 0;
  border-radius: 18px;
  background: #f7f7f8;
  padding: 80px 40px 66px;
  text-align: center;
}

.offer-cta .btn {
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .top-nav-inner,
  .hero,
  .about,
  .offer-intro,
  .offer-cta {
    width: calc(100% - 40px);
  }

  .section-intro {
    width: calc(100% - 40px);
    padding: 56px 44px;
  }

  .top-nav ul {

  .section-intro {
    width: calc(100% - 40px);
    padding: 56px 44px;
  }
    gap: 22px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-offer .hero-content h1 {
  font-size: 64px;
}

  .section-lead {
  margin: 0 auto 34px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.cards {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
.about {
    grid-template-columns: 1fr;
  }

  .about-right {
    min-height: 320px;
  }

  .circle.outer {
    width: 280px;
    height: 280px;
  }

  .circle.inner,
  .about-profile {
    width: 220px;
    height: 220px;
  }

  .about-right-full {
    justify-self: center;
    width: 206px;
    min-height: 500px;
    margin-right: 0;
  }

  .about-right-full .circle.outer {
    width: 206px;
    height: 456px;
    border-radius: 30px;
  }

  .about-right-full .circle.inner {
    width: 182px;
    height: 418px;
    border-radius: 26px;
  }

  .about-right-full .about-profile {
    width: 160px;
    height: 390px;
    border-radius: 22px;
  }

  .about-profile-full {
    object-position: center 10%;
  }

  .offer-stack {
    width: calc(100% - 120px);
  }

  .offer-card {
    padding: 32px 28px;
  }

  .offer-card h3 {
    font-size: 28px;
  }

  .offer-card h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.offer-card p {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .section-intro {
    width: calc(100% - 24px);
    padding: 36px 18px;
  }

  .section-intro {
    width: calc(100% - 24px);
    padding: 36px 18px;
  }

  .top-nav {
    position: relative;
    padding: 6px 8px;
  }

  .top-nav-inner {
    width: calc(100% - 16px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .site-logo img {
    width: 156px;
    max-width: 56vw;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 12px 10px;
    z-index: 30;
  }

  .top-nav.nav-open .nav-menu {
    display: block;
  }

  .nav-menu ul {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .nav-menu a {
    display: inline-block;
    font-size: 16px;
    padding: 6px 2px;
  }

  .top-nav a {
    font-size: 16px;
  }

  .top-nav {
    height: auto;
    padding: 4px 8px 2px;
  }

  .top-nav-inner {
    width: calc(100% - 20px);
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .site-logo img {
    width: 168px;
    max-width: 54vw;
    height: auto;
    object-fit: contain;
  transition: transform 180ms ease;
  }

  .top-nav ul {
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .top-nav a {
    font-size: 13px;
    padding: 2px 2px 6px;
  }

  main {
    padding-top: 20px;
  }

  .hero {
    height: 440px;
    width: calc(100% - 24px);
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }

  .hero-content h1,
  .hero-offer .hero-content h1 {
    font-size: clamp(18px, 8vw, 30px);
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons {
    margin-top: 14px;
    flex-direction: row;
    gap: 8px;
  }

  .btn {
    min-width: 0;
    width: auto;
    flex: 1 1 0;
    height: 46px;
    font-size: 15px;
  }

  .section {
    padding: 52px 14px;
  }

  .section h2,
  .offer-intro h2,
  .offer-cta h2 {
    font-size: 30px;
  }

  .section-lead {
  margin: 0 auto 34px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partners-track {
    animation-duration: 54s;
    gap: 28px;
  }

  .partner-logo-item {
    flex: 0 0 72vw;
    max-width: 380px;
  }

  .about {
    width: calc(100% - 24px);
    padding: 30px 16px;
  }

  .brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-row-logo-only {
    margin: 4px 0 14px;
  }

  .brand-fk-logo-large {
    width: 156px;
    max-width: 56vw;
    height: auto;
    object-fit: contain;
  }

  .about h2 {
    font-size: 30px;
  }


  .offer-intro,
  .offer-cta {
    width: calc(100% - 24px);
  }

  .offer-stack {
    width: calc(100% - 24px);
    gap: 28px;
    margin-top: 28px;
  }

  .offer-card {
    padding: 22px 16px;
  }

  .offer-card h3 {
    font-size: 24px;
  }

  .offer-card h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.offer-card p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .partners-track {
    animation: none;
  }
}





/* Referencer Page */
.ref-testimonials {
  padding-top: 88px;
  padding-bottom: 40px;
}

.ref-testimonials h2,
.ref-logos h2 {
  text-align: left;
  margin-bottom: 14px;
}

.ref-lead {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.ref-rail-wrap {
    margin-top: 24px;
    padding: 42px 16px 24px;
  }

.ref-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(720px, 760px);
  gap: 28px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.ref-rail::-webkit-scrollbar {
  height: 10px;
}

.ref-rail::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.ref-testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 34px;
  min-height: 320px;
  scroll-snap-align: start;
}

.ref-testimonial-media {
  border-radius: 28px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18)), rgba(31, 76, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ref-testimonial-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

.ref-testimonial-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
}

.ref-testimonial-content h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold);
}

.ref-quote {
  margin: 24px 0 26px;
  color: #4b5563;
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
}

.ref-meta {
  border-top: 2px solid #e5e7eb;
  padding-top: 16px;
}

.ref-meta-name {
  margin: 0;
  font-weight: 700;
  color: #111827;
}

.ref-meta-role {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.ref-scroll-btn {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.18);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.ref-scroll-prev {
  left: 14px;
}

.ref-scroll-next {
  right: 14px;
}

.ref-dots {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ref-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.25);
  cursor: pointer;
}

.ref-dot.is-active {
  background: rgba(17, 24, 39, 0.95);
}

.ref-logos {
  padding-top: 62px;
}

.ref-logos-box {
  margin-top: 34px;
  padding: 30px;
  border-radius: 22px;
  background: #f7f7f8;
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.12);
}

.ref-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.ref-logo-tile {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.ref-logo-tile:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fcfcf8;
  border-color: #d7dde5;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}


.ref-logo-tile img {
  width: 84%;
  height: 84%;
  max-width: 84%;
  max-height: 84%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.ref-logo-tile:hover img {
  transform: scale(1.03);
}


.ref-cta {
  width: calc(100% - 160px);
  margin: 68px auto 0;
  border-radius: 24px;
  background: #f7f7f8;
  padding: 76px 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ref-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
}

.ref-cta p {
  margin: 26px 0 0;
  max-width: 620px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .ref-testimonial-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ref-testimonial-media {
    min-height: 170px;
  }

  .ref-testimonial-content h3 {
    font-size: 30px;
  }

  .ref-quote {
    font-size: 18px;
  }

  .ref-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .ref-cta {
  width: calc(100% - 160px);
  margin: 68px auto 0;
  border-radius: 24px;
  background: #f7f7f8;
  padding: 76px 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ref-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
}

.ref-cta p {
  margin: 26px 0 0;
  max-width: 620px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

  .ref-cta .btn {
    width: auto;
      min-width: 180px;
      padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-rail {
    scroll-behavior: auto;
  }
}

.ref-scroll-btn {
  display: none !important;
}

/* Global Hero Consistency */
.hero,
.hero.hero-offer {
  height: 640px;
}

.hero-offer .hero-content {
  bottom: 185px;
}

.hero-offer .hero-content h1 {
  font-size: 64px;
}

/* Remove side arrows in references */
.ref-scroll-btn {
  display: none !important;
}

@media (max-width: 760px) {
  .section-intro {
    width: calc(100% - 24px);
    padding: 36px 18px;
  }

  .top-nav {
    position: relative;
    padding: 6px 8px;
  }

  .top-nav-inner {
    width: calc(100% - 16px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .site-logo img {
    width: 156px;
    max-width: 56vw;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 12px 10px;
    z-index: 30;
  }

  .top-nav.nav-open .nav-menu {
    display: block;
  }

  .nav-menu ul {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .nav-menu a {
    display: inline-block;
    font-size: 16px;
    padding: 6px 2px;
  }

  .top-nav a {
    font-size: 16px;
  }

  .hero,
  .hero.hero-offer {
    height: 440px;
  }

  .hero-offer .hero-content {
    bottom: 30px;
  }

  .hero-offer .hero-content h1 {
    font-size: 34px;
  }

  .hero-offer .hero-content p {
    font-size: 17px;
  }
}
/* References Testimonials Flow (No UI controls) */
.ref-testimonials.section {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding-top: 62px;
  padding-bottom: 22px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1100px) {
  .ref-testimonials.section {
    width: calc(100% - 40px);
  }
}

.ref-rail-wrap {
  margin-top: 22px;
  padding: 12px 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.ref-rail {
  display: flex;
  gap: 22px;
  overflow: hidden !important;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.ref-rail::-webkit-scrollbar {
  display: none;
}

.ref-testimonial-card {
  flex: 0 0 min(980px, calc(100vw - 210px));
  min-height: 260px;
  padding: 24px 26px;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

.ref-testimonial-media {
  border-radius: 24px;
  padding: 16px;
}

.ref-quote {
  margin: 16px 0 18px;
}

.ref-dots {
  display: none !important;
}

@media (max-width: 760px) {
  .section-intro {
    width: calc(100% - 24px);
    padding: 36px 18px;
  }

  .top-nav {
    position: relative;
    padding: 6px 8px;
  }

  .top-nav-inner {
    width: calc(100% - 16px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .site-logo img {
    width: 156px;
    max-width: 56vw;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 12px 10px;
    z-index: 30;
  }

  .top-nav.nav-open .nav-menu {
    display: block;
  }

  .nav-menu ul {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .nav-menu a {
    display: inline-block;
    font-size: 16px;
    padding: 6px 2px;
  }

  .top-nav a {
    font-size: 16px;
  }

  .ref-testimonials.section {
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
    padding-top: 44px;
  }

  .ref-testimonial-card {
    flex-basis: calc(100vw - 56px);
    min-height: 220px;
    grid-template-columns: 148px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .ref-testimonial-media {
    border-radius: 18px;
    padding: 10px;
  }
}
/* Mobile Hamburger Nav */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: #1f2937;
  border-radius: 99px;
}

.nav-menu {
  display: block;
}

@media (max-width: 760px) {
  .section-intro {
    width: calc(100% - 24px);
    padding: 36px 18px;
  }

  .top-nav {
    position: relative;
    height: auto;
    padding: 6px 8px 4px;
  }

  .top-nav-inner {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .site-logo {
    line-height: 0;
  }

  .site-logo img {
    display: block;
    width: 192px;
    max-width: 66vw;
    height: auto;
    object-fit: contain;
  transition: transform 180ms ease;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 12px 10px;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
  }

  .top-nav.nav-open .nav-menu {
    display: block;
  }

  .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .nav-menu a {
    display: inline-block;
    font-size: 16px;
    padding: 6px 2px;
  }
}
@media (max-width: 760px) {
  .offer-cta .btn {
    width: auto;
    min-width: 180px;
    padding-inline: 16px;
  }
}

/* Om mig: use image logo instead of FK text */
.brand-fk-logo {
  width: 84px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand-row-logo-only {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin: 8px 0 18px;
}

.brand-fk-logo-large {
  display: block;
  width: 320px;
  max-width: min(100%, 38vw);
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

/* Jeg tilbyder CTA: give text breathing room */
.offer-cta .btn {
  padding-inline: 18px;
  min-width: 210px;
  width: auto;
}

@media (max-width: 760px) {
  .offer-cta .btn {
    width: auto;
    min-width: 180px;
    padding-inline: 16px;
  }
}


.about-left {
  display: grid;
  gap: 12px;
}

.about-subtitle {
  margin: 14px 0 2px;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.about-bullet {
  position: relative;
  padding-left: 18px;
}

.about-bullet::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #4b5563;
}



.offer-card-rich {
  display: grid;
  gap: 14px;
}

.offer-card-rich h4 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
}

.offer-card-rich h5 {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.offer-card-rich p {
  margin: 0;
}

.offer-card-rich .offer-example,
.offer-card-rich .offer-example-text {
  margin-left: 35px;
}

.offer-note {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 760px) {
  .offer-card-rich {
    gap: 12px;
  }

  .offer-card-rich h5 {
    font-size: 19px;
  }
}
`n


.contact-simple {
  padding-top: 72px;
}

.contact-simple-box {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 22px;
  background: #f7f7f8;
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.12);
}

.contact-simple-box h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.contact-simple-list {
  display: grid;
  gap: 18px;
}

.contact-simple-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.4;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-simple-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.contact-simple-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  transition: transform 180ms ease;
}

@media (max-width: 1100px) {
  .contact-simple-box {
    width: calc(100% - 40px);
    padding: 32px 28px;
  }
}

@media (max-width: 760px) {
  .contact-simple {
    padding-top: 44px;
  }

  .contact-simple-box {
    width: calc(100% - 24px);
    padding: 24px 16px;
  }

  .contact-simple-box h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .contact-simple-item {
    gap: 14px;
    padding: 14px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .contact-simple-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}

@media (max-width: 760px) {
  .hero-buttons .btn-gold {
    width: auto;
    min-width: 180px;
    flex: 0 0 auto;
    padding-inline: 16px;
  }
}



.references-page .offer-cta {
  margin-top: 40px;
}

@media (max-width: 760px) {
  .references-page .offer-cta {
    margin-top: 28px;
  }
}


.site-footer {
  padding: 36px 0 44px;
}

.site-footer-inner {
  width: calc(100% - 160px);
  margin: 0 auto;
  border-top: 1px solid #e5e7eb;
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, auto);
  align-items: start;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  line-height: 0;
}

.footer-logo img {
  width: 88px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-text {
  display: grid;
  gap: 4px;
}

.footer-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.footer-role {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1f2937;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: transform 180ms ease, color 180ms ease;
}

.footer-contact-item:hover {
  transform: translateY(-1px);
  color: #111827;
}

.footer-contact-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-nav a {
  color: #1f2937;
  text-decoration: none;
  font-size: 16px;
  transition: transform 180ms ease, color 180ms ease;
}

.footer-nav a:hover {
  transform: translateY(-1px);
  color: #111827;
}

@media (max-width: 1100px) {
  .site-footer-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }

  .footer-nav {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 26px 0 34px;
  }

  .site-footer-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 22px;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand-text {
    justify-items: center;
  }

  .footer-contact {
    justify-items: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-nav {
    justify-items: center;
  }
}
/* Footer brand logo-only override */
.footer-brand {
  gap: 0;
}

.footer-logo {
  display: block;
  width: clamp(170px, 18vw, 250px);
}

.footer-logo img {
  width: 100%;
}

@media (max-width: 760px) {
  .footer-logo {
    width: min(220px, 100%);
  }
}
#aboutTitlePage::after,
#driveTitle::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
}




