:root {
        --bg: #ffffff;
        --muted: #f6f7f9;
        --text: #0f172a;
        --subtext: #475569;
        --border: #e5e7eb;
        --accent: #0f172a;
        --accent2: #111827;
        --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        --radius: 18px;
      }

      * { box-sizing: border-box; }

      body {
        margin: 0;
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
          Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--text);
        background: var(--bg);
        line-height: 1.5;
        overflow-x: hidden;
      }

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

      .topbar {
        position: sticky;
        top: 0;
        z-index: 20;
        background: #f1f5f9;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #dde4ed;
      }

      .wrap {
        max-width: 1060px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        gap: 14px;
      }

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

      .logo {
        width: 36px;
        height: 36px;
        border-radius: 14px;
        background: var(--accent);
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 700;
      }

      .brand-title {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
      }

      .brand-title strong { font-size: 14px; }
      .brand-title span { font-size: 12px; color: var(--subtext); }

      .navlinks {
        display: none;
        gap: 18px;
        color: var(--subtext);
        font-size: 13px;
      }

      .navlinks a {
        position: relative;
        padding: 6px 2px;
        border-radius: 10px;
        transition: color 0.18s ease, background 0.18s ease;
      }

      .navlinks a:hover { 
        color: var(--text); 
        background: rgba(15, 23, 42, 0.04); 
      }

      .navlinks a::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: -6px;
        height: 2px;
        background: var(--accent);
        border-radius: 999px;
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0.5;
        transition: transform 0.18s ease;
      }

      .navlinks a:hover::after { transform: scaleX(1); }

      .navcta {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .btn {
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
      }

      .btn:hover {
        background: #fafafa;
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
        border-color: rgba(15, 23, 42, 0.18);
      }

      .btn:active {
        transform: translateY(0px);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
      }


      .btn.primary {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
      }

      .btn.primary:hover {
        background: var(--accent2);
        border-color: var(--accent2);
      }

      /* CTA: mer "trykkbar" men fortsatt clean */
      .btn.primary.cta {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, var(--accent2), var(--accent));
        box-shadow:
          0 14px 34px rgba(15, 23, 42, 0.18),
          0 0 0 0 rgba(15, 23, 42, 0); /* for smooth glow transition */
        transform: translateY(0);
      }

      /* Myk highlight som allerede lå der, men litt mer kontrollert */
      .btn.primary.cta::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
        opacity: 0.7;
        pointer-events: none;
      }

      /* Shine-sweep på hover */
      .btn.primary.cta::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -60%;
        width: 55%;
        height: 140%;
        background: linear-gradient(
          120deg,
          rgba(255,255,255,0) 0%,
          rgba(255,255,255,0.35) 45%,
          rgba(255,255,255,0) 100%
        );
        transform: translateX(-20%) skewX(-14deg);
        opacity: 0;
        pointer-events: none;
      }

      .btn.primary.cta:hover {
        transform: translateY(-3px);
        box-shadow:
          0 18px 50px rgba(15, 23, 42, 0.26),
          0 0 0 6px rgba(15, 23, 42, 0.06);
      }

      .btn.primary.cta:hover::before {
        opacity: 1;
        transform: translateX(240%) skewX(-14deg);
        transition: transform 0.55s ease, opacity 0.2s ease;
      }

      .btn.primary.cta:active {
        transform: translateY(-1px);
        box-shadow:
          0 12px 32px rgba(15, 23, 42, 0.18),
          0 0 0 4px rgba(15, 23, 42, 0.05);
      }

      /* Tastatur: gjør CTA tydelig når du tabber */
      .btn.primary.cta:focus-visible {
        outline: none;
        box-shadow:
          0 18px 50px rgba(15, 23, 42, 0.26),
          0 0 0 6px rgba(15, 23, 42, 0.10);
      }

      /* Respekt for "reduced motion" */
      @media (prefers-reduced-motion: reduce) {
        .btn.primary.cta,
        .btn.primary.cta::before {
          transition: none !important;
        }
        .btn.primary.cta:hover::before {
          opacity: 0;
          transform: none;
        }
      }

      .hero {
        position: relative;
        padding: 32px 0 16px;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        height: 520px;
        /* Transparent overlay so section background can still show */
        background: linear-gradient(to bottom, rgba(255,255,255,0.78), rgba(255,255,255,0));
        z-index: -1;
      }

      .grid2 { display: grid; gap: 22px; }

      .grid2 > * {
        min-width: 0;
      }

      .badge {
        display: inline-flex;
        flex-wrap: nowrap;
        gap: 6px;
        align-items: center;
        border: 1px solid var(--border);
        background: #fff;
        padding: 6px 10px;
        border-radius: 999px;
        color: var(--subtext);
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
      }

      .badge .response-time {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        opacity: .68;        /* lavere kontrast enn resten */
        font-size: .95em;    /* litt mindre */
      }

      .badge .response-time .rt-icon {
        font-size: .95em;
        opacity: .9;
        transform: translateY(1px);
      }

      .badge .response-time .rt-value {
        font-weight: 650;    /* gjør 24t litt tydeligere */
        opacity: .95;
      }


      h1 {
        margin: 8px 0 6px;
        font-size: clamp(22px, 3.2vw, 34px);
        letter-spacing: -0.02em;
        line-height: 1.2;
        overflow: visible;
      }

      .lead {
        margin: 0;
        color: var(--subtext);
        font-size: 16px;
        max-width: 60ch;
      }

      .cards2 {
        margin-top: 18px;
        display: grid;
        gap: 12px;
      }

      .card {
        border: 1px solid var(--border);
        background: #fff;
        border-radius: var(--radius);
        padding: 14px;
        box-shadow: none;
      }

      a.card, .card-link {
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease,
          border-color 0.18s ease;
      }

      /* Hover kun på klikkbare kort */
      a.card:hover,
      .card-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
        border-color: var(--accent);
      }


      .card.muted { background: var(--muted); }

      .card h3 { margin: 0; font-size: 13px; }
      .card p { margin: 6px 0 0; color: var(--subtext); font-size: 13px; }

      .hero-cta {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
      }

      .meta {
        margin-top: 16px;
        color: var(--subtext);
        font-size: 13px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }

      .quickstats {
        margin-top: 16px;
        display: grid;
        gap: 12px;
      }

      .qs-title {
        color: #64748b;
        font-weight: 800;
        font-size: 11px;
        letter-spacing: 0.06em;
      }

      .qs-main { margin-top: 4px; font-size: 18px; font-weight: 800; }
      .qs-sub { margin-top: 2px; color: var(--subtext); font-size: 13px; }

      .aside {
        border: 1px solid #c8d8e8;
        border-radius: calc(var(--radius) + 6px);
        background: linear-gradient(145deg, #eef3f9 0%, #e4ecf5 100%);
        padding: 18px;
        box-shadow: var(--shadow);
      }

      .aside h2 { margin: 0; font-size: 14px; }

      .checklist {
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: #334155;
        font-size: 13px;
      }

      .checklist li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
      }

      .tick {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        background: #fff;
        border: 1px solid var(--border);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        margin-top: 1px;
      }

      .testimonial {
        margin-top: 14px;
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        padding: 14px;
        position: relative;
        overflow: hidden;
      }

      .testimonial .label {
        font-size: 11px;
        font-weight: 900;
        color: #64748b;
        letter-spacing: 0.06em;
      }

      .testimonial p { margin: 8px 0 0; color: #334155; font-size: 13px; }
      .testimonial .who { margin-top: 8px; color: #64748b; font-size: 12px; }

      /* Slideshow */
      .testimonial-slides {
        position: relative;
        min-height: 80px;
      }

      .testimonial-slide {
        display: none;
        animation: fadeSlide 0.4s ease;
      }

      .testimonial-slide.active {
        display: block;
      }

      @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(6px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      .testimonial-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
      }

      .testimonial-dots {
        display: flex;
        gap: 6px;
      }

      .testimonial-dot {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: #cbd5e1;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, width 0.2s ease;
      }

      .testimonial-dot.active {
        background: var(--accent);
        width: 18px;
      }

      .section h2 {
        margin: 0;
        font-size: 22px;
        letter-spacing: -0.01em;
      }

      .sub {
        margin-top: 6px;
        color: var(--subtext);
        font-size: 13px;
        max-width: 70ch;
      }

      .grid3, .grid4, .grid1 {
        margin-top: 16px;
        display: grid;
        gap: 12px;
      }

      .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
      }

      .price { font-size: 34px; font-weight: 900; margin: 8px 0 0; }

      ul.clean {
        margin: 12px 0 0;
        padding-left: 18px;
        color: #334155;
        font-size: 13px;
      }

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

      label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #475569;
        margin-bottom: 6px;
      }

      input, textarea, select {
        width: 100%;
        padding: 12px 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        font-size: 14px;
        outline: none;
        background: #fff;
      }

      textarea { min-height: 120px; resize: vertical; }

      input:focus, textarea:focus, select:focus {
        border-color: #cbd5e1;
        box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
      }

      .helper { margin-top: 8px; color: #64748b; font-size: 12px; }

      footer {
        border-top: 1px solid var(--border);
        padding: 22px 0;
        color: var(--subtext);
        font-size: 13px;
      }

      @media (min-width: 860px) {
        .navlinks { display: flex; }
        .grid2 { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
        .cards2 { grid-template-columns: 1fr 1fr; }
        .quickstats { grid-template-columns: 1fr 1fr; }
        .grid1 { grid-template-columns: 1fr; }
        .grid3 { grid-template-columns: repeat(3, 1fr); }
        .grid4 { grid-template-columns: repeat(4, 1fr); }
        .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
      }

      /* Klikkbare pris-kort */
      .card-link {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
      }

      .card-link:hover h3 {
        text-decoration: underline;
      }

      .card-link:focus-visible {
        outline: none;
        box-shadow:
          0 0 0 4px rgba(15, 23, 42, 0.12),
          0 18px 44px rgba(15, 23, 42, 0.22);
      }

      .section {
        padding: 2.6rem 0;
        scroll-margin-top: 90px;
      }

      .section + .section {
        border-top: none;
      }

      main .section:first-of-type {
        border-top: 0;
      }

      /* Bakgrunnsvarianter (myke "fossefall"-overganger) */
      .section--white {
        background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
      }

      .section--muted {
        background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
      }

      .section--cool {
        background: linear-gradient(180deg, #ffffff 0%, #f1eef8 100%);
      }

      .section--warm {
        background: linear-gradient(180deg, #ffffff 0%, #f6f1ea 100%);
      }


      #tjenester { background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 60%, #ffffff 100%); }
      #om        { background: linear-gradient(180deg, #ffffff 0%, #f1eef8 100%); }
      #priser    { background: linear-gradient(180deg, #f1eef8 0%, #f6f1ea 100%); }
      #faq       { background: linear-gradient(180deg, #f6f1ea 0%, #ffffff 100%); }
      #kontakt   { background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%); }
      #tilbakemelding { background: linear-gradient(180deg, #eef3f9 0%, #ffffff 100%); }

      /* Mobil bunn-meny */
      .mobile-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 30;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border);
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
      }

      .mobile-bar-inner {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 1060px;
        margin: 0 auto;
      }

      .mobile-bar-links {
        display: flex;
        gap: 2px;
        flex: 1;
        overflow-x: auto;
        scrollbar-width: none;
      }

      .mobile-bar-links::-webkit-scrollbar { display: none; }

      .mobile-bar-links a {
        white-space: nowrap;
        font-size: 12px;
        color: var(--subtext);
        padding: 6px 9px;
        border-radius: 10px;
        font-weight: 500;
      }

      .mobile-bar-links a:hover {
        background: var(--muted);
        color: var(--text);
      }

      @media (max-width: 859px) {
        .mobile-bar { display: block; }
        main { padding-bottom: 72px; }
        .navcta { display: none; }
        .wrap { padding: 0 16px; }
        .meta { gap: 12px; margin-top: 12px; }
        h1 { white-space: normal; margin-top: 4px; }
        .hero-cta { margin-top: 12px; }
        .quickstats { margin-top: 12px; }
        .section { padding: 2rem 0; }
        .badge { white-space: normal; flex-wrap: wrap; }
        .lang-toggle-desktop { display: none; }
        .lang-toggle-mobile { display: flex; }
        .hero { padding-top: 16px; }
      }

      /* ─── Priskort ─── */
      .pricing-grid {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
        margin-top: 16px;
      }

      .pricing-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
        grid-column: 1 / -1;
      }

      .pcard {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 18px;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        position: relative;
      }

      .pcard:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
        border-color: rgba(15, 23, 42, 0.2);
      }

      .pcard--link {
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
      }

      .pcard--featured {
        border-color: var(--accent);
        border-width: 2px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
        transform: translateY(-5px) scale(1.02);
        z-index: 1;
      }

      .pcard--featured:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 26px 60px rgba(15, 23, 42, 0.20);
      }

      .pcard--single {
        background: var(--muted);
      }

      .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.06em;
        padding: 5px 14px;
        border-radius: 999px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.22);
      }

      .pcard-label {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.07em;
        color: #64748b;
        text-transform: uppercase;
        margin-bottom: 4px;
      }

      .pcard-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 10px;
      }

      .pcard-recommend {
        font-size: 11px;
        color: #64748b;
        font-style: italic;
        margin-top: 5px;
        margin-bottom: 0;
      }

      .pcard-price {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -0.02em;
        line-height: 1;
        margin-top: 12px;
      }

      .pcard--single .pcard-price {
        font-size: 26px;
      }

      .pcard-price-sub {
        margin-top: 3px;
        font-size: 12px;
        color: var(--subtext);
      }

      .pcard-savings {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 12px;
      }

      .savings-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: var(--subtext);
        padding: 3px 0;
      }

      .savings-row .label { color: #94a3b8; }
      .savings-row .value { font-weight: 600; color: #334155; }
      .savings-row .value.green { color: #16a34a; font-weight: 700; }
      .savings-row .value.strikethrough {
        text-decoration: line-through;
        color: #94a3b8;
        font-weight: 400;
      }

      /* ─── Tillegg ─── */
      .pricing-addons-bar {
        font-size: 13px;
        color: #475569;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--muted);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: space-between;
      }

      .pricing-addons-toggle {
        font-size: 12px;
        color: #64748b;
        cursor: pointer;
        border-bottom: 1px solid #e5e7eb;
      }

      .pricing-addons-toggle:hover { color: #0f172a; }

      .pricing-addons-body {
        display: none;
        margin-top: 2px;
        padding: 14px 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: #fff;
      }

      .pricing-addons-body.open { display: block; }

      .addons-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px 24px;
      }

      .addons-section-title {
        font-size: 11px;
        font-weight: 700;
        color: #64748b;
        margin-bottom: 6px;
      }

      .addons-row {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #475569;
        padding: 3px 0;
      }

      .addons-row span:last-child { color: #334155; font-weight: 600; }

      .pricing-note {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 14px 18px;
        font-size: 13px;
        color: #334155;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
      }

      .pricing-note span { color: var(--subtext); }

      @media (min-width: 860px) {
        .pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: start; }
        .addons-cols { grid-template-columns: 1fr 1fr 1fr; }
      }

      /* Språk-toggle */
      .lang-toggle {
        display: flex;
        background: #e2e8f0;
        border-radius: 7px;
        padding: 2px;
        gap: 1px;
        flex-shrink: 0;
      }

      .lang-toggle a {
        font-size: 11px;
        font-weight: 600;
        padding: 3px 8px;
        border-radius: 5px;
        color: #94a3b8;
        background: transparent;
        line-height: 1.4;
        transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
      }

      .lang-toggle a.active {
        background: #f1f5f9 !important;
        color: #334155 !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.10);
      }

      .lang-toggle a:hover:not(.active) {
        color: #64748b;
      }

      @media (max-width: 859px) {
        .lang-toggle-desktop { display: none; }
        .lang-toggle-mobile { display: flex; }
      }

      @media (min-width: 860px) {
        .lang-toggle-mobile { display: none; }
      }
/* ─── Om meg ─── */
.om-meg {
  margin-top: 16px;
}

.om-meg p {
  margin: 0 0 14px;
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
}

.om-meg p:last-child {
  margin-bottom: 0;
}
.faq-top-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 16px;
  align-items: start;
}

@media (min-width: 860px) {
  .faq-top-grid { grid-template-columns: repeat(4, 1fr); }
}

.faq-expand-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  min-height: 140px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  user-select: none;
}

.faq-expand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
  border-color: rgba(15, 23, 42, 0.2);
}

