:root {
  --renfix-green: #8bc34a;
  --renfix-green-dark: #7cb342;
  --renfix-text: #111827;
  --renfix-muted: #6b7280;
  --renfix-bg-soft: #f9fafb;
  --renfix-radius-xl: 24px;
}

.renfix-fullpage {
  background: #fff;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  position: static;
  left: auto;
  right: auto;
  margin: 0;
}

.renfix-fullpage__container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

.renfix-fullpage__header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: visible;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
}

.renfix-fullpage__header .renfix-fullpage__container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.renfix-fullpage__brand {
  display: inline-flex;
  align-items: center;
  color: #111827;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
}

.renfix-fullpage__brand img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.renfix-fullpage__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.renfix-i {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.125em;
}

.renfix-i--hero-btn {
  width: 1.1em;
  height: 1.1em;
}

.renfix-i--phone-btn {
  width: 1.05em;
  height: 1.05em;
}

.renfix-fullpage__nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.renfix-fullpage__nav a:hover,
.renfix-fullpage__nav a:focus-visible,
.renfix-fullpage__nav a:visited:hover,
.renfix-fullpage__nav a:visited:focus-visible {
  color: var(--renfix-green-dark);
}

.renfix-fullpage__nav a:visited {
  color: #374151;
}

.renfix-fullpage__nav-dropdown {
  position: relative;
}

.renfix-fullpage__nav-dropdown-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.renfix-fullpage__nav-dropdown-trigger:hover,
.renfix-fullpage__nav-dropdown-trigger:focus-visible {
  color: var(--renfix-green-dark);
}

.renfix-fullpage__nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.renfix-fullpage__nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  max-height: 58vh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.renfix-fullpage__nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.renfix-fullpage__nav-dropdown-menu a:hover,
.renfix-fullpage__nav-dropdown-menu a:focus-visible {
  background: rgba(139, 195, 74, 0.15);
  color: var(--renfix-green-dark);
}

.renfix-fullpage__nav-dropdown.is-open .renfix-fullpage__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.renfix-fullpage__nav-dropdown.is-open .renfix-fullpage__nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.renfix-fullpage__nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--renfix-green);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.renfix-fullpage__nav-phone:hover,
.renfix-fullpage__nav-phone:focus-visible {
  background: var(--renfix-green-dark);
}

.renfix-fullpage__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.renfix-fullpage__menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.renfix-fullpage__hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.renfix-fullpage__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renfix-fullpage__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 25%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.renfix-fullpage__hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 84px 0;
  color: #fff;
}

.renfix-fullpage__hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5.5vw, 4.8rem);
  line-height: 1.08;
  color: #fff;
}

.renfix-fullpage__hero-content p {
  margin: 0 0 30px;
  font-size: clamp(1.1rem, 2.3vw, 1.55rem);
  color: rgba(255, 255, 255, 0.92);
}

.renfix-fullpage__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.renfix-fullpage__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.renfix-fullpage__btn--primary {
  background: var(--renfix-green);
  color: #fff;
}

.renfix-fullpage__btn--primary:hover {
  background: var(--renfix-green-dark);
  color: #fff;
}

.renfix-fullpage__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}

.renfix-fullpage__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.renfix-fullpage__footer {
  position: relative;
  margin-top: 42px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.renfix-fullpage__footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 250, 251, 0.55), #fff);
  pointer-events: none;
}

.renfix-fullpage__footer-inner {
  position: relative;
  padding-top: 72px;
  padding-bottom: 40px;
}

.renfix-fullpage__footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.renfix-fullpage__footer-brand {
  display: inline-flex;
  color: #111827;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
}

.renfix-fullpage__footer-brand img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 220px;
}

.renfix-fullpage__footer-text,
.renfix-fullpage__footer-copy {
  margin: 10px 0 0;
  color: #6b7280;
}

