:root {
  --style-color: #49a078;
  --text-color: #333;
  --muted-color: #666;
  --border-color: #e6e6e6;
  --light-bg: #f8faf8;
  --container-wide: 1400px;
  --action-blue: #075fc5;
  --action-blue-deep: #07356f;
  --whatsapp-green: #128c5c;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
}

body.singfoo-inquiry-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

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

.singfoo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.singfoo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.singfoo-logo {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  color: #102033;
  font-weight: 800;
  letter-spacing: 0;
}

.singfoo-logo img {
  max-height: 55px;
  width: auto;
}

.singfoo-logo span {
  line-height: 1;
}

.singfoo-nav-panel {
  display: flex;
  flex: 1 1 auto;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.singfoo-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
}

.singfoo-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #1f3142;
  line-height: 1.2;
  white-space: nowrap;
}

.singfoo-header__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.singfoo-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #c8d7e6;
  border-radius: 6px;
  color: var(--action-blue-deep);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.singfoo-header__action--primary {
  border-color: var(--action-blue);
  color: #fff;
  background: var(--action-blue);
}

.singfoo-header__action--vr {
  border-color: #0b4f9f;
  color: #fff;
  background: #0b4f9f;
}

.singfoo-header__action--whatsapp {
  border-color: var(--whatsapp-green);
  color: #fff;
  background: var(--whatsapp-green);
}

.singfoo-language-menu {
  position: relative;
  flex: 0 0 auto;
}

.singfoo-language-menu summary {
  list-style: none;
}

.singfoo-language-menu summary::-webkit-details-marker {
  display: none;
}

.singfoo-header__action--language::after {
  content: "v";
  margin-left: 6px;
  font-size: 10px;
  line-height: 1;
}

.singfoo-language-menu__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 90;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid #d7e2ee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.16);
}

.singfoo-language-menu__list a {
  padding: 8px 10px;
  border-radius: 5px;
  color: #1f3142;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.singfoo-language-menu__list a:hover,
.singfoo-language-menu__list a:focus {
  background: #f0f6fc;
  color: var(--action-blue-deep);
}

.singfoo-header__routebar {
  border-top: 1px solid #e7edf4;
  border-bottom: 1px solid #e7edf4;
  background: #f5f9fd;
}

.singfoo-header__routebar-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 40px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.singfoo-header__routebar a {
  flex: 0 0 auto;
  color: #385066;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.singfoo-mobile-menu {
  display: none;
  color: #102033;
}

.singfoo-mobile-menu span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.singfoo-page-fragment {
  overflow: hidden;
}

.singfoo-footer {
  color: #fff;
  background: #1f2a24;
}

.singfoo-footer__top {
  padding: 58px 0 42px;
}

.singfoo-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(145px, 1fr));
  gap: 26px;
}

.singfoo-footer__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

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

.singfoo-footer__list li {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
}

.singfoo-footer__summary {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.singfoo-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.singfoo-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--action-blue);
  border-radius: 6px;
  color: #fff;
  background: var(--action-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.singfoo-footer__button--whatsapp {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--whatsapp-green);
}

.singfoo-footer__list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 4px;
}

.singfoo-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.singfoo-mobile-footer {
  display: none;
}

.singfoo-inquiry {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
}

.singfoo-inquiry.is-open {
  display: flex;
}

.singfoo-inquiry__panel {
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  padding: 28px;
}

.singfoo-form {
  display: grid;
  gap: 14px;
}

.singfoo-form input,
.singfoo-form textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 14px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font: inherit;
}

.singfoo-form textarea {
  min-height: 120px;
}

.singfoo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--style-color);
  cursor: pointer;
  font: inherit;
}

@media (max-width: 1180px) {
  .singfoo-header__inner {
    min-height: 68px;
    position: relative;
  }

  .singfoo-nav-panel {
    display: none;
  }

  .singfoo-mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .singfoo-nav-panel.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 36px rgba(16, 32, 51, 0.12);
  }

  .singfoo-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    justify-content: stretch;
  }

  .singfoo-nav a {
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #f6f9fc;
    white-space: normal;
  }

  .singfoo-header__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .singfoo-header__action {
    width: 100%;
  }

  .singfoo-language-menu {
    width: 100%;
  }

  .singfoo-language-menu__list {
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }

  .singfoo-header__routebar {
    display: none;
  }

  .singfoo-footer__grid {
    grid-template-columns: 1fr;
  }

  .singfoo-mobile-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--border-color);
  }

  .singfoo-mobile-footer a,
  .singfoo-mobile-footer button {
    min-height: 54px;
    border: 0;
    border-right: 1px solid var(--border-color);
    background: #fff;
    color: var(--style-color);
    font: inherit;
    font-weight: 700;
  }

  .singfoo-mobile-footer a:nth-child(2) {
    color: var(--whatsapp-green);
  }

  .singfoo-mobile-footer button {
    border-right: 0;
    color: #fff;
    background: var(--action-blue);
  }

  body {
    padding-bottom: 54px;
  }
}

.singfoo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 30px 0 60px;
}

.singfoo-card {
  border: 1px solid var(--border-color);
  background: #fff;
}

.singfoo-card a {
  display: block;
}

.singfoo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.singfoo-card h2 {
  margin: 0;
  padding: 16px;
  font-size: 18px;
  line-height: 1.35;
}

.singfoo-card p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted-color);
}

@media (max-width: 767px) {
  .singfoo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .singfoo-card h2 {
    font-size: 15px;
    padding: 12px;
  }
}
