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

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

.serif-italic {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: #13c265;
}

.b-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 900px) {
  .b-container {
    padding-inline: 50px;
  }
}

.b-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #13c265;
  margin-bottom: 10px;
  display: block;
}

.b-h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111109;
  margin-bottom: 14px;
}

.b-section-head {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.b-section-lead {
  font-size: 16px;
  color: #6B6A63;
  line-height: 1.65;
}

[data-reveal],
[data-reveal-delay] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed,
[data-reveal-delay].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal-delay] {
  transition-delay: 0.14s;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding-inline: 28px;
  border-radius: 100px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.15s ease;
}
.btn i {
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover i {
  transform: translateX(3px);
}
.btn--cta {
  background: #13c265;
  color: #fff;
  box-shadow: 0 2px 14px rgba(19, 194, 101, 0.28);
}
.btn--cta:hover {
  background: #0fa052;
  box-shadow: 0 6px 24px rgba(19, 194, 101, 0.36);
}
.btn--outline {
  background: transparent;
  color: #111109;
  border: 1.5px solid #D2D1C9;
}
.btn--outline:hover {
  border-color: #13c265;
  color: #13c265;
}
.btn--lg {
  height: 56px;
  font-size: 16px;
  padding-inline: 36px;
}
.btn--full {
  width: 100%;
}

.b-hero {
  position: relative;
  overflow: hidden;
  background: #F8F8F6;
  padding-top: 35px;
}
@media (min-width: 1040px) {
  .b-hero {
    padding-top: 70px;
  }
}
.b-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 85% 5%, rgba(19, 194, 101, 0.07) 0%, transparent 65%), radial-gradient(ellipse 35% 45% at 5% 90%, rgba(19, 194, 101, 0.05) 0%, transparent 60%);
}
.b-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 48px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .b-hero__container {
    padding-inline: 50px;
  }
}
@media (min-width: 1060px) {
  .b-hero__container {
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 94px;
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.b-hero__copy {
  animation: bFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  min-width: 0;
}
.b-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #E6E5DF;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: #6B6A63;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.b-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #13c265;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.18);
  flex-shrink: 0;
  animation: bDotPulse 2.4s ease-in-out infinite;
}
.b-hero__h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111109;
  margin-bottom: 18px;
}
.b-hero__lead {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #6B6A63;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.b-hero__lead strong {
  color: #111109;
  font-weight: 600;
}
.b-hero__cta-card {
  background: #ffffff;
  border: 1px solid #E6E5DF;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.055);
}
.b-hero__cta-label {
  font-size: 15px;
  font-weight: 600;
  color: #111109;
  margin-bottom: 6px;
}
.b-hero__cta-sub {
  font-size: 14px;
  color: #6B6A63;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 20px;
}
.b-hero__cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.b-hero__cta-actions .btn {
  width: 100%;
}
@media (min-width: 1040px) {
  .b-hero__cta-actions {
    justify-content: unset;
  }
  .b-hero__cta-actions .btn {
    width: unset;
  }
}
.b-hero__cta-note {
  font-size: 13px;
  color: #6B6A63;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  margin: 0;
}
.b-hero__cta-note i {
  color: #13c265;
  font-size: 12px;
  line-height: 1;
}
.b-hero__stats {
  display: flex;
  align-items: unset;
  gap: 26px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 1040px) {
  .b-hero__stats {
    transform: translateX(8px);
    margin-top: 15px;
    flex-direction: unset;
    align-items: center;
  }
}
.b-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b-hero__stat strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #111109;
  letter-spacing: -0.02em;
  line-height: 1;
}
.b-hero__stat span {
  font-size: 14px;
  color: #6B6A63;
}
.b-hero__stat-div {
  width: 1px;
  height: 28px;
  background: #E6E5DF;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 1040px) {
  .b-hero__stat-div {
    display: unset;
  }
}
.b-hero__visual {
  animation: bFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  min-width: 0;
}
@media (max-width: 1059px) {
  .b-hero__visual {
    order: -1;
  }
}
.b-hero__img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.b-hero__img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 500px) {
  .b-hero__img {
    height: 340px;
  }
}
@media (min-width: 1060px) {
  .b-hero__img {
    height: 520px;
  }
}
.b-hero__float {
  position: absolute;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}
.b-hero__float--top {
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  animation: bFloatBob 4s ease-in-out infinite;
}
.b-hero__float--top .b-hero__float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf9f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.b-hero__float--top .b-hero__float-icon i {
  color: #13c265;
  font-size: 14px;
}
.b-hero__float--top strong {
  display: block;
  font-size: 12.5px;
  color: #111109;
  font-weight: 600;
}
.b-hero__float--top span {
  display: block;
  font-size: 11px;
  color: #6B6A63;
}
.b-hero__float--bottom {
  bottom: 16px;
  right: 16px;
  padding: 10px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  animation: bFloatBob 4s ease-in-out 1.5s infinite;
}
.b-hero__float--bottom .b-hero__float-big {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  color: #13c265;
  line-height: 1;
}
.b-hero__float--bottom span {
  font-size: 11px;
  color: #6B6A63;
}