.renfix-fullpage__footer-copy a,
.renfix-fullpage__footer-copy a:visited,
.renfix-fullpage__footer-copy a:hover,
.renfix-fullpage__footer-copy a:focus-visible {
  color: #111827;
  text-decoration: none;
}

.renfix-fullpage__footer-orgnr {
  margin: 14px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.92rem;
}

.renfix-fullpage__footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--renfix-green);
}

.renfix-fullpage__footer-grid h3 {
  margin: 0 0 16px;
  color: #111827;
}

.renfix-fullpage__footer-contact,
.renfix-fullpage__footer-addresses {
  display: grid;
  gap: 12px;
}

.renfix-fullpage__footer-contact a {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-areas:
    "icon small"
    "icon strong";
  column-gap: 10px;
  text-decoration: none;
}

.renfix-i--footer-contact {
  width: 20px;
  height: 20px;
  grid-area: icon;
  color: var(--renfix-green-dark);
  margin-top: 1px;
}

.renfix-fullpage__footer-contact a small,
.renfix-fullpage__footer-addresses small {
  display: block;
  margin-bottom: 2px;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 600;
}

.renfix-fullpage__footer-contact a small {
  grid-area: small;
}

.renfix-fullpage__footer-contact a strong,
.renfix-fullpage__footer-addresses strong {
  color: #111827;
}

.renfix-fullpage__footer-contact a strong {
  grid-area: strong;
}

.renfix-fullpage__footer-addresses p {
  margin: 2px 0 0;
  color: #4b5563;
  font-size: 0.92rem;
}

.renfix-fullpage__footer-addresses > div {
  position: relative;
  padding-left: 28px;
}

.renfix-i--footer-pin {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  color: var(--renfix-green-dark);
}

.renfix-fullpage__footer-contact a:hover strong,
.renfix-fullpage__footer-contact a:focus-visible strong {
  color: var(--renfix-green-dark);
}

.renfix-fullpage__footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.renfix-fullpage__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.renfix-fullpage__footer-links a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
}

.renfix-fullpage__footer-links a:hover,
.renfix-fullpage__footer-links a:focus-visible {
  color: var(--renfix-green-dark);
}

.renfix-landing-shortcode,
.renfix-section,
.renfix-widget {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

.renfix-landing-shortcode {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Prevent sticky Blocksy headers from hiding anchor targets. */
#tjanster,
#prisberaknare,
#om-oss,
#kontakt {
  scroll-margin-top: 120px;
}

.renfix-widget {
  background: #fff;
}

.renfix-widget:not(.renfix-services):not(.renfix-hotline) h3 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #000;
  text-align: center;
}

.renfix-section {
  padding: 88px 0;
}

/* Services — matchar Figma / Services.tsx (centerMode 20 %, max-w-7xl, kort 500px) */
.renfix-services {
  width: 100%;
  max-width: none;
  background: #fff;
  padding: 6rem 0;
  box-sizing: border-box;
}

.renfix-services__inner {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.renfix-services__intro {
  text-align: center;
  max-width: 56rem; /* max-w-4xl */
  margin: 0 auto 4rem;
}

.renfix-services__section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  text-align: center;
}

.renfix-services__intro-text--lead {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.625;
  margin: 0 0 2rem;
}

.renfix-services__intro-text:not(.renfix-services__intro-text--lead) {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.625;
  margin: 0;
}

.renfix-services__carousel-wrap {
  position: relative;
  overflow: visible;
}

.renfix-services__swiper {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.renfix-services__swiper::before,
.renfix-services__swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  width: min(8vw, 84px);
  pointer-events: none;
  z-index: 2;
}

.renfix-services__swiper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.renfix-services__swiper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.renfix-services__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 0 8px;
  scroll-padding: 0 20%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  min-width: 0;
  position: relative;
  z-index: 0;
}

.renfix-services__track::-webkit-scrollbar {
  display: none;
}

