body.netn-bransje-treningssenter-og-personlig-trener { margin: 0; }

:root {
      --netn-bg: #0d0e12;
      --netn-bg-card: #16181f;
      --netn-bg-card-hover: #1f222b;
      --netn-primary: #ff5a1f; /* Kinetic Athletic Orange */
      --netn-primary-hover: #e04a15;
      --netn-primary-rgb: 255, 90, 31;
      --netn-text: #ffffff;
      --netn-text-muted: #a0a5b1;
      --netn-border: #232731;
      --netn-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --netn-max-width: 80rem;
      --netn-header-height: 80px;
    }

    /* Reset & Base Styles */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      background-color: var(--netn-bg);
      color: var(--netn-text);
      font-family: var(--netn-font);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Skip Link for A11y */
    .netn-skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      background: var(--netn-primary);
      color: #000000;
      font-weight: bold;
      padding: 12px 24px;
      z-index: 10000;
      text-decoration: none;
      border-radius: 4px;
      transition: top 0.2s ease;
    }

    .netn-skip-link:focus {
      top: 20px;
    }

    /* Loader */
    .netn-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--netn-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .netn-loader.netn-hidden {
      opacity: 0;
      visibility: hidden;
    }

    .netn-loader-logo {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--netn-text);
      margin-bottom: 20px;
    }

    .netn-loader-logo span {
      color: var(--netn-primary);
    }

    .netn-loader-bar {
      width: 140px;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .netn-loader-progress {
      position: absolute;
      height: 100%;
      width: 50%;
      background: var(--netn-primary);
      animation: netn-loading-anim 1s infinite ease-in-out;
      border-radius: 2px;
    }

    @keyframes netn-loading-anim {
      0% { left: -50%; }
      100% { left: 100%; }
    }

    /* Typography & Global Elements */
    h1, h2, h3, h4 {
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    p {
      color: var(--netn-text-muted);
      font-size: 1.05rem;
    }

    .netn-container {
      width: 100%;
      max-width: var(--netn-max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .netn-section {
      padding: 100px 0;
      position: relative;
    }

    .netn-section-alt {
      background-color: var(--netn-bg-card);
    }

    .netn-badge {
      display: inline-block;
      padding: 6px 12px;
      background: rgba(var(--netn-primary-rgb), 0.1);
      color: var(--netn-primary);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 4px;
      margin-bottom: 16px;
      border: 1px solid rgba(var(--netn-primary-rgb), 0.2);
    }

    /* Buttons */
    .netn-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }

    .netn-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 6px;
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
      min-height: 48px;
      text-align: center;
      border: none;
    }

    .netn-btn-primary {
      background-color: var(--netn-primary);
      color: #000000;
    }

    .netn-btn-primary:hover {
      background-color: var(--netn-primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(var(--netn-primary-rgb), 0.2);
    }

    .netn-btn-secondary {
      background-color: transparent;
      color: var(--netn-text);
      border: 2px solid var(--netn-border);
    }

    .netn-btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.05);
      border-color: var(--netn-text-muted);
      transform: translateY(-2px);
    }

    .netn-btn:focus-visible {
      outline: 3px solid var(--netn-primary);
      outline-offset: 2px;
    }

    /* Header & Navigation */
    .netn-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--netn-header-height);
      background-color: rgba(13, 14, 18, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--netn-border);
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    .netn-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .netn-logo {
      font-size: 1.75rem;
      font-weight: 900;
      text-decoration: none;
      color: var(--netn-text);
      letter-spacing: -0.05em;
    }

    .netn-logo span {
      color: var(--netn-primary);
    }

    .netn-nav {
      display: none;
    }

    @media (min-width: 992px) {
      .netn-nav {
        display: flex;
        align-items: center;
        gap: 32px;
      }
    }

    .netn-nav-link {
      color: var(--netn-text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s ease;
      position: relative;
      padding: 8px 0;
    }

    .netn-nav-link:hover, .netn-nav-link.netn-active {
      color: var(--netn-text);
    }

    .netn-nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--netn-primary);
      transition: width 0.2s ease;
    }

    .netn-nav-link:hover::after, .netn-nav-link.netn-active::after {
      width: 100%;
    }

    /* Burger Button */
    .netn-burger-btn {
      background: none;
      border: none;
      cursor: pointer;
      width: 48px;
      height: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 6px;
      padding: 10px;
      z-index: 1002;
      position: relative;
    }

    @media (min-width: 992px) {
      .netn-burger-btn {
        display: none;
      }
    }

    .netn-burger-bar {
      height: 2px;
      background-color: var(--netn-text);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease;
    }

    .netn-burger-bar-1 { width: 28px; }
    .netn-burger-bar-2 { width: 20px; }
    .netn-burger-bar-3 { width: 24px; }

    .netn-burger-btn[aria-expanded="true"] .netn-burger-bar-1 {
      transform: translateY(8px) rotate(45deg);
      width: 28px;
    }

    .netn-burger-btn[aria-expanded="true"] .netn-burger-bar-2 {
      opacity: 0;
      width: 0;
    }

    .netn-burger-btn[aria-expanded="true"] .netn-burger-bar-3 {
      transform: translateY(-8px) rotate(-45deg);
      width: 28px;
    }

    /* Mobile Menu */
    .netn-mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      height: 100vh;
      background-color: var(--netn-bg-card);
      z-index: 1001;
      padding: 100px 40px 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      box-shadow: -10px 0 30px rgba(0,0,0,0.5);
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      overflow-y: auto;
    }

    .netn-mobile-menu.netn-open {
      right: 0;
    }

    .netn-mobile-nav-link {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--netn-text);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid var(--netn-border);
      transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .netn-mobile-nav-link:hover {
      color: var(--netn-primary);
      padding-left: 8px;
    }

    /* Hero Section — gym atmosphere */
    .netn-hero {
      min-height: 100vh;
      padding-top: calc(var(--netn-header-height) + 60px);
      padding-bottom: 80px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background-color: var(--netn-bg);
    }

    .netn-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(
          105deg,
          rgba(13, 14, 18, 0.96) 0%,
          rgba(13, 14, 18, 0.88) 42%,
          rgba(13, 14, 18, 0.62) 72%,
          rgba(13, 14, 18, 0.78) 100%
        ),
        radial-gradient(
          ellipse 55% 45% at 85% 35%,
          rgba(255, 90, 31, 0.18) 0%,
          transparent 65%
        ),
        radial-gradient(
          ellipse 40% 50% at 10% 90%,
          rgba(255, 90, 31, 0.08) 0%,
          transparent 55%
        ),
        url('images/treningssenter-hero-bg.webp') center / cover no-repeat;
      transform: scale(1.02);
    }

    .netn-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(to top, rgba(13, 14, 18, 0.55) 0%, transparent 28%),
        linear-gradient(to bottom, rgba(13, 14, 18, 0.35) 0%, transparent 18%);
      opacity: 0.9;
    }

    .netn-hero > .netn-container {
      position: relative;
      z-index: 1;
    }

    .netn-hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (min-width: 992px) {
      .netn-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
      }
    }

    .netn-hero-content {
      position: relative;
      z-index: 2;
    }

    .netn-hero-title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin-bottom: 24px;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    }

    .netn-hero-title span {
      background: linear-gradient(135deg, #ffffff 30%, var(--netn-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .netn-hero-desc {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      margin-bottom: 32px;
      max-width: 600px;
      color: rgba(255, 255, 255, 0.82);
    }

    /* Asymmetric Visual Element in Hero */
    .netn-hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 16px 16px 36px 36px;
    }

    .netn-hero-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 450px;
      aspect-ratio: 4/5;
      border-radius: 12px;
      overflow: hidden;
      box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 90, 31, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .netn-hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      display: block;
    }

    .netn-hero-badge-float {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(22, 24, 31, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 90, 31, 0.35);
      padding: 14px 16px;
      border-radius: 10px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3;
      max-width: calc(100% - 24px);
    }

    .netn-hero-badge-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(var(--netn-primary-rgb), 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--netn-primary);
      font-weight: bold;
    }

    .netn-hero-badge-text h4 {
      font-size: 0.95rem;
      color: #ffffff;
    }

    .netn-hero-badge-text p {
      font-size: 0.8rem;
      color: var(--netn-text-muted);
    }

    @media (max-width: 991px) {
      .netn-hero::before {
        background:
          linear-gradient(
            180deg,
            rgba(13, 14, 18, 0.92) 0%,
            rgba(13, 14, 18, 0.78) 45%,
            rgba(13, 14, 18, 0.9) 100%
          ),
          radial-gradient(
            ellipse 70% 40% at 50% 0%,
            rgba(255, 90, 31, 0.14) 0%,
            transparent 60%
          ),
          url('images/treningssenter-hero-bg.webp') center / cover no-repeat;
      }

      .netn-hero-visual {
        padding: 8px 8px 28px 20px;
        max-width: 420px;
        margin: 0 auto;
      }

      .netn-hero-badge-float {
        left: 4px;
        bottom: 4px;
        padding: 12px 14px;
      }
    }

    @media (max-width: 480px) {
      .netn-hero {
        min-height: auto;
        padding-bottom: 56px;
      }

      .netn-hero-visual {
        padding: 0 0 24px 12px;
      }

      .netn-hero-badge-float {
        left: 0;
        bottom: 0;
        padding: 10px 12px;
        gap: 10px;
      }

      .netn-hero-badge-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
      }

      .netn-hero-badge-text h4 {
        font-size: 0.85rem;
      }

      .netn-hero-badge-text p {
        font-size: 0.75rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .netn-hero::before {
        transform: none;
      }
    }

    /* Value Prop / Verdiforklaring */
    .netn-section-title-wrap {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .netn-section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      margin-bottom: 20px;
    }

    .netn-section-title span {
      color: var(--netn-primary);
    }

    .netn-value-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .netn-value-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .netn-value-card {
      background-color: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      padding: 40px 32px;
      border-radius: 8px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .netn-value-card:hover {
      transform: translateY(-8px);
      border-color: rgba(var(--netn-primary-rgb), 0.3);
    }

    .netn-value-icon {
      font-size: 2.5rem;
      margin-bottom: 24px;
      display: block;
    }

    .netn-value-card h3 {
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    /* Challenges Section */
    .netn-challenges-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (min-width: 992px) {
      .netn-challenges-grid {
        grid-template-columns: 1fr 1.1fr;
      }
    }

    .netn-challenges-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 32px;
    }

    .netn-challenge-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .netn-challenge-num {
      font-weight: 900;
      font-size: 1.25rem;
      color: var(--netn-primary);
      background: rgba(var(--netn-primary-rgb), 0.1);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .netn-challenge-text h4 {
      font-size: 1.15rem;
      margin-bottom: 4px;
    }

    .netn-challenges-image-wrap {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--netn-border);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      aspect-ratio: 16/10;
    }

    .netn-challenges-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Services Section */
    .netn-services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .netn-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .netn-service-card {
      background-color: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      border-radius: 8px;
      padding: 40px;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .netn-service-card:hover {
      background-color: var(--netn-bg-card-hover);
      border-color: var(--netn-primary);
    }

    .netn-service-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .netn-service-icon {
      font-size: 2rem;
    }

    .netn-service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .netn-service-list {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .netn-service-list li {
      position: relative;
      padding-left: 24px;
      font-size: 0.95rem;
      color: var(--netn-text-muted);
    }

    .netn-service-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--netn-primary);
      font-weight: bold;
    }

    /* Interactive Simulator Seksjon */
    .netn-simulator-box {
      background: radial-gradient(circle at top left, #1a1e26, var(--netn-bg-card));
      border: 1px solid var(--netn-border);
      border-radius: 16px;
      padding: clamp(24px, 5vw, 60px);
      box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    }

    .netn-sim-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 992px) {
      .netn-sim-grid {
        grid-template-columns: 1fr 1.2fr;
      }
    }

    .netn-mockup-phone {
      background: #000000;
      border: 12px solid #1a1a1a;
      border-radius: 36px;
      max-width: 320px;
      margin: 0 auto;
      aspect-ratio: 9/19;
      box-shadow: 0 30px 60px rgba(0,0,0,0.8);
      overflow: hidden;
      position: relative;
    }

    .netn-phone-screen {
      height: 100%;
      background: #0d0f12;
      display: flex;
      flex-direction: column;
      padding: 16px;
    }

    .netn-phone-header {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--netn-text-muted);
      margin-bottom: 24px;
      font-weight: bold;
    }

    .netn-phone-app {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .netn-phone-card {
      background: #1a1d24;
      border: 1px solid #2e3440;
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .netn-phone-pt-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 0 auto 12px;
      background: #ff5a1f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      border: 2px solid #fff;
    }

    .netn-phone-pt-name {
      font-size: 1rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 4px;
    }

    .netn-phone-pt-title {
      font-size: 0.75rem;
      color: var(--netn-primary);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .netn-phone-slots {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 16px;
    }

    .netn-phone-slot {
      background: #0d0f12;
      border: 1px solid #2e3440;
      padding: 6px;
      font-size: 0.75rem;
      border-radius: 4px;
      color: #fff;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .netn-phone-slot.netn-selected {
      background: var(--netn-primary);
      color: #000;
      border-color: var(--netn-primary);
      font-weight: bold;
    }

    .netn-phone-btn {
      width: 100%;
      padding: 10px;
      background: var(--netn-primary);
      color: #000;
      border: none;
      font-weight: bold;
      border-radius: 6px;
      font-size: 0.85rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .netn-phone-btn:hover {
      background-color: var(--netn-primary-hover);
    }

    .netn-phone-success {
      display: none;
      text-align: center;
      padding: 24px 12px;
    }

    .netn-phone-success-icon {
      font-size: 3rem;
      color: #4caf50;
      margin-bottom: 16px;
    }

    /* Process Section */
    .netn-process-timeline {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 60px;
    }

    @media (min-width: 768px) {
      .netn-process-timeline {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .netn-process-card {
      background: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      border-radius: 8px;
      padding: 32px;
      position: relative;
    }

    .netn-process-step {
      font-size: 3rem;
      font-weight: 900;
      color: rgba(var(--netn-primary-rgb), 0.1);
      position: absolute;
      top: 16px;
      right: 24px;
      line-height: 1;
    }

    .netn-process-card h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
      margin-top: 16px;
    }

    /* FAQ Seksjon (Accordion) */
    .netn-faq-wrapper {
      max-width: 800px;
      margin: 0 auto;
    }

    .netn-faq-item {
      background-color: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      border-radius: 8px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .netn-faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 24px;
      text-align: left;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--netn-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .netn-faq-icon {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      color: var(--netn-primary);
    }

    .netn-faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      padding: 0 24px;
    }

    .netn-faq-content p {
      padding-bottom: 24px;
    }

    .netn-faq-item.netn-active .netn-faq-content {
      max-height: 1000px;
      transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    }

    .netn-faq-item.netn-active .netn-faq-icon {
      transform: rotate(45deg);
    }

    /* Contact Section & WordPress Form */
    .netn-contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }

    @media (min-width: 992px) {
      .netn-contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
      }
    }

    .netn-contact-info h3 {
      font-size: 1.75rem;
      margin-bottom: 16px;
    }

    .netn-contact-methods {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .netn-contact-method-card {
      background: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      color: var(--netn-text);
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .netn-contact-method-card:hover {
      border-color: var(--netn-primary);
      transform: translateX(4px);
    }

    .netn-contact-method-icon {
      width: 48px;
      height: 48px;
      background: rgba(var(--netn-primary-rgb), 0.1);
      color: var(--netn-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .netn-contact-method-details h4 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--netn-text-muted);
    }

    .netn-contact-method-details p {
      font-size: 1.1rem;
      color: #fff;
      font-weight: 700;
    }

    /* Form Styles */
    .netn-contact-form-wrap {
      background: var(--netn-bg-card);
      border: 1px solid var(--netn-border);
      padding: 40px;
      border-radius: 12px;
    }

    .netn-form-group {
      margin-bottom: 24px;
    }

    .netn-form-label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--netn-text);
    }

    .netn-form-input, .netn-form-textarea {
      width: 100%;
      background: var(--netn-bg);
      border: 1px solid var(--netn-border);
      border-radius: 6px;
      padding: 14px 18px;
      font-size: 1rem;
      color: #fff;
      font-family: var(--netn-font);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .netn-form-input:focus, .netn-form-textarea:focus {
      outline: none;
      border-color: var(--netn-primary);
      box-shadow: 0 0 0 3px rgba(var(--netn-primary-rgb), 0.15);
    }

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

    .netn-privacy-note {
      font-size: 0.8rem;
      color: var(--netn-text-muted);
      margin-bottom: 24px;
    }

    .netn-form-feedback {
      padding: 16px;
      border-radius: 6px;
      margin-top: 16px;
      display: none;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .netn-form-feedback.netn-success {
      display: block;
      background: rgba(76, 175, 80, 0.1);
      color: #4caf50;
      border: 1px solid rgba(76, 175, 80, 0.2);
    }

    .netn-form-feedback.netn-error {
      display: block;
      background: rgba(244, 67, 54, 0.1);
      color: #f44336;
      border: 1px solid rgba(244, 67, 54, 0.2);
    }

    /* Footer */
    .netn-footer {
      background-color: #07080a;
      border-top: 1px solid var(--netn-border);
      padding: 48px 0 28px;
    }

    .netn-footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .netn-footer-brand .netn-logo {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .netn-footer-brand p {
      margin: 12px 0 0;
      max-width: 34ch;
      font-size: 0.9rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.55);
    }

    .netn-footer-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 16px;
    }

    .netn-footer-title {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin: 0 0 14px;
      color: rgba(255, 255, 255, 0.9);
    }

    .netn-footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .netn-footer-links a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.9rem;
      line-height: 1.4;
      transition: color 0.2s ease;
    }

    .netn-footer-links a:hover {
      color: var(--netn-primary, #ff5a1f);
    }

    .netn-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 18px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 6px;
    }

    .netn-footer-copy,
    .netn-footer-meta {
      margin: 0;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.4);
    }

    @media (min-width: 768px) {
      .netn-footer {
        padding: 64px 0 32px;
      }

      .netn-footer-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 48px;
        margin-bottom: 36px;
        align-items: start;
      }

      .netn-footer-cols {
        gap: 32px;
      }

      .netn-footer-bottom {
        flex-direction: row;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .netn-footer {
        padding: 36px 0 24px;
      }

      .netn-footer-brand p {
        max-width: none;
      }

      .netn-footer-cols {
        gap: 16px 12px;
      }

      .netn-footer-links {
        gap: 6px;
      }

      .netn-footer-links a {
        font-size: 0.85rem;
      }
    }

    /* Reduce Motion Media Query */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .netn-loader {
        display: none !important;
      }
    }