.b-trustbar {
  background: #F8F8F6;
  padding-block: 18px;
}
.b-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}
.b-trustbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #6B6A63;
  white-space: nowrap;
}
.b-trustbar__item i {
  color: #13c265;
  font-size: 13px;
}
.b-trustbar__sep {
  width: 1px;
  height: 16px;
  background: #E6E5DF;
  display: none;
}
@media (min-width: 640px) {
  .b-trustbar__sep {
    display: block;
  }
}

.b-why {
  padding-block: 96px;
  background: #F8F8F6;
}
.b-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 760px) {
  .b-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.b-why__card {
  background: #ffffff;
  border: 1px solid #E6E5DF;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}
.b-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}
.b-why__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #edf9f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.b-why__card-icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.b-why__card-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111109;
  margin-bottom: 10px;
}
.b-why__card-body p {
  font-size: 14px;
  color: #6B6A63;
  line-height: 1.65;
}
.b-why__cta {
  display: flex;
  justify-content: center;
}

.b-quality {
  padding-block: 96px;
  border-top: 1px solid #E6E5DF;
}
.b-quality__layout {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 960px) {
  .b-quality__layout {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.b-quality__visual {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 960px) {
  .b-quality__visual {
    width: 420px;
    order: 2;
  }
}
.b-quality__img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.1);
}
.b-quality__img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.b-quality__img:hover {
  transform: scale(1.03);
}
.b-quality__img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}
.b-quality__img-badge i {
  color: #13c265;
  font-size: 20px;
}
.b-quality__img-badge strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #111109;
}
.b-quality__img-badge span {
  display: block;
  font-size: 11px;
  color: #6B6A63;
}
.b-quality__copy {
  flex: 1;
  min-width: 0;
  order: 1;
}
.b-quality__intro {
  font-size: 16px;
  color: #6B6A63;
  line-height: 1.65;
  margin-bottom: 32px;
}
.b-quality__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.b-quality__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.b-quality__item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #edf9f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-quality__item-icon i {
  color: #13c265;
  font-size: 16px;
}
.b-quality__item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111109;
  margin-bottom: 4px;
}
.b-quality__item p {
  font-size: 14px;
  color: #6B6A63;
  line-height: 1.6;
}

.b-steps {
  padding-block: 96px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E6E5DF;
  background: #F8F8F6;
}
.b-steps__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 45% 55% at 0% 50%, rgba(19, 194, 101, 0.05) 0%, transparent 60%), radial-gradient(ellipse 35% 35% at 100% 20%, rgba(19, 194, 101, 0.04) 0%, transparent 55%);
}
.b-steps__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 960px) {
  .b-steps__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.b-steps__copy {
  flex: 1;
  min-width: 0;
}
.b-steps__lead {
  font-size: 16px;
  color: #6B6A63;
  line-height: 1.65;
  margin-bottom: 36px;
}
.b-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.b-steps__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.b-steps__cta-note {
  font-size: 13px;
  color: #6B6A63;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  margin: 0;
}
.b-steps__cta-note i {
  color: #13c265;
  font-size: 12px;
  line-height: 1;
}
.b-steps__visual {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 960px) {
  .b-steps__visual {
    width: 460px;
  }
}
.b-steps__img-frame {
  position: relative;
}
.b-steps__img-bg {
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: -15px;
  right: -15px;
  border-radius: 24px;
  background: #edf9f3;
  border: 1px solid rgba(19, 194, 101, 0.15);
  display: none;
}
@media (min-width: 960px) {
  .b-steps__img-bg {
    display: block;
  }
}
.b-steps__img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12);
}
@media (min-width: 960px) {
  .b-steps__img {
    height: 520px;
  }
}

.b-step {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.b-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  width: 1px;
  height: calc(100% - 34px);
  background: linear-gradient(to bottom, #E6E5DF, transparent);
}
.b-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf9f3;
  border: 1.5px solid rgba(19, 194, 101, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #13c265;
}
.b-step__body {
  padding-top: 4px;
}
.b-step__body h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111109;
  margin-bottom: 5px;
}
.b-step__body p {
  font-size: 14px;
  color: #6B6A63;
  line-height: 1.6;
}

.b-final-cta {
  position: relative;
  padding-block: 96px;
  background: #F8F8F6;
  border-top: 1px solid #E6E5DF;
  overflow: hidden;
  text-align: center;
}
.b-final-cta__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(19, 194, 101, 0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.b-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.b-final-cta__h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111109;
  margin-bottom: 16px;
  margin-top: 8px;
}
.b-final-cta__sub {
  font-size: 16px;
  color: #6B6A63;
  line-height: 1.65;
  margin-bottom: 36px;
}
.b-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.b-final-cta__note {
  font-size: 12.5px;
  color: #B0AFA7;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.b-final-cta__note i {
  color: #13c265;
  font-size: 11px;
}

@keyframes bFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.18);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(19, 194, 101, 0.06);
  }
}
@keyframes bFloatBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}/*# sourceMappingURL=for-bedrifter.css.map */