.renfix-services__nav {
  position: absolute;
  top: 50%;
  left: 2rem;
  /* WebKit mobil: scroll-layer ovanför syskon — knappar efter track i DOM + högt z-index */
  z-index: 20;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--renfix-green) 88%, #ffffff 12%);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.renfix-services__nav--next {
  left: auto;
  right: 2rem;
}

.renfix-services__nav--prev {
  left: 2rem;
  right: auto;
}

.renfix-services__nav:hover {
  background: var(--renfix-green-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 28px 52px -14px rgba(0, 0, 0, 0.48);
}

.renfix-services__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--renfix-green) 30%, #ffffff 70%);
}

.renfix-services__card {
  flex: 0 0 60%;
  min-width: 0;
  max-width: 52rem;
  height: 500px;
  border-radius: 1.5rem; /* rounded-3xl */
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  scroll-snap-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.renfix-services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 58px -14px rgba(0, 0, 0, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .renfix-services__track {
    scroll-behavior: auto;
  }

  .renfix-services__card,
  .renfix-services__image .renfix-services__img,
  .renfix-services__image img,
  .renfix-services__nav {
    transition: none;
  }
}

.renfix-services__card-link {
  display: block;
  height: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.renfix-services__image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: #e5e7eb;
}

.renfix-services__image .renfix-services__img,
.renfix-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  max-width: 100%;
  max-height: 100%;
  image-rendering: auto;
  transition: transform 0.65s ease;
  display: block;
}

.renfix-services__card:hover .renfix-services__image .renfix-services__img,
.renfix-services__card:hover .renfix-services__image img {
  transform: scale(1.05);
}

.renfix-services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.renfix-services__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
  text-align: left;
}

.renfix-services__card-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.renfix-services__excerpt {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.5;
}

.renfix-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--renfix-green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem; /* rounded-xl */
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.renfix-services__card:hover .renfix-services__cta {
  background: var(--renfix-green-dark);
  transform: translateY(-1px);
}

.renfix-services__cta-text {
  line-height: 1.2;
}

.renfix-services__cta-arrow {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
}

.renfix-services__empty {
  margin: 0;
  color: var(--renfix-muted);
  flex: 0 0 100%;
  text-align: center;
  padding: 2rem;
}

/* Price calculator — Figma / PriceCalculator.tsx */
.renfix-calc-outer.renfix-widget {
  background: transparent;
  box-shadow: none;
}

.renfix-calc-outer {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

.renfix-calc__inner {
  padding: 6rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  width: 100%;
  box-sizing: border-box;
}

.renfix-calc__intro {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 64rem;
}

.renfix-calc__page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.renfix-calc__page-lead {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}

.renfix-calc__shell {
  position: relative;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.5rem; /* rounded-3xl */
  overflow: hidden;
  background: linear-gradient(135deg, var(--renfix-green), var(--renfix-green-dark));
  box-shadow: 0 25px 50px -12px rgba(124, 179, 66, 0.45);
}

.renfix-calc__shell-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjA1IiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=");
}

