    html {
      scroll-behavior: smooth;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --orange: #E84E1B;
      --black: #0a0a0a;
      --white: #ffffff;
    }

    body {
      font-family: 'IBM Plex Sans', sans-serif;
      background: var(--white);
      color: var(--black);
    }

    /* NAV */
    nav {
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      height: 72px;
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .logo {
      height: 48px;
      width: auto;
      flex-shrink: 0;
      margin-top: 5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: opacity 0.15s;
    }

    .nav-links a:hover {
      opacity: 1;
      color: #E84E1B;
    }

    .nav-links a.active {
      color: var(--orange);
    }

    /* HERO */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      padding: 96px 56px 96px 56px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-text    { grid-column: 1; grid-row: 1; }
    .hero-image-wrap { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    .hero-buttons { grid-column: 1; grid-row: 2; align-self: start; }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .hero-text h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: clamp(40px, 4.5vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .hero-text p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.65;
      color: #1a1a1a;
      max-width: 520px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 17px;
      font-weight: 500;
      padding: 16px 32px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.01em;
      transition: opacity 0.15s;
    }

    .btn:hover {
      opacity: 0.85;
    }

    .btn-orange {
      background: var(--orange);
      color: var(--white);
    }

    .btn-black {
      background: var(--black);
      color: var(--white);
    }

    /* IMAGE */
    .hero-image-wrap {
      position: relative;
    }

    .hero-image-wrap img {
      width: 100%;
      display: block;
      height: auto;
    }

    /* SECTION 2 */
    .section-alt {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      padding: 96px 56px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-image-wrap { grid-column: 1; grid-row: 1 / 3; align-self: center; }
    .section-text       { grid-column: 2; grid-row: 1; }
    .section-buttons    { grid-column: 2; grid-row: 2; align-self: start; }

    .section-image-wrap img {
      width: 100%;
      display: block;
      height: auto;
    }

    .section-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .section-text h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: clamp(36px, 4vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .section-text p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.65;
      color: #1a1a1a;
      max-width: 520px;
    }

    /* SLIDESHOW */
    .slideshow {
      width: 100%;
      background: #fff;
      padding: 108px 0 116px;
    }

    .slideshow-track-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .slideshow-row {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .slide-btn {
      flex-shrink: 0;
      margin-top: 5px;
      background: #fff;
      border: none;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .slide-btn:hover { opacity: 0.7; }
    .slide-btn.clicked line,
    .slide-btn.clicked path { stroke: #E84E1B; }

    .slideshow-main {
      flex: 1;
      overflow: hidden;
    }

    .slideshow-main img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: none;
    }

    .slideshow-main img.active { display: block; }

    .slideshow-thumbs {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .slideshow-thumbs::-webkit-scrollbar { display: none; }

    .slideshow-thumbs img {
      width: 120px;
      height: 78px;
      object-fit: cover;
      cursor: pointer;
      opacity: 0.45;
      transition: opacity 0.2s;
      flex-shrink: 0;
      margin-top: 5px;
    }

    .slideshow-thumbs img.active,
    .slideshow-thumbs img:hover { opacity: 1; }

    @media (max-width: 1024px) {
      .slideshow-track-wrap { padding: 0 32px; }
      .slideshow-main img { height: 340px; }
      .slideshow-thumbs img { width: 90px; height: 60px; }
    }

    @media (max-width: 767px) {
      .slideshow { padding: 32px 0 40px; }
      .slideshow-track-wrap { padding: 0; }
      .slideshow-row { position: relative; gap: 0; }
      .slideshow-main { width: 100%; }
      .slideshow-main img { height: auto; aspect-ratio: 4/3; }
      .slide-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        background: rgba(255, 255, 255, 0.75);
        padding: 12px 14px;
        min-width: 44px;
        min-height: 44px;
      }
      .slide-btn:first-child { left: 0; }
      .slide-btn:last-child  { right: 0; }
      .slide-btn svg { width: 24px; height: 13px; }
      .slideshow-thumbs { padding: 0 6px; }
      .slideshow-thumbs img { width: 66px; height: 44px; }
    }

    /* PRICING */
    .pricing {
      padding: 80px 56px 96px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .pricing h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: clamp(36px, 4vw, 60px);
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 56px;
      color: var(--black);
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .pricing-card {
      padding: 48px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .pricing-card.green {
      background: #C8E600;
    }

    .pricing-card.outline {
      background: var(--white);
      border: 3px solid #C8E600;
    }

    .pricing-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: 44px;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      line-height: 1;
    }

    .pricing-price strong {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 52px;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .pricing-price span {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--black);
    }

    .pricing-subtitle {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--black);
      margin-top: 10px;
      margin-bottom: 16px;
    }

    .dropin-intro-offer {
      margin-top: 4px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .dropin-intro-badge {
      display: none;
    }

    .dropin-intro-offer p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 17px;
      font-weight: 400;
      color: var(--black);
      padding-left: 20px;
      position: relative;
      line-height: 1.5;
    }

    .dropin-intro-offer p::before {
      content: '\25AA\FE0E';
      position: absolute;
      left: 0;
    }

    .pricing-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }

    .pricing-list li {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 17px;
      font-weight: 400;
      color: var(--black);
      padding-left: 20px;
      position: relative;
      line-height: 1.5;
    }

    .pricing-list li::before {
      content: '\25AA\FE0E';
      position: absolute;
      left: 0;
      top: 0;
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal {
      background: #fff;
      width: 100%;
      max-width: 960px;
      max-height: 90vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: #333;
      z-index: 10;
      line-height: 1;
    }

    .modal-close:hover { color: #000; }

    .modal-left {
      background: #C8E600;
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .modal-left-logo-bar {
      background: #fff;
      padding: 16px 32px;
      margin-bottom: 0;
      width: 100%;
      box-sizing: border-box;
    }

    .modal-left-logo {
      height: auto;
      width: auto;
      max-height: 52px;
      max-width: 200px;
      object-fit: contain;
      display: block;
    }

    .modal-left-card {
      background: #fff;
      padding: 28px 32px 32px;
      margin: 24px 24px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .modal-left-card h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: 36px;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .modal-left-card .modal-subtitle {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: var(--black);
      margin-top: -8px;
    }

    .modal-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 4px;
    }

    .modal-list li {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      color: var(--black);
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
    }

    .modal-list li::before {
      content: '–';
      position: absolute;
      left: 0;
    }

    .modal-divider {
      border: none;
      border-top: 2px solid #C8E600;
      margin: 8px 0;
    }

    .modal-pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
    }

    .modal-pricing-row span:first-child {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      color: var(--black);
      white-space: nowrap;
    }

    .modal-pricing-row span:last-child {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--black);
      white-space: nowrap;
    }

    .modal-pricing-row.small span:last-child {
      font-weight: 400;
      font-size: 15px;
      font-family: 'IBM Plex Sans', sans-serif;
    }

    .modal-right {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      justify-content: center;
    }

    .modal-right h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 400;
      font-size: 32px;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .modal-right p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      line-height: 1.65;
      color: #444;
    }

    .modal-vipps {
      display: block;
      width: 100%;
      max-width: 320px;
    }

    .modal-personvern {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      color: #4a7fc1;
      text-decoration: none;
    }

    .modal-personvern:hover { text-decoration: underline; }

    @media (max-width: 767px) {
      .modal { grid-template-columns: 1fr; }
      .modal-left { padding: 0; }
      .modal-left-card { margin: 16px 16px 24px; }
      .modal-right { padding: 32px 24px; }
    }

    /* BOOKING MODAL */
    .booking-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: #C8E600;
      z-index: 1000;
      align-items: flex-start;
      justify-content: center;
      overflow-y: auto;
      padding: 32px 16px;
    }

    .booking-card {
      background: #fff;
      width: 100%;
      max-width: 560px;
      padding: 40px;
      position: relative;
    }

    .booking-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: #333;
      line-height: 1;
    }

    .booking-logo {
      height: auto;
      width: auto;
      max-height: 56px;
      max-width: 180px;
      object-fit: contain;
      margin-bottom: 32px;
    }

    .booking-label {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #555;
      margin-bottom: 8px;
    }

    .booking-select {
      width: 100%;
      padding: 14px 16px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 16px;
      border: 3px solid #C8E600;
      background: #fff;
      color: var(--black);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8 9L15 1' stroke='%230d0d2e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      cursor: pointer;
      margin-bottom: 12px;
    }

    .booking-select:focus {
      outline: none;
      border-color: #E84E1B;
    }

    .booking-rabatt {
      background: #C8E600;
      padding: 14px 16px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--black);
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: left;
      margin-bottom: 32px;
    }

    .booking-rabatt-input {
      display: none;
      padding: 12px 16px 0;
    }

    .booking-rabatt-input input {
      width: 100%;
      border: 2px solid #C8E600;
      padding: 10px 14px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      outline: none;
    }

    .booking-rabatt-input input:focus {
      border-color: #E84E1B;
    }

    /* CALENDAR */
    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .cal-header h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: 22px;
      color: var(--black);
    }

    .cal-nav {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 4px;
      transition: opacity 0.15s;
    }
    .cal-nav:hover { opacity: 0.5; }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .cal-dow {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 12px;
      color: #999;
      text-align: center;
      padding: 4px 0 8px;
    }

    .cal-day {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      text-align: center;
      padding: 10px 4px;
      cursor: pointer;
      border-radius: 2px;
      color: var(--black);
      border: none;
      background: none;
      transition: background 0.15s;
    }

    .cal-day:hover:not(.inactive):not(.selected) {
      background: #f0f0f0;
    }

    .cal-day.inactive {
      color: #ccc;
      cursor: default;
    }

    .cal-day.today {
      font-weight: 700;
    }

    .cal-day.selected {
      background: #E84E1B;
      color: #fff;
      font-weight: 600;
    }

    /* TIME SLOTS */
    .timeslots {
      margin-top: 28px;
      border-top: 2px solid #f0f0f0;
      padding-top: 20px;
    }

    .timeslots-label {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #555;
      margin-bottom: 12px;
    }

    .timeslots-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .timeslot {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      padding: 8px 16px;
      border: 2px solid #e0e0e0;
      background: none;
      cursor: pointer;
      color: var(--black);
      transition: all 0.15s;
    }

    .timeslot:hover { border-color: #C8E600; }
    .timeslot.selected { border-color: #E84E1B; background: #E84E1B; color: #fff; }
    .timeslot.unavailable { color: #ccc; border-color: #f0f0f0; cursor: default; text-decoration: line-through; }

    .booking-confirm {
      margin-top: 24px;
      width: 100%;
      background: var(--black);
      color: #fff;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      padding: 16px;
      border: none;
      cursor: pointer;
      display: none;
      transition: opacity 0.15s;
    }
    .booking-confirm:hover { opacity: 0.8; }
    .booking-confirm.visible { display: block; }

    /* FOOTER */
    footer {
      background: #9B8CE8;
      padding: 64px 56px 40px;
      margin-top: 48px;
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }

    .footer-contact h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: clamp(32px, 3.5vw, 52px);
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 16px;
    }

    .footer-contact p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--black);
      line-height: 1.7;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 48px;
      justify-self: end;
      text-align: right;
    }

    .footer-link-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer-link-group a {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--black);
      text-decoration: none;
      line-height: 1.6;
      transition: opacity 0.15s;
    }

    .footer-link-group a:hover {
      opacity: 1;
      color: #C8E600;
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 56px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(0,0,0,0.15);
    }

    .footer-bottom p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--black);
      opacity: 0.7;
    }

    /* HAMBURGER */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: opacity 0.2s;
    }

    /* TABLET — iPad (≤1024px) */
    @media (max-width: 1024px) {
      nav {
        padding: 0 32px;
      }

      .nav-links {
        gap: 24px;
      }

      .nav-links a {
        font-size: 14px;
      }

      .hero,
      .section-alt {
        gap: 40px;
        padding: 64px 32px;
      }

      .pricing-card {
        padding: 36px;
      }
    }

    /* TABLET (≤900px) */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { gap: 16px; }
      .nav-links a { font-size: 13px; }
      .hero, .section-alt { flex-direction: column; padding: 48px 32px; gap: 32px; }
      .pricing-cards { gap: 16px; }
    }

    /* MOBILE (≤767px) */
    @media (max-width: 767px) {
      nav {
        padding: 0 20px;
        height: 64px;
        position: sticky;
      }

      .logo {
        height: 38px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 8px 0 16px;
        z-index: 100;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
      }

      .hero,
      .section-alt {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 20px;
      }

      /* reset explicit grid placement so items stack in DOM order */
      .hero-text, .hero-image-wrap, .hero-buttons,
      .section-image-wrap, .section-text, .section-buttons {
        grid-column: auto;
        grid-row: auto;
      }

      /* section-alt mobile: text → image → button */
      .section-text       { order: 1; }
      .section-image-wrap { order: 2; }
      .section-buttons    { order: 3; }

      .hero-text h1 {
        font-size: 36px;
      }

      .section-text h2,
      .pricing h2 {
        font-size: 32px;
      }

      .pricing {
        padding: 48px 20px 64px;
      }

      .pricing-cards,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      footer {
        padding: 48px 20px 32px;
        margin-top: 32px;
      }

      .footer-contact h3 {
        font-size: 32px;
      }

      .footer-link-group a {
        font-size: 18px;
      }

      .pricing-card {
        padding: 32px;
      }

      .pricing-card h3 {
        font-size: 36px;
      }

      .pricing-price strong {
        font-size: 42px;
      }

      .hero-text p,
      .section-text p {
        font-size: 16px;
        max-width: 100%;
      }

      .btn {
        font-size: 16px;
        padding: 14px 28px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-buttons .btn {
        width: 100%;
        text-align: center;
      }

      .footer-links {
        justify-self: start;
        text-align: left;
      }

      .booking-card {
        padding: 24px 16px;
      }
    }

    /* KURS MODAL */
    .kurs-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 1000;
      overflow-y: auto;
      padding: 40px 24px 60px;
      -webkit-overflow-scrolling: touch;
    }

    .kurs-overlay.open { display: block; }

    .kurs-card {
      background: #fff;
      max-width: 680px;
      margin: 0 auto;
      position: relative;
    }

    .kurs-card__header {
      background: var(--black);
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .kurs-card__logo {
      height: 36px;
      width: auto;
    }

    .kurs-card__close {
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      opacity: 0.7;
      transition: opacity 0.15s;
    }

    .kurs-card__close:hover { opacity: 1; }

    .kurs-card__body {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .kurs-section {
      padding: 32px 0;
      border-bottom: 2px solid #f0f0f0;
    }

    .kurs-section:first-child { padding-top: 0; }
    .kurs-section:last-child { border-bottom: none; padding-bottom: 0; }

    .kurs-section__tag {
      display: inline-block;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      margin-bottom: 16px;
    }

    .kurs-section__tag--green { background: #C8E600; color: var(--black); }
    .kurs-section__tag--orange { background: var(--orange); color: #fff; }
    .kurs-section__tag--purple { background: #9B8CE8; color: #fff; }

    .kurs-section h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 500;
      font-size: 28px;
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 12px;
    }

    .kurs-section p {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: #444;
      margin-bottom: 20px;
    }

    .kurs-section p:last-of-type { margin-bottom: 0; }

    .kurs-section__link {
      display: inline-block;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      border-bottom: 2px solid #C8E600;
      padding-bottom: 2px;
      margin-top: 16px;
      transition: border-color 0.15s;
    }

    .kurs-section__link:hover { border-color: var(--orange); }

    @media (max-width: 767px) {
      .kurs-overlay { padding: 20px 12px 48px; }
      .kurs-card__header { padding: 20px 24px; }
      .kurs-card__body { padding: 32px 24px; }
      .kurs-section h3 { font-size: 22px; }
    }

    @media (max-width: 400px) {
      .hero-text h1 {
        font-size: 28px;
      }

      .pricing-card h3 {
        font-size: 28px;
      }

      .pricing-price strong {
        font-size: 34px;
      }
    }