.faq-expand-card.open {
  border-color: var(--accent);
}

.faq-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.faq-card-header h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.faq-card-icon {
  font-size: 13px;
  color: var(--subtext);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.faq-expand-card.open .faq-card-icon {
  transform: rotate(180deg);
}

.faq-teaser {
  margin: 8px 0 0;
  color: var(--subtext);
  font-size: 13px;
  line-height: 1.5;
}

.faq-card-body {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.faq-expand-card.open .faq-card-body {
  display: block;
  animation: fadeSlide 0.25s ease;
}

.faq-card-body p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

/* Mer-knapp */
.faq-more-btn {
  margin-top: 12px;
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--subtext);
  font-family: inherit;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.faq-more-btn:hover {
  background: var(--muted);
  border-color: rgba(15, 23, 42, 0.18);
}

.faq-more-pill {
  font-size: 12px;
  color: #64748b;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
  transition: background 0.18s ease;
}

/* Accordion i mer-seksjonen */
.faq-more-body {
  display: none;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq-more-body.open {
  display: block;
  animation: fadeSlide 0.25s ease;
}

.faq-acc-item {
  border-bottom: 1px solid var(--border);
}

.faq-acc-item:last-child {
  border-bottom: none;
}

.faq-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: background 0.15s ease;
}

.faq-acc-trigger:hover {
  background: var(--muted);
}

.faq-acc-icon {
  font-size: 13px;
  color: var(--subtext);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-acc-item.open .faq-acc-icon {
  transform: rotate(180deg);
}

.faq-acc-body {
  display: none;
  padding: 0 16px 14px;
}

.faq-acc-item.open .faq-acc-body {
  display: block;
  animation: fadeSlide 0.25s ease;
}

.faq-acc-body p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

.faq-acc-body a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Slik jobber vi — tidslinje med loop ─── */
.slik-outer {
  position: relative;
  margin-top: 20px;
  max-width: 500px;
}

.slik-note-wrap {
  max-width: 500px;
}

.slik-svg {
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 100%;
  overflow: visible;
  pointer-events: none;
}

.slik-tl {
  display: flex;
  flex-direction: column;
  padding-left: 44px;
}

.slik-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.slik-node {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: #94a3b8;
  flex-shrink: 0;
  margin-left: -44px;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
  position: relative; z-index: 2;
}

.slik-body {
  padding: 2px 0 26px;
  flex: 1;
}

.slik-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.slik-body p {
  font-size: 13px;
  color: var(--subtext);
  margin: 0;
  line-height: 1.65;
}

.slik-step:last-child .slik-body {
  padding-bottom: 0;
}

@media (max-width: 859px) {
  .slik-outer { max-width: 100%; }
}

@keyframes slik-loop-dash {
  to { stroke-dashoffset: -32; }
}

/* ─── Tjenester + Slik jobber vi — side om side ─── */
.ts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ts-col { min-width: 0; }

.ts-divider {
  padding-left: 48px;
  border-left: 1px solid var(--border);
}

/* 2×2 kortgrid for tjenester */
.grid2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* CTA-linje under slik-tidslinjen */
.slik-cta-line {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.slik-cta-line span {
  font-size: 13px;
  color: var(--subtext);
}

/* Mobil: stable alt, fjern divider */
@media (max-width: 859px) {
  .ts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ts-divider {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
  }
  .grid2x2 {
    grid-template-columns: 1fr;
  }
  .slik-cta-line {
    justify-content: flex-start;
  }
}