.renfix-calc__shell-pad {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.renfix-calc__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.renfix-calc__bar-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.renfix-calc__bar-icon svg {
  width: 2rem;
  height: 2rem;
}

.renfix-calc-outer.renfix-widget h3.renfix-calc__bar-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.renfix-calc__form-card {
  background: #fff;
  border-radius: 1rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.renfix-calc__fields {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}


.renfix-calc__label {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.renfix-calc__select-wrap {
  position: relative;
}

.renfix-calc__select,
.renfix-calc__input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1.125rem;
  /* Undvik att min-height + tjock padding klipper text i <select> (särskilt Windows/Chrome). */
  line-height: 1.5;
  color: #111827;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  background-color: #fff;
  padding: 0.7rem 3rem 0.7rem 1.25rem;
  min-height: 3.25rem;
  height: auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  overflow: visible;
}

.renfix-calc__select {
  cursor: pointer;
  /* Säkerställ att vald rad får normal radhöjd i nätverksläge */
  line-height: 1.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238bc34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.4rem;
}

.renfix-calc__select:hover,
.renfix-calc__input:hover {
  border-color: #d1d5db;
}

.renfix-calc__select:focus,
.renfix-calc__input:focus {
  outline: none;
  border-color: var(--renfix-green);
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
}

.renfix-calc__submit {
  width: 100%;
  border: 0;
  border-radius: 1rem;
  padding: 1.35rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--renfix-green), var(--renfix-green-dark));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.renfix-calc__submit:hover:not(:disabled) {
  transform: scale(1.01);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.renfix-calc__submit:disabled {
  cursor: not-allowed;
  color: #fff;
  /* Behåll gröna tonen men tydligt "av" – bättre kontrast mot vit text än helt grå block. */
  background: linear-gradient(90deg, #a3a3a3, #888);
  box-shadow: none;
  filter: none;
  transform: none;
  opacity: 1;
}

.renfix-calc__result-outer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

.renfix-calc__result-box {
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(124, 179, 66, 0.1));
  border: 2px solid rgba(139, 195, 74, 0.2);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.renfix-calc__result-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4b5563;
  margin: 0 0 0.5rem;
}

.renfix-calc__result {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 800;
  color: var(--renfix-green);
  line-height: 1.1;
}

.renfix-calc__result-suf {
  font-size: 2rem;
  font-weight: 800;
  vertical-align: baseline;
  margin-left: 0.15em;
}

.renfix-calc__result-explain {
  margin: 0;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.5;
}

.renfix-calc__call {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--renfix-green), var(--renfix-green-dark));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.renfix-calc__call:hover {
  color: #fff;
  transform: scale(1.01);
}

.renfix-calc__ground {
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  margin: 0;
}


/* Hotline and contact */
.renfix-about__inner,
.renfix-contact__inner,
.renfix-team__inner {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
  box-sizing: border-box;
}

.renfix-contact__head {
  text-align: center;
  margin-bottom: 2rem;
}

.renfix-contact__head h2 {
  margin: 0 0 0.75rem;
}

.renfix-contact__intro {
  margin: 0;
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.renfix-contact h2,
.renfix-about__inner > h2,
.renfix-team__inner > h2 {
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.renfix-about__inner > h2 {
  padding-top: 0.25rem;
  margin-bottom: 1.75rem;
}

.renfix-team__inner > h2 {
  padding-top: 0.25rem;
  margin-bottom: 1.75rem;
}

.renfix-contact__head {
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}

.renfix-hotline {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--renfix-green), var(--renfix-green-dark));
  color: #fff;
  text-align: center;
  border-radius: var(--renfix-radius-xl);
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  box-shadow: 0 24px 40px rgba(124, 179, 66, 0.3);
  box-sizing: border-box;
}

.renfix-hotline__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #fff !important;
  text-align: center;
  line-height: 1.3;
}

.renfix-hotline a.renfix-hotline__phone,
.renfix-hotline .renfix-hotline__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  transition: transform 0.2s ease;
}

.renfix-i--hotline-phone {
  width: 0.62em;
  height: 0.62em;
}

.renfix-hotline__hours {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.5;
}

.renfix-hotline a:hover,
.renfix-hotline a:focus-visible {
  text-decoration: none;
}

.renfix-hotline a.renfix-hotline__phone:hover,
.renfix-hotline a.renfix-hotline__phone:focus-visible {
  transform: scale(1.05);
}

.renfix-hotline__divider {
  border: 0;
  height: 1px;
  margin: clamp(18px, 3.5vw, 26px) auto;
  width: min(100%, 22rem);
  background: rgba(255, 255, 255, 0.5);
}

.renfix-hotline__email-intro {
  margin: 0 0 0.35rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.renfix-hotline__email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  line-height: 1.35;
}