/* NETN bransje fixes */
.netn-tspt-root a[class*="btn-primary"],
.netn-tspt-root a[class*="btn-header"],
.netn-tspt-root button[class*="btn-primary"],
.netn-tspt-root .netn-faq-btn-primary {
  color: #fff !important;
}
.netn-tspt-root footer h3, .netn-tspt-root footer h4,
.netn-tspt-root [class*="footer"] h3, .netn-tspt-root [class*="footer"] h4 {
  color: #fff;
}
.netn-tspt-root [class*="footer"] p { color: rgba(255,255,255,0.6); }
.netn-tspt-root [class*="footer"] a { color: rgba(255,255,255,0.6); }
.netn-tspt-root [class*="footer"] a:hover { color: var(--netn-primary, #ff5a1f); }
.netn-tspt-root [class*="form-grid"] > [class*="field"] + [class*="field"],
.netn-tspt-root [class*="form-grid"] > [class*="input-group"] + [class*="input-group"],
.netn-tspt-root [class*="form-grid"] > [class*="form-group"] + [class*="form-group"] {
  margin-top: 0;
}
@media (max-width: 767px) {
  .netn-tspt-root input, .netn-tspt-root select, .netn-tspt-root textarea {
    font-size: 16px !important;
    min-height: 44px;
  }
  /* Only the button — never .netn-burger-bar (would become 3 big squares) */
  .netn-tspt-root button.netn-burger-btn,
  .netn-tspt-root button[class*="menu-toggle"] {
    min-width: 44px;
    min-height: 44px;
  }
}
.netn-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--netn-text);
  z-index: 1002;
  padding: 0;
  border-radius: 50%;
  transition: color 0.2s ease;
}
.netn-mobile-close:hover,
.netn-mobile-close:focus-visible {
  color: var(--netn-primary);
  outline: 2px solid var(--netn-primary);
  outline-offset: 2px;
}
.netn-mobile-close svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}
body.netn-menu-open {
  overflow: hidden;
}
body.netn-menu-open .netn-burger-btn {
  position: relative;
  z-index: 1002;
}
@media (min-width: 992px) {
  .netn-mobile-menu {
    display: none !important;
  }
}
