/* term-references.css */
.term-reference {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 59, 120, .35);
  text-underline-offset: 3px;
}

.term-reference:hover {
  color: #001f3f;
  text-decoration-color: var(--yellow);
}

.term-card.is-term-target,
.term-card:target {
  background: #eaf4ff;
  border-color: #9cccf7;
  box-shadow: 0 18px 45px rgba(0, 92, 180, .14);
  scroll-margin-top: 130px;
}

.term-card.is-term-target h3,
.term-card.is-term-target p,
.term-card:target h3,
.term-card:target p {
  color: #001f3f;
}

/* Inline CSS from index.html */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
      transition: .2s ease;
    }

    a.benefit {
      color: white;
      cursor: pointer;
    }

    a.benefit:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 50px rgba(0, 31, 63, .34);
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 220px;
      height: auto;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      cursor: pointer;
      transition: .2s ease;
    }

    .product-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      max-height: min(86vh, 920px);
      overflow: auto;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 62px;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-modal-close {
      position: fixed;
      top: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .product-modal-terms {
      position: fixed;
      bottom: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-type.is-hidden {
      display: none;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 10px;
      line-height: 1;
      vertical-align: -0.1em;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 10px;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

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

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head { align-items: center; }
      .product-modal-close {
        top: 38px;
        right: 38px;
      }
      .product-modal-terms {
        bottom: 38px;
        right: 38px;
      }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      height: auto;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from kapcsolat/uzenetek.php */
body {
            font-family: Arial, sans-serif;
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
            color: #111;
            background: #f5f5f5;
        }

        h1 { margin-bottom: 24px; }

        a {
            color: #003b78;
            font-weight: bold;
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .box {
            background: white;
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0,0,0,.08);
        }

        .message-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .message-list li {
            padding: 12px 0;
            border-bottom: 1px solid #ddd;
        }

        .message-id {
            color: #777;
            font-size: 13px;
        }

        pre {
            white-space: pre-wrap;
            word-wrap: break-word;
            background: #f0f2f5;
            padding: 18px;
            border-radius: 8px;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 8px;
        }

        .back {
            display: inline-block;
            margin-bottom: 18px;
        }

/* Inline CSS from kapcsolat.html */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 220px;
      height: auto;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      cursor: pointer;
      transition: .2s ease;
    }

    .product-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      max-height: min(86vh, 920px);
      overflow: auto;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 62px;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-modal-close {
      position: fixed;
      top: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .product-modal-terms {
      position: fixed;
      bottom: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-type.is-hidden {
      display: none;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-login-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0 0 18px;
    }

    .social-login-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: fit-content;
      padding: 12px 18px;
      border: 0;
      border-radius: 7px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      transition: .2s ease;
    }

    .social-login-button:hover {
      transform: translateY(-1px);
    }

    .google-login {
      background: white;
      color: #1f2937;
      border: 1px solid #d7dde6;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    }

    .google-login-mark {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 7px;
      font-weight: 900;
      line-height: 1;
    }

    .google-login-mark {
      background:
        linear-gradient(90deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
      color: white;
    }

    .social-login-note {
      margin: -4px 0 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list > div {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      align-items: center;
      column-gap: 0;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 0;
      line-height: 1;
      vertical-align: middle;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .hours-icon {
      width: 1.3em;
      height: 1em;
      margin-right: 0;
      vertical-align: middle;
    }

    .contact-list .hours-icon img {
      width: 1em;
      height: 1em;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(140%) drop-shadow(0 0 .45px var(--yellow)) drop-shadow(0 0 .45px var(--yellow));
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 0;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    .form-message {
      padding: 14px 16px;
      margin-bottom: 16px;
      border-radius: 7px;
      background: #e9f8ee;
      color: #146c2e;
      font-weight: 800;
    }


    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

    .required-field {
      position: relative;
    }

    .required-field input {
      padding-right: 34px;
    }

    .required-star {
      position: absolute;
      top: 13px;
      right: 15px;
      color: #d60000;
      font-size: 18px;
      font-weight: 900;
      line-height: 1;
      pointer-events: none;
    }

    .contact-rule {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      margin: -6px 0 16px;
    }

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

    textarea + .optional-note {
      margin: -9px 0 16px;
    }

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .optional-note {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 7px;
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    form .btn .btn-icon {
      width: 1.32em;
      height: 1.32em;
      flex-basis: 1.32em;
      margin-left: 2px;
    }

    form .btn .btn-icon img {
      width: 1.32em;
      height: 1.32em;
      filter: drop-shadow(0 0 .45px #111) drop-shadow(0 0 .45px #111);
    }

    /* submit-sent-state-v1 */
    form .btn.is-sent {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(0, 59, 120, .28);
    }

    form .btn.is-sent .btn-icon {
      display: none;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head { align-items: center; }
      .product-modal-close {
        top: 38px;
        right: 38px;
      }
      .product-modal-terms {
        bottom: 38px;
        right: 38px;
      }
      .social-login-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      height: auto;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from kapcsolat.php */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 220px;
      height: auto;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      cursor: pointer;
      transition: .2s ease;
    }

    .product-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      max-height: min(86vh, 920px);
      overflow: auto;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 62px;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-modal-close {
      position: fixed;
      top: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .product-modal-terms {
      position: fixed;
      bottom: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-type.is-hidden {
      display: none;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-list > div {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      align-items: center;
      column-gap: 0;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 0;
      line-height: 1;
      vertical-align: middle;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .hours-icon {
      width: 1.3em;
      height: 1em;
      margin-right: 0;
      vertical-align: middle;
    }

    .contact-list .hours-icon img {
      width: 1em;
      height: 1em;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(140%) drop-shadow(0 0 .45px var(--yellow)) drop-shadow(0 0 .45px var(--yellow));
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 0;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    .form-message {
      padding: 14px 16px;
      margin-bottom: 16px;
      border-radius: 7px;
      background: #e9f8ee;
      color: #146c2e;
      font-weight: 800;
    }


    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

    .required-field {
      position: relative;
    }

    .required-field input {
      padding-right: 34px;
    }

    .required-star {
      position: absolute;
      top: 13px;
      right: 15px;
      color: #d60000;
      font-size: 18px;
      font-weight: 900;
      line-height: 1;
      pointer-events: none;
    }

    .contact-rule {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      margin: -6px 0 16px;
    }

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

    textarea + .optional-note {
      margin: -9px 0 16px;
    }

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .optional-note {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 7px;
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    form .btn .btn-icon {
      width: 1.32em;
      height: 1.32em;
      flex-basis: 1.32em;
      margin-left: 2px;
    }

    form .btn .btn-icon img {
      width: 1.32em;
      height: 1.32em;
      filter: drop-shadow(0 0 .45px #111) drop-shadow(0 0 .45px #111);
    }

    /* submit-sent-state-v1 */
    form .btn.is-sent {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(0, 59, 120, .28);
    }

    form .btn.is-sent .btn-icon {
      display: none;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head { align-items: center; }
      .product-modal-close {
        top: 38px;
        right: 38px;
      }
      .product-modal-terms {
        bottom: 38px;
        right: 38px;
      }
      .social-login-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from keszulekek.html */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    body.modal-open .topbar {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: none;
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .topbar > .btn {
      box-shadow: 0 18px 34px rgba(0, 0, 0, .38), 0 5px 12px rgba(0, 0, 0, .22);
    }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: none;
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 158px;
      height: auto;
    }

    .midea-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .hamilton-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .gree-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .aux-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .daikin-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .lg-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .polar-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .mitsubishi-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .samsung-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .panasonic-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .fisher-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .azuri-logo-mark img {
      width: 150px;
      height: auto;
      object-fit: contain;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: none;
      cursor: pointer;
      transition: .2s ease;
      user-select: text;
    }

    .product-category:hover,
    .product-category:focus-visible {
      transform: translateY(-4px);
      box-shadow: none;
    }

    .product-category:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .category-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .category-open-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 8px 13px;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      box-shadow: none;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
      user-select: text;
      content-visibility: auto;
      contain-intrinsic-size: 360px;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
      cursor: zoom-in;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-price {
      margin-top: 12px;
      color: var(--blue);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.35;
    }

    .product-price small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      margin-top: 2px;
    }

    .product-price.is-unavailable {
      color: var(--muted);
    }

    .model-picker {
      display: grid;
      gap: 7px;
      margin-top: 12px;
    }

    .model-picker label {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .model-picker select {
      width: 100%;
      min-height: 44px;
      color: var(--text);
      background:
        linear-gradient(45deg, transparent 50%, #111 50%) calc(100% - 25px) 50% / 9px 9px no-repeat,
        linear-gradient(135deg, #111 50%, transparent 50%) calc(100% - 16px) 50% / 9px 9px no-repeat,
        var(--yellow);
      border: 1px solid var(--yellow);
      border-radius: 7px;
      padding: 10px 46px 10px 12px;
      font: inherit;
      font-weight: 800;
      appearance: none;
      -webkit-appearance: none;
    }

    .model-area-note {
      color: var(--muted);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.35;
    }

    .product-card .model-area-note {
      font-size: 16px;
      font-weight: 800;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details > div {
      position: relative;
      isolation: isolate;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-details li.is-collapsed {
      display: none;
    }

    .product-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      position: relative;
      z-index: 5;
      margin: 8px 0 0;
      color: #111;
      background: var(--yellow);
      border: 0;
      border-radius: 7px;
      padding: 5px 12px;
      box-shadow: none;
      font: inherit;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.2;
      cursor: pointer;
      transition: .2s ease;
    }

    .product-more-btn:hover {
      transform: translateY(-1px);
      box-shadow: none;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100vw - 56px));
      max-height: min(86vh, 920px);
      overflow: auto;
      overflow-x: hidden;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 136px;
    }

    .product-modal-head > div {
      width: 100%;
      min-width: 0;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: clamp(24px, 2.1vw, 30px);
      line-height: 1.18;
      margin-bottom: 6px;
      overflow-wrap: anywhere;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-filter-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 12px;
      max-width: 100%;
    }

    .manufacturer-filter {
      display: grid;
      gap: 7px;
      width: fit-content;
      max-width: 100%;
      min-width: 0;
    }

    .manufacturer-filter label {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .manufacturer-dropdown {
      position: relative;
      width: fit-content;
      max-width: 100%;
      min-width: 0;
    }

    .manufacturer-filter-toggle {
      width: max-content;
      max-width: min(360px, 100%);
      min-height: 44px;
      border: 1px solid var(--yellow);
      border-radius: 7px;
      background:
        linear-gradient(45deg, transparent 50%, #111 50%) calc(100% - 25px) 50% / 9px 9px no-repeat,
        linear-gradient(135deg, #111 50%, transparent 50%) calc(100% - 16px) 50% / 9px 9px no-repeat,
        var(--yellow);
      color: var(--text);
      font: inherit;
      font-weight: 400;
      padding: 10px 46px 10px 12px;
      text-align: left;
      cursor: pointer;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .filter-term-text {
      color: var(--blue);
      cursor: pointer;
      text-decoration: none;
    }

    .filter-term-text:hover {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .manufacturer-filter-panel {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      z-index: 3020;
      display: grid;
      gap: 4px;
      width: max-content;
      min-width: 100%;
      max-width: min(360px, 82vw);
      max-height: 320px;
      overflow: auto;
      border: 1px solid var(--yellow);
      border-radius: 7px;
      background: #fff;
      padding: 6px;
      box-shadow: 0 14px 28px rgba(0, 31, 84, .14);
    }

    .manufacturer-filter-panel[hidden] {
      display: none;
    }

    .manufacturer-filter-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border: 0;
      border-radius: 7px;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      font: inherit;
      font-weight: 400;
      padding: 10px 12px;
      text-align: left;
      white-space: nowrap;
    }

    .manufacturer-filter-option:hover,
    .manufacturer-filter-option.is-selected {
      background: rgba(255, 198, 41, .26);
      color: var(--blue);
    }

    .manufacturer-filter-remove {
      display: none;
      place-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
    }

    .manufacturer-filter-option.is-selected .manufacturer-filter-remove {
      display: inline-grid;
    }

    .product-modal-close {
      position: fixed;
      top: calc((100vh - min(86vh, 920px)) / 2 + 30px);
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 3010;
      width: auto;
      min-width: 116px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      padding: 0 12px;
      font: inherit;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .close-x {
      display: inline-block;
      margin-left: 7px;
      color: #111;
      font-size: 28px;
      font-weight: 900;
      line-height: .75;
      vertical-align: -2px;
    }

    .product-modal-terms {
      width: fit-content;
      margin-top: 22px;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-modal-bottom-terms {
      position: fixed;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      bottom: 58px;
      z-index: 3010;
      display: flex;
      justify-content: flex-end;
      width: auto;
      margin: 0;
      pointer-events: none;
    }

    .product-modal-bottom-terms .btn {
      width: fit-content;
      box-shadow: none;
      pointer-events: auto;
    }

    .product-type.is-hidden {
      display: none;
    }

    .compare-add-btn,
    .compare-open-btn,
    .compare-clear-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      transition: .2s ease;
    }
    .compare-add-btn {
      width: fit-content;
      min-height: auto;
      margin-top: 10px;
      color: #111;
      background: var(--yellow);
      padding: 6px 12px;
      font-size: 16px;
      line-height: 1.35;
    }

    .compare-add-btn.is-selected {
      color: white;
      background: var(--blue);
    }

    .compare-add-btn:hover,
    .compare-open-btn:hover,
    .compare-clear-btn:hover {
      transform: translateY(-1px);
    }

    .compare-bar {
      position: fixed;
      left: 50%;
      bottom: 18px;
      z-index: 3020;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: min(920px, calc(100% - 32px));
      padding: 14px 16px;
      background: white;
      border: 1px solid #dfe6ef;
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .22);
      transform: translateX(-50%);
    }

    .compare-bar.is-visible {
      display: flex;
    }

    .compare-bar strong {
      color: var(--blue);
      font-size: 16px;
    }

    .compare-bar span {
      color: var(--muted);
      font-size: 14px;
    }

    .compare-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .compare-open-btn {
      min-height: 40px;
      color: #111;
      background: var(--yellow);
      padding: 9px 14px;
    }

    .compare-clear-btn {
      min-height: 40px;
      color: var(--blue);
      background: var(--soft);
      border: 1px solid #dfe6ef;
      padding: 9px 14px;
    }

    .compare-table-wrap {
      overflow-x: auto;
      overflow-y: visible;
      margin-top: 18px;
      max-width: 100%;
      border: 1px solid #dfe6ef;
      border-radius: 7px;
      background: white;
      -webkit-overflow-scrolling: touch;
    }

    .compare-table {
      width: 100%;
      min-width: 860px;
      border-collapse: collapse;
      color: var(--text);
      table-layout: fixed;
    }

    .compare-table th,
    .compare-table td {
      padding: 14px;
      border: 1px solid #dfe6ef;
      vertical-align: top;
      text-align: left;
      background: white;
      overflow-wrap: anywhere;
      word-break: normal;
    }

    .compare-table th {
      color: var(--blue);
      background: var(--soft);
      font-weight: 900;
      width: 180px;
      min-width: 180px;
    }

    .compare-table td {
      color: var(--muted);
      width: 226px;
      min-width: 226px;
    }

    .compare-table td strong {
      color: var(--blue);
      display: block;
      margin-bottom: 4px;
    }

    .compare-empty {
      color: var(--muted);
      font-size: 17px;
      margin-top: 12px;
    }

    #productCompareModal {
      z-index: 3200;
    }

    #productCompareModal .product-modal-close {
      z-index: 3210;
    }

    .image-lightbox {
      position: fixed;
      inset: 0;
      z-index: 3300;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }

    .image-lightbox.is-open {
      display: flex;
    }

    .image-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .86);
    }

    .image-lightbox-panel {
      position: relative;
      z-index: 1;
      width: min(980px, 100%);
      background: white;
      border-radius: 7px;
      padding: 22px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    }

    .image-lightbox img {
      display: block;
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      border-radius: 7px;
      background: white;
    }

    .image-lightbox-caption {
      color: var(--blue);
      font-weight: 900;
      margin-top: 12px;
      font-size: 18px;
    }

    .image-lightbox-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: auto;
      min-width: 116px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      padding: 0 12px;
      font: inherit;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 10px;
      line-height: 1;
      vertical-align: -0.1em;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 10px;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

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

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head {
        align-items: flex-start;
        padding-right: 126px;
      }
      .product-modal-close {
        top: calc((100vh - min(86vh, 920px)) / 2 + 22px);
        right: 38px;
      }
      .product-modal-bottom-terms {
        right: 38px;
        bottom: 38px;
      }
      .compare-bar {
        align-items: stretch;
        flex-direction: column;
      }
      .compare-actions {
        justify-content: stretch;
      }
      .compare-open-btn,
      .compare-clear-btn {
        flex: 1;
      }
      .compare-table-wrap {
        margin-right: 0;
        padding-bottom: 4px;
        overflow-x: visible;
      }
      .compare-table {
        min-width: 0;
        width: 100%;
        display: block;
      }
      .compare-table tbody,
      .compare-table tr,
      .compare-table th,
      .compare-table td {
        display: block;
        width: 100%;
        min-width: 0;
      }
      .compare-table tr {
        border-bottom: 1px solid #dfe6ef;
      }
      .compare-table tr:last-child {
        border-bottom: 0;
      }
      .compare-table th {
        position: static;
        z-index: 2;
        width: 100%;
        min-width: 0;
        box-shadow: 1px 0 0 #dfe6ef;
        border-width: 0 0 1px;
      }
      .compare-table td {
        width: 100%;
        min-width: 0;
        border-width: 0 0 1px;
      }
      .compare-table td:last-child {
        border-bottom: 0;
      }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      height: auto;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from rolunk.html */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 220px;
      height: auto;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      cursor: pointer;
      transition: .2s ease;
    }

    .product-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      max-height: min(86vh, 920px);
      overflow: auto;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 62px;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-modal-close {
      position: fixed;
      top: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .product-modal-terms {
      position: fixed;
      bottom: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-type.is-hidden {
      display: none;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .review-subtitle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: -8px 0 18px;
      color: var(--blue);
      font-size: 24px;
      font-weight: 900;
    }

    .review-subtitle:hover {
      color: var(--dark-blue);
      text-decoration: underline;
      text-decoration-color: var(--yellow);
      text-underline-offset: 4px;
    }

    .about-review-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
      gap: clamp(36px, 6vw, 90px);
      align-items: start;
      max-width: 1320px;
    }

    .about-heading {
      margin-bottom: 28px;
    }

    .review-panel {
      display: grid;
      gap: 22px;
      align-content: start;
    }

    .about-side-photo {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .review-panel h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .review-login-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .social-login-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: fit-content;
      padding: 12px 18px;
      border: 0;
      border-radius: 7px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      transition: .2s ease;
    }

    .social-login-button:hover {
      transform: translateY(-1px);
    }

    .facebook-login {
      background: #1877f2;
      color: white;
      box-shadow: 0 10px 24px rgba(24, 119, 242, .24);
    }

    .facebook-login:hover {
      box-shadow: 0 12px 28px rgba(24, 119, 242, .32);
    }

    .google-login {
      background: white;
      color: #1f2937;
      border: 1px solid #d7dde6;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    }

    .google-login:hover {
      box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
    }

    .facebook-login-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 7px;
      background: white;
      color: #1877f2;
      font-weight: 900;
      line-height: 1;
    }

    .google-login-mark {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 7px;
      background:
        linear-gradient(90deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
      color: white;
      font-weight: 900;
      line-height: 1;
    }

    .social-login-note {
      margin: -12px 0 24px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .review-form {
      display: grid;
      grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
      gap: 22px 28px;
      align-items: start;
      background: transparent;
      border: 0;
      box-shadow: none;
      padding: 0;
    }

    .review-photo-field {
      display: grid;
      gap: 12px;
    }

    .review-profile-list {
      display: grid;
      gap: 12px;
    }

    .review-profile {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      border-radius: 7px;
      border: 1px solid #d7dde6;
      background: white;
      padding: 12px;
    }

    .review-profile[hidden] {
      display: none;
    }

    .review-profile-photo {
      display: inline-grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--yellow);
      color: #111;
      font-size: 24px;
      font-weight: 900;
      overflow: hidden;
    }

    .review-profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-profile strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
    }

    .review-profile span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .review-fields {
      display: grid;
      gap: 14px;
    }

    .star-rating {
      display: inline-flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 10px;
      width: fit-content;
    }

    .star-rating input {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: 0;
      opacity: 0;
      pointer-events: none;
    }

    .star-rating label {
      color: #d2d8e2;
      cursor: pointer;
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1;
      transition: color .15s ease, transform .15s ease;
    }

    .star-rating label:hover,
    .star-rating label:hover ~ label,
    .star-rating input:checked ~ label,
    .star-rating label.is-selected {
      color: var(--yellow);
    }

    .star-rating label:hover {
      transform: translateY(-1px);
    }

    .review-fields input,
    .review-fields textarea {
      margin-bottom: 0;
    }

    .review-fields textarea {
      min-height: 170px;
    }

    .review-form .btn {
      justify-self: start;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    }

    @media (max-width: 980px) {
      .about-review-layout {
        grid-template-columns: 1fr;
      }

      .review-form {
        grid-template-columns: 1fr;
      }

      .review-photo-box {
        min-height: 150px;
      }
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 10px;
      line-height: 1;
      vertical-align: -0.1em;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 10px;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

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

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head { align-items: center; }
      .product-modal-close {
        top: 38px;
        right: 38px;
      }
      .product-modal-terms {
        bottom: 38px;
        right: 38px;
      }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      height: auto;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from szakkifejezesek.html */
.term-card:target {
      background: #eaf4ff;
      border-color: #9cccf7;
      box-shadow: 0 18px 45px rgba(0, 92, 180, .14);
      scroll-margin-top: 130px;
    }

    .term-card:target h3,
    .term-card:target p {
      color: #001f3f;
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }

/* Inline CSS from szolgaltatasok.html */
:root {
      --yellow: #ffd000;
      --blue: #003b78;
      --dark-blue: #001f3f;
      --header-gray: #b2b2b2;
      --text: #111827;
      --muted: #5b6472;
      --white: #ffffff;
      --soft: #f7f9fc;
    }

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

    html {
      scroll-padding-top: 104px;
      scroll-behavior: smooth;
    }

    body {
      padding-top: 100px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    .topbar {
      min-height: 100px;
      background:
        linear-gradient(rgba(178, 178, 178, .12), rgba(178, 178, 178, .12)),
        url("assets/images/fejlec-szalcsiszolt.webp") center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 5%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .50);
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: 220px;
      max-width: 42vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.8vw, 28px);
      font-weight: 800;
    }

    .nav a {
      color: #111;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--blue); }
    .nav a.active { color: var(--yellow); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 3px;
      background: var(--yellow);
      border-radius: 99px;
    }

    .menu-toggle {
      display: none;
      min-width: 62px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .2px;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--yellow);
      color: #111;
      padding: 15px 26px;
      border-radius: 7px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1em;
      line-height: 1;
      height: 1em;
      width: 1em;
      flex: 0 0 1em;
    }

    .btn-icon img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
    }

    .ghost-btn .btn-icon img {
      filter: brightness(0) invert(1);
    }

    .hero {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .16) 100%),
        url("assets/images/hatterkep.webp") center / 120% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 650px;
      padding: 70px 5% 120px;
    }

    .hero h1 {
      color: white;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--yellow); display: block; }

    .hero p {
      color: white;
      font-size: clamp(20px, 2vw, 27px);
      max-width: 700px;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 26px;
      border: 2px solid rgba(255, 255, 255, .85);
      color: white;
      border-radius: 7px;
      font-weight: 900;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      width: min(90%, 1280px);
      margin: -66px auto 0;
      color: white;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .benefit {
      padding: 32px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      border-radius: 7px;
      box-shadow: 0 18px 45px rgba(0, 31, 63, .28);
      min-height: 160px;
    }

    .benefit .icon {
      width: 42px;
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: var(--yellow);
      line-height: 1;
    }

    .benefit .icon img {
      width: 42px;
      height: 42px;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }
    .benefit h3 { font-size: 19px; margin-bottom: 5px; }
    .benefit p { color: rgba(255, 255, 255, .84); font-size: 15px; }

    .section { padding: 86px 5%; background: white; }

    .section,
    .card {
      scroll-margin-top: 104px;
    }

    .section-label {
      color: var(--yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }

    .section h1,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .title-small {
      display: block;
      font-size: .58em;
      margin-top: 6px;
    }

    .underline {
      width: 64px;
      height: 4px;
      background: var(--yellow);
      margin: 20px 0 26px;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .8fr 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .service-intro p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }

    .card {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 34px 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      transition: .2s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0, 59, 120, .14);
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--dark-blue));
      color: white;
      font-size: 30px;
      margin-bottom: 24px;
    }

    .card-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .card h3 { font-size: 21px; margin-bottom: 10px; }
    .card p { color: var(--muted); margin-bottom: 18px; }
    .more {
      color: var(--blue);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .more img {
      width: 1em;
      height: 1em;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1718%) hue-rotate(192deg) brightness(92%) contrast(104%);
    }

    .service-info {
      margin-top: 24px;
      padding: 26px;
      border: 1px solid #e7ebf0;
      border-left: 6px solid var(--yellow);
      border-radius: 7px;
      background: #fff;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-info h2 {
      color: var(--blue);
      font-size: 24px;
      margin-bottom: 12px;
    }

    .service-info p {
      color: var(--muted);
      margin-bottom: 14px;
    }

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

    .prices { background: var(--soft); }

    .detail-section {
      background: var(--soft);
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1180px;
    }

    .detail-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 18px;
    }

    .detail-photo {
      width: 100%;
      max-width: none;
      display: block;
      border-radius: 7px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
    }

    .detail-media {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 26px;
    }

    .detail-media .btn {
      justify-self: start;
    }

    .service-list {
      display: grid;
      gap: 12px;
      list-style: none;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .service-list li {
      position: relative;
      display: block;
      color: var(--muted);
      font-size: 17px;
      padding-left: 32px;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--blue);
    }

    .service-list-label {
      color: var(--blue);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 980px;
    }

    .spec-item {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 20px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .spec-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .spec-item strong {
      color: var(--blue);
      font-size: 20px;
    }

    .product-menu {
      margin: 34px 0 28px;
      max-width: 1180px;
    }

    .product-menu h3 {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 26px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .kaisai-logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 9px 12px;
      line-height: 1;
    }

    .kaisai-logo-mark img {
      display: block;
      width: 220px;
      height: auto;
    }

    .product-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-category {
      display: block;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
      cursor: pointer;
      transition: .2s ease;
    }

    .product-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-category h4 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .product-category ul {
      display: grid;
      gap: 8px;
      color: var(--muted);
      list-style: none;
      font-size: 16px;
    }

    .product-category li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 8px;
    }

    .product-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .product-type {
      display: block;
      background: var(--soft);
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 22px;
      transition: .2s ease;
    }

    .product-type:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(0, 59, 120, .12);
    }

    .product-type img {
      width: 100%;
      height: 150px;
      display: block;
      object-fit: contain;
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .product-type h4 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .product-type p {
      color: var(--muted);
      font-size: 16px;
    }

    .product-details {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #dfe6ef;
    }

    .product-details strong {
      display: block;
      color: var(--blue);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-details ul {
      display: grid;
      gap: 6px;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .product-details li::before {
      content: "•";
      color: var(--blue);
      font-weight: 900;
      margin-right: 7px;
    }

    .product-badge {
      display: inline-block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 8px;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      padding: 28px;
    }

    .product-modal.is-open {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .76);
    }

    .product-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      max-height: min(86vh, 920px);
      overflow: auto;
      background: white;
      border-radius: 7px;
      padding: 30px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .product-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding-right: 62px;
    }

    .product-modal-head h3 {
      color: var(--blue);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .product-modal-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .product-modal-close {
      position: fixed;
      top: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 7px;
      background: var(--yellow);
      color: #111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      margin-top: 0;
    }

    .product-modal-terms {
      position: fixed;
      bottom: 58px;
      right: calc((100vw - min(1180px, calc(100vw - 56px))) / 2 + 30px);
      z-index: 310;
      box-shadow: none;
      padding: 12px 18px;
      font-size: 13px;
    }

    .product-type.is-hidden {
      display: none;
    }

    .detail-note {
      margin-top: 22px;
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
    }

    .about-copy {
      max-width: 980px;
      color: var(--muted);
      font-size: 19px;
    }

    .about-copy p {
      margin-bottom: 18px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 34px;
    }

    .price-card {
      background: white;
      border-radius: 7px;
      padding: 34px;
      border-top: 6px solid var(--yellow);
      box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
    }

    .price-card strong {
      display: block;
      font-size: 34px;
      color: var(--blue);
      margin: 12px 0;
    }

    .contact {
      background: linear-gradient(135deg, var(--dark-blue), var(--blue));
      color: white;
    }

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

    .contact p {
      color: rgba(255, 255, 255, .86);
      font-size: 19px;
      margin-bottom: 28px;
    }

    .service-map {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 7px;
      overflow: hidden;
      margin: 28px 0;
      max-width: 560px;
    }

    #serviceAreaMap {
      display: block;
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, .12);
      position: relative;
      z-index: 1;
    }

    .service-map .leaflet-pane,
    .service-map .leaflet-top,
    .service-map .leaflet-bottom {
      z-index: 1;
    }

    .map-caption {
      padding: 12px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 700;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      font-size: 19px;
      margin-top: 28px;
    }

    .contact-list span {
      color: var(--yellow);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.3em;
      height: 1em;
      margin-right: 10px;
      line-height: 1;
      vertical-align: -0.1em;
    }

    .contact-list img {
      display: block;
      width: 1em;
      height: 1em;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1268%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .contact-list .location-icon {
      font-size: 1.04em;
      width: 1em;
      margin-right: 10px;
    }

    .area-link {
      margin-top: 18px;
      box-shadow: none;
    }

    .service-area {
      background: var(--soft);
    }

    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
    }

    .area-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .area-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .area-box p {
      color: var(--muted);
      font-size: 17px;
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .term-card {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 24px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

    .term-card h3 {
      color: var(--blue);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .term-card p {
      color: var(--muted);
      font-size: 16px;
    }

    .area-intro {
      max-width: 980px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    form {
      background: white;
      border-radius: 7px;
      padding: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    }

    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      margin-bottom: 16px;
      border: 1px solid #d7dde6;
      border-radius: 7px;
      font-size: 16px;
      font-family: inherit;
    }

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

    .file-field {
      margin-bottom: 16px;
    }

    .file-field label {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .file-field input {
      margin-bottom: 0;
      background: var(--soft);
    }

    .privacy-note {
      color: var(--muted);
      font-size: 13px;
      margin: -4px 0 16px;
    }

    form .btn { width: 100%; }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .legal-box {
      background: white;
      border: 1px solid #e7ebf0;
      border-radius: 7px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .legal-box h3 {
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .legal-box p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .legal-box p:last-child { margin-bottom: 0; }

    footer {
      background: #070b12;
      color: white;
      padding: 30px 5%;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--yellow); }

    @media (max-width: 1100px) {
      body {
        padding-top: 86px;
      }

      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle { display: inline-flex; }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
      }

      .nav a.active::after { display: none; }
      .nav a.active { background: var(--yellow); color: #111; }
      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid { grid-template-columns: 1fr; }
      .benefits-wrap { grid-template-columns: repeat(2, 1fr); }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: 1fr; }
      .terms-grid { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .product-category-grid { grid-template-columns: 1fr; }
      .product-type-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 12px 4%;
        gap: 8px;
      }

      .logo img { width: 160px; max-width: 100%; }
      .menu-toggle { min-width: 62px; height: 44px; margin-left: auto; }
      .phone { display: none; }
      .topbar > .btn { display: none; }
      .nav { grid-template-columns: 1fr; }
      .hero { background-position: 55% center; }
      .hero-inner { padding: 50px 5% 110px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail-media { grid-template-columns: 1fr; }
      .detail-media .btn { width: 100%; }
      .product-modal { padding: 16px; }
      .product-modal-panel { padding: 22px; }
      .product-modal-head { align-items: center; }
      .product-modal-close {
        top: 38px;
        right: 38px;
      }
      .product-modal-terms {
        bottom: 38px;
        right: 38px;
      }
      .benefits-wrap { grid-template-columns: 1fr; margin: -50px 5% 0; }
      .cards { grid-template-columns: 1fr; }
      .section { padding: 64px 5%; }
    }
  

    /* responsive-polish-v3 */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video,
    iframe {
      max-width: 100%;
    }

    .section {
      padding-left: clamp(18px, 5vw, 5%);
      padding-right: clamp(18px, 5vw, 5%);
    }

    .section h1,
    .section h2,
    .hero h1 {
      overflow-wrap: anywhere;
    }

    .btn,
    .ghost-btn,
    .more,
    button,
    select,
    input,
    textarea {
      max-width: 100%;
    }

    .card,
    .benefit,
    .price-card,
    .product-category,
    .product-type,
    .term-card,
    .legal-card,
    .faq-item {
      min-width: 0;
    }

    .detail-photo,
    .service-map,
    #serviceAreaMap,
    .product-type img {
      max-width: 100%;
    }

    @media (max-width: 1240px) {
      .topbar {
        min-height: 86px;
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .phone,
      .topbar > .btn {
        display: none;
      }

      .nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s ease;
      }

      body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav a {
        padding: 13px 14px;
        border-radius: 7px;
        white-space: normal;
      }

      .nav a.active::after {
        display: none;
      }

      .nav a.active {
        background: var(--yellow);
        color: #111;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .hero,
      .hero-inner {
        min-height: 600px;
      }

      .hero-inner,
      .service-layout,
      .detail-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .price-grid,
      .area-grid,
      .terms-grid,
      .legal-grid,
      .spec-grid,
      .product-category-grid {
        grid-template-columns: 1fr;
      }

      form {
        width: min(680px, 100%);
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 82px;
      }

      .topbar {
        min-height: 72px;
        padding: 10px 4%;
      }

      .logo img {
        width: 150px;
      }

      .menu-toggle {
        min-width: 62px;
        height: 42px;
      }

      .nav {
        left: 4%;
        right: 4%;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .hero {
        min-height: 540px;
        background-size: cover;
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 540px;
        padding: 42px 5% 92px;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions,
      .detail-actions,
      .compare-actions,
      .social-login-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn,
      .ghost-btn,
      .compare-open-btn,
      .compare-clear-btn,
      .compare-add-btn,
      .social-login-btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
        text-align: center;
      }

      .benefits-wrap {
        width: 90%;
      }

      .benefit,
      .card,
      .price-card,
      form,
      .product-category,
      .product-type,
      .term-card,
      .legal-card,
      .faq-item {
        padding: 24px 20px;
      }

      .section {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .section h1,
      .section h2 {
        font-size: clamp(28px, 9vw, 38px);
      }

      .contact-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      #serviceAreaMap {
        min-height: 320px;
      }

      .product-modal {
        padding: 10px;
      }

      .product-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
      }

      .product-modal-head {
        display: grid;
        gap: 14px;
        padding-right: 0;
      }

      .product-modal-head h3 {
        font-size: 25px;
        padding-right: 120px;
      }

      .product-modal-close {
        top: 20px;
        right: 20px;
      }

      .product-modal-bottom-terms {
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
      }

      .product-modal-bottom-terms .btn,
      .product-modal-terms {
        width: fit-content;
        max-width: 100%;
      }

      .compare-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px;
      }
    }

  

    /* responsive-header-fit-v1 */
    @media (min-width: 1241px) and (max-width: 1440px) {
      .topbar {
        padding-left: 3%;
        padding-right: 3%;
        gap: 12px;
      }

      .logo img {
        width: 178px;
        max-width: 22vw;
      height: auto;
      }

      .nav {
        gap: 12px;
        font-size: 15px;
      }

      .phone {
        gap: 7px;
        font-size: 14px;
      }

      .topbar > .btn {
        padding: 13px 18px;
        font-size: 14px;
      }
    }

    @media (min-width: 1241px) and (max-width: 1320px) {
      .phone {
        display: none;
      }
    }

    /* fixed-header-all-viewports-v2 */
    body {
      padding-top: 100px !important;
    }

    .topbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
    }

    @media (min-width: 641px) and (max-width: 1100px) {
      body {
        padding-top: 86px !important;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 72px !important;
      }
    }