.renfix-i--hotline-mail {
  width: 0.9em;
  height: 0.9em;
}

.renfix-hotline__email-link:hover,
.renfix-hotline__email-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.renfix-contact__form {
  background: var(--renfix-bg-soft);
  border-radius: var(--renfix-radius-xl);
  padding: clamp(20px, 4vw, 36px);
  width: 100%;
  max-width: 780px;
  margin: 24px auto 0;
}

.renfix-contact__form-head {
  margin: 0 0 14px;
}

.renfix-contact__form-title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.renfix-contact__form-meta {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.98rem;
}

.renfix-contact__form .wpforms-container {
  margin: 0;
}

.renfix-contact__form .wpforms-head-container,
.renfix-contact__form .wpforms-title,
.renfix-contact__form .wpforms-description {
  display: none !important;
}

.renfix-contact__form .wpforms-field-label {
  font-weight: 600;
  color: #1f2937;
}

.renfix-contact__form .wpforms-field input,
.renfix-contact__form .wpforms-field textarea,
.renfix-contact__form .wpforms-field select {
  border: 1px solid #d1d5db;
  border-radius: 12px;
  min-height: 50px;
  padding: 12px 14px;
}

.renfix-contact__form .wpforms-field textarea {
  min-height: 140px;
}

.renfix-contact__form .wpforms-submit-container {
  margin-top: 8px;
}

.renfix-contact__form .wpforms-submit {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--renfix-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 14px 18px !important;
}

.renfix-contact__form .wpforms-submit::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M29 3L3 15l12 2.5M29 3L19 29l-4-11.5M29 3L15 17.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M29 3L3 15l12 2.5M29 3L19 29l-4-11.5M29 3L15 17.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.renfix-contact__form .wpforms-submit:hover {
  background: var(--renfix-green-dark) !important;
}

/* WPForms custom classes from form builder (Figma match). */
.renfix-contact__form .renfix-form {
  margin: 0;
}

.renfix-contact__form .renfix-form .wpforms-field {
  margin-bottom: 14px;
}

.renfix-contact__form .renfix-form .form-input,
.renfix-contact__form .renfix-form input.form-input,
.renfix-contact__form .renfix-form textarea.form-input,
.renfix-contact__form .renfix-form .message-input,
.renfix-contact__form .renfix-form textarea.message-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  padding: 13px 14px;
  min-height: 50px;
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.renfix-contact__form .renfix-form .message-input,
.renfix-contact__form .renfix-form textarea.message-input {
  min-height: 140px;
  resize: vertical;
}

.renfix-contact__form .renfix-form .form-input::placeholder,
.renfix-contact__form .renfix-form .message-input::placeholder {
  color: #9ca3af;
}

.renfix-contact__form .renfix-form .form-input:focus,
.renfix-contact__form .renfix-form .message-input:focus {
  outline: none;
  border-color: var(--renfix-green);
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.12);
}

.renfix-contact__form .renfix-form .sending-btn,
.renfix-contact__form .renfix-form button.sending-btn,
.renfix-contact__form .renfix-form input.sending-btn {
  width: 100%;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(90deg, var(--renfix-green), var(--renfix-green-dark)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 52px;
  padding: 14px 18px !important;
  box-shadow: 0 10px 24px rgba(124, 179, 66, 0.26);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.renfix-contact__form .renfix-form .sending-btn::before,
.renfix-contact__form .renfix-form button.sending-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M29 3L3 15l12 2.5M29 3L19 29l-4-11.5M29 3L15 17.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M29 3L3 15l12 2.5M29 3L19 29l-4-11.5M29 3L15 17.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.renfix-contact__form .renfix-form .sending-btn:hover,
.renfix-contact__form .renfix-form button.sending-btn:hover,
.renfix-contact__form .renfix-form input.sending-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow: 0 14px 26px rgba(124, 179, 66, 0.32);
}

.renfix-contact {
  padding-top: 72px;
  padding-bottom: 40px;
}

.renfix-service-page__contact {
  padding-top: 52px;
  padding-bottom: 28px;
}

.renfix-service-page__contact .renfix-contact__head {
  display: none;
}

.renfix-service-page__contact .renfix-hotline {
  box-shadow: none;
}

.renfix-service-page__contact .renfix-contact__form {
  margin-top: 16px;
}

/* About */
.renfix-about {
  background: linear-gradient(180deg, #fff 0%, rgba(139, 195, 74, 0.08) 35%, #fff 100%);
}

.renfix-about__inner {
  max-width: 72rem;
}

.renfix-about__intro {
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.renfix-about__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.renfix-about__text {
  color: #374151;
  line-height: 1.75;
  font-size: 1.18rem;
}

.renfix-about__text p {
  margin: 0 0 1.15rem;
}

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

.renfix-about__image {
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.renfix-about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.renfix-about__card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.renfix-about__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.renfix-about__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 195, 74, 0.12);
  color: var(--renfix-green-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.renfix-about__card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
  color: #111827;
}

.renfix-about__card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.renfix-about__docs {
  max-width: 56rem;
  margin: 2rem auto 0;
  text-align: center;
}

.renfix-about__docs h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  color: #111827;
}

.renfix-about__docs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.renfix-about__docs li {
  margin: 0;
}

.renfix-about__docs a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #1f2937;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.renfix-about__docs a::before {
  content: "PDF";
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(139, 195, 74, 0.2);
  color: #365314;
}

.renfix-about__docs a:hover,
.renfix-about__docs a:focus-visible {
  border-color: var(--renfix-green-dark);
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

/* Team */
.renfix-team {
  padding-top: 44px;
}

.renfix-team__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.renfix-team__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--renfix-muted);
  font-size: 1.05rem;
  margin: 0;
  padding: 2rem 1rem;
}

.renfix-team__item {
  background: var(--renfix-bg-soft);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.renfix-team__item:hover {
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

.renfix-team__image {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(139, 195, 74, 0.2);
  background: #f1f5f9;
}

.renfix-team__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.renfix-team__image--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.renfix-i--team-person {
  width: 44px;
  height: 44px;
  color: #9ca3af;
}

.renfix-team__item h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
}

.renfix-team__role {
  margin: 0 0 6px;
  color: #111827;
  font-weight: 700;
  font-size: 1.05rem;
}

.renfix-team__meta {
  margin: 6px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #374151;
  font-size: 0.95rem;
}

.renfix-team__meta a {
  color: #374151;
  text-decoration: none;
}

.renfix-team__meta a:hover,
.renfix-team__meta a:focus-visible {
  color: var(--renfix-green-dark);
  text-decoration: underline;
}

.renfix-i--team-meta {
  width: 16px;
  height: 16px;
  color: #84cc16;
}

/* Menu and service page */
.renfix-services-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.renfix-services-menu__list a {
  color: var(--renfix-green-dark);
  text-decoration: none;
  font-weight: 600;
}

.renfix-service-shortcode .service-single__article {
  max-width: 980px;
  margin: 0 auto;
}

/* Dedicated /tjanster/{slug} template */
.renfix-service-page__main {
  background: #fff;
}

.renfix-service-page__top {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.renfix-service-page__media {
  min-height: 280px;
}

.renfix-service-page__media img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.renfix-service-page__media-placeholder {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border-radius: 22px;
  background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 100%);
}

.renfix-service-page__summary h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #000;
}

.renfix-service-page__lead {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 1.12rem;
}

.renfix-service-page__price {
  margin: 0 0 18px;
  border-radius: 16px;
  padding: 24px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--renfix-green), var(--renfix-green-dark));
}

.renfix-service-page__price p {
  margin: 0 0 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  opacity: 0.92;
}

.renfix-service-page__price strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.renfix-service-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.renfix-service-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.renfix-service-page__btn:hover,
.renfix-service-page__btn:focus-visible {
  transform: translateY(-1px);
}

.renfix-service-page__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--renfix-green), var(--renfix-green-dark));
}

.renfix-service-page__btn--ghost {
  color: #111827;
  border: 1px solid #d1d5db;
  background: #fff;
}

.renfix-service-page__btn--ghost:hover,
.renfix-service-page__btn--ghost:focus-visible {
  border-color: var(--renfix-green);
  color: var(--renfix-green-dark);
}

.renfix-service-page__btn--ghost:visited,
.renfix-service-page__btn--primary:visited {
  color: inherit;
}

.renfix-service-page__switch label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #4b5563;
  font-weight: 600;
}

.renfix-service-page__switch select {
  width: 100%;
  max-width: 360px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  padding: 11px 14px;
}

.renfix-service-page__content {
  margin-top: 34px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  line-height: 1.7;
}

.renfix-service-page__long {
  margin: 0;
  color: #374151;
  font-size: 1rem;
}

.renfix-service-page__content a,
.renfix-service-page__long a {
  color: var(--renfix-green-dark);
  text-decoration-color: rgba(104, 159, 56, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.renfix-service-page__content a:visited,
.renfix-service-page__long a:visited {
  color: var(--renfix-green-dark);
}

.renfix-service-page__content a:hover,
.renfix-service-page__content a:focus-visible,
.renfix-service-page__long a:hover,
.renfix-service-page__long a:focus-visible {
  color: var(--renfix-green);
  text-decoration-color: rgba(139, 195, 74, 0.8);
}

.renfix-service-page__long p:last-child {
  margin-bottom: 0;
}

.renfix-service-page__feature-layout {
  display: block;
}

.renfix-service-page__feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.renfix-service-page__feature-card {
  background: #fff;
  border: 1px solid #eceff1;
  border-radius: 14px;
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.renfix-service-page__feature-card h3 {
  margin: 0 0 10px;
}

.renfix-service-page__feature-card p {
  margin: 0;
  color: #4b5563;
}

.renfix-service-page__feature-card ul {
  margin: 0;
}

.renfix-service-page__long h2 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.renfix-service-page__long h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.renfix-service-page__long p {
  margin: 0 0 12px;
  color: #4b5563;
}

.renfix-service-page__notice {
  margin: 18px 0 14px !important;
  padding: clamp(14px, 2.4vw, 20px) clamp(16px, 3vw, 24px);
  border: 1px solid #c8dfb1;
  border-radius: 14px;
  background: #f3f9ed;
  color: #0f172a !important;
  font-weight: 700;
  text-align: center;
}

.renfix-service-page__long ul {
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.renfix-service-page__cta {
  padding-top: 32px;
  padding-bottom: 18px;
}

.renfix-service-page__cta-inner {
  text-align: center;
}

.renfix-service-page__cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: #111827;
}

.renfix-service-page__cta-intro {
  margin: 0;
  color: #6b7280;
  font-size: 1.05rem;
}

/* Punktlistor (HTML ul/li i lång beskrivning eller blockinnehåll) */
.renfix-service-page__content ul,
.renfix-service-page__long ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.renfix-service-page__content ul li,
.renfix-service-page__long ul li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.45rem 0;
}

.renfix-service-page__content ul li::before,
.renfix-service-page__long ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--renfix-green);
}

/* Blocksy wrapper compatibility */
.ct-container .renfix-landing-shortcode {
  width: 100%;
  max-width: none;
}

.ct-container .renfix-fullpage,
.ct-content-block .renfix-fullpage,
.entry-content .renfix-fullpage {
  width: 100%;
  max-width: none;
  position: static;
  left: auto;
  right: auto;
  margin: 0;
}

/* Gutenberg shortcode wrapper can cap width unless forced. */
.wp-block-shortcode:has(> .renfix-fullpage) {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wp-block-shortcode:has(> .renfix-landing-shortcode) {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Blocksy wrappers: force uncapped layout only when full landing exists. */
body:has(.renfix-fullpage) .ct-container,
body:has(.renfix-fullpage) .ct-content-block,
body:has(.renfix-fullpage) .entry-content,
body:has(.renfix-fullpage) .wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
}

/* Same wrapper reset for pages using [renfix_landing_page] directly. */
body:has(.renfix-landing-shortcode) .ct-container,
body:has(.renfix-landing-shortcode) .ct-content-block,
body:has(.renfix-landing-shortcode) .entry-content,
body:has(.renfix-landing-shortcode) .wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
}

body:has(.renfix-fullpage) .ct-content-block,
body:has(.renfix-fullpage) .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}

body:has(.renfix-landing-shortcode) .ct-content-block,
body:has(.renfix-landing-shortcode) .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}

body:has(.renfix-fullpage) .ct-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

body:has(.renfix-landing-shortcode) .ct-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

/* Use only Renfix shell header/footer when fullpage layout is present. */
body:has(.renfix-fullpage) .ct-header,
body:has(.renfix-fullpage) #header,
body:has(.renfix-fullpage) .ct-footer,
body:has(.renfix-fullpage) #footer,
body:has(.renfix-fullpage) .hero-section,
body:has(.renfix-fullpage) .entry-header {
  display: none !important;
}

.ct-content-block .renfix-landing-shortcode {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .renfix-fullpage__footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
  }

  .renfix-fullpage__footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .renfix-service-page__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .renfix-service-page__feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .renfix-services__track {
    scroll-padding: 0 10%;
  }

  .renfix-services__card {
    flex: 0 0 80%;
  }

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

  .renfix-about__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .renfix-fullpage__header .renfix-fullpage__container {
    min-height: 64px;
    flex-wrap: wrap;
  }

  .renfix-fullpage__nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0 14px;
  }

  .renfix-fullpage__nav-dropdown {
    width: 100%;
  }

  .renfix-fullpage__nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .renfix-fullpage__nav-dropdown-trigger::after {
    margin-left: auto;
  }

  .renfix-fullpage__nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: min(65vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 10px;
  }

  .renfix-fullpage__nav.is-open {
    display: flex;
  }

  .renfix-fullpage__nav-dropdown.is-open .renfix-fullpage__nav-dropdown-menu {
    display: block;
  }

  .renfix-fullpage__nav a {
    font-size: 0.95rem;
  }

  .renfix-fullpage__menu-toggle {
    display: inline-flex;
  }

  .renfix-fullpage__nav-phone {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .renfix-fullpage__brand img {
    height: 40px;
    max-width: 150px;
  }

  .renfix-fullpage__hero {
    min-height: 62vh;
  }

  .renfix-fullpage__hero-content {
    padding: 62px 0;
  }

  .renfix-section {
    padding: 62px 0;
  }

  .renfix-contact {
    padding-top: 58px;
    padding-bottom: 30px;
  }

  .renfix-team {
    padding-top: 32px;
  }

  .renfix-services {
    padding: 4rem 0;
  }

  .renfix-services__track {
    scroll-padding: 0 1rem;
  }

  .renfix-services__card {
    height: min(70vh, 500px);
    flex: 0 0 100%;
  }

  .renfix-services__nav {
    width: 2.5rem;
    height: 2.5rem;
    left: 0.5rem;
    font-size: 0.9rem;
  }

  .renfix-services__nav--next {
    left: auto;
    right: 0.5rem;
  }

  .renfix-services__nav--prev {
    left: 0.5rem;
    right: auto;
  }

  .renfix-team__grid {
    grid-template-columns: 1fr;
  }

  .renfix-service-page__btn {
    width: 100%;
  }
}

