/* (주)재원 메인화면 - Figma 1:954 */
:root {
  --color-primary: #1e4a6b;
  --color-dark: #080a0d;
  --color-dark-deep: #050a10;
  --color-dark-footer: #0c0f14;
  --color-text: #14181f;
  --color-text-muted: #5c6573;
  --color-text-light: #94a3b8;
  --color-text-footer: #cbd5e1;
  --color-border: #e8ecf1;
  --color-bg-light: #f9fafb;
  --color-bg-card: #f8fafc;
  --color-bg-quote: #f3f4f6;
  --color-products-bg: #e8ecf1;
  --color-accent: #b45309;
  --color-dark-grey: #232323;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --font-sans: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Noto Sans KR", "Pretendard", sans-serif;
  --font-en: "Inter", sans-serif;
  --page-max: 1440px;
  --container-max: 1200px;
  --page-padding: 120px;
  --container-padding: 24px;
  --section-padding-y: 96px;
  --header-height: 100px;
  --hero-height: 900px;
  --features-height: 304px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  background: var(--color-dark);
  overflow: hidden;
}

/* 배경 이미지 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__bg-gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 13, 0.5) 0%,
    rgba(8, 10, 13, 0.2) 50%,
    rgba(8, 10, 13, 0) 100%
  );
}

/* 회로 오버레이 */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__circuit {
  position: absolute;
  width: 100%;
  height: 150%;
  top: -25%;
  left: 0;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero__gradient-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 86% 81% at 50% 50%,
    rgba(30, 74, 107, 0.25) 0%,
    rgba(30, 74, 107, 0) 70%
  );
}

.hero__gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 16, 0.5) 0%,
    rgba(5, 10, 16, 0) 50%,
    var(--color-dark-deep) 100%
  );
}
.wp-block-group{
  display: none !important;
}
/* Header (히어로 내부) */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 var(--page-padding);
  transition: background-color .5s;
}
.header.is-scroll{
  background: rgba(0,0,0,.7);
}
.admin-bar .header{
  top: 32px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__logo {
  width: 170px;
  height: 34px;
  object-fit: contain;
}

.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-30);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__menu-icon,
.header__menu-icon::before,
.header__menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.header__menu-icon {
  position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.header__menu-icon::before {
  top: -6px;
}

.header__menu-icon::after {
  top: 6px;
}

.header__menu-btn[aria-expanded="true"] .header__menu-icon {
  background: transparent;
}

.header__menu-btn[aria-expanded="true"] .header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.header__menu-btn[aria-expanded="true"] .header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.78px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.header__nav a:hover {
  opacity: 0.75;
}

/* 히어로 콘텐츠 (Figma 1:1045 — size-full) */
.hero__content {
  position: absolute;
  z-index: 5;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: var(--features-height);
  width: 100%;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__label-line {
  width: 48px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.hero__label-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  line-height: 20px;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 8px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  padding: 0 26.63px;
  margin-bottom: 32px;
}

.hero__title span {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 900;
  line-height: 40px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--white-70);
  line-height: 32px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 48px;
  padding: 0 5px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 44px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 24px;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 15px rgba(30, 74, 107, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--white-30);
  backdrop-filter: blur(2px);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* 스크롤 인디케이터 */
.hero__scroll {
  position: absolute;
  z-index: 6;
  bottom: calc(var(--features-height) + 24px);
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--white-30);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 9999px;
}

/* 하단 특징 바 */
.hero__features {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-max);
  height: var(--features-height);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #444;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid var(--white-10);

}


.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 63px 40px 0;
  border-right: 1px solid var(--white-10);
  transition: all .5s !important;
  background: rgba(255,255,255,0);
}
.hero__feature:hover{
  background: rgba(255,255,255,.95);
}
.hero__feature:hover .hero__feature-title{
  color: #222;
}
.hero__feature:hover .hero__feature-desc{
  color: #666;
}

.hero__feature:last-child {
  border-right: none;
}

.hero__feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: #ccc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__feature:hover .hero__feature-icon{
  background: #ccc;
}

.hero__feature-icon img {
  width: auto;
  height: auto;
  max-width: 25px;
  max-height: 20px;
}

.hero__feature-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
  margin-bottom: 8px;
}

.hero__feature-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--white-50);
  line-height: 22.75px;
}

/* ========== CORE VALUES ========== */
.core-values {
  background: var(--color-bg-light);
  padding: var(--section-padding-y) var(--page-padding);
}

.core-values__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
}

.core-values__inner {
  background: #fff;
  padding: var(--section-padding-y) var(--container-padding);
}

.core-values__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.core-values__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14.8px;
}

.core-values__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.core-values__eyebrow-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 21px;
}

.core-values__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 57.6px;
  letter-spacing: -1.5px;
  color: var(--color-text);
}

.core-values__title-accent {
  color: var(--color-primary);
}

.core-values__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.21px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.core-values__link:hover {
  color: var(--color-primary);
}

.core-values__link img {
  width: 20px;
  height: 20px;
}

.core-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.value-card {
  background: var(--color-bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.value-card__image-wrap {
  height: 320px;
  overflow: hidden;
}

.value-card__image {
  width: 100%;
  height: 113.33%;
  object-fit: cover;
  margin-top: -6.67%;
}

.value-card__body {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 32px;
}

.value-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-quote);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card__icon img {
  width: 22px;
  height: 24px;
}

.value-card__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 21px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 39px;
  padding-top: 8px;
  margin-bottom: 16px;
}

.value-card__desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 27.2px;
}

.core-values__quote {
  background: var(--color-bg-quote);
  border-radius: 32px;
  padding: 40px 48px;
  text-align: center;
  border: none;
}

.core-values__quote-line {
  width: 48px;
  height: 4px;
  background: var(--color-primary);
  opacity: 0.3;
  margin: 0 auto;
}

.core-values__quote-line--top {
  margin-bottom: 16px;
}

.core-values__quote-line--bottom {
  margin-top: 16px;
}

.core-values__quote-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 30px;
  letter-spacing: 0.04px;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--color-products-bg);
  padding: var(--section-padding-y) var(--page-padding);
}

.products__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.products__header {
  text-align: center;
  margin-bottom: 80px;
}

.products__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 16px;
}

.products__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -1.1px;
  line-height: 66px;
}

.products__slider {
  position: relative;
  padding: 0 80px;
}

.home-products__track-wrap {
  overflow: visible;
}

.products-swiper {
  overflow: visible;
  padding-bottom: 8px;
}
.mb-widget.home-products-widget .products-swiper{
  overflow: visible;
}

.products-swiper .swiper-wrapper.home-products__track {
  align-items: stretch;
}

.products-swiper .swiper-slide {
  width: 269px;
  height: auto;
  flex-shrink: 0;
}

.home-product-card {
  width: 100%;
}

.home-product-card__number {
  font-family: "Noto Sans", var(--font-sans);
  font-size: 30px;
  font-weight: 400;
  color: #000;
  line-height: 41px;
  margin-bottom: 8px;
}

.home-product-card__image-wrap {
  width: 269px;
  height: 270px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 19px;
}

.home-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-card__code {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-grey);
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 4px;
}

.home-product-card__name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-grey);
  letter-spacing: -0.18px;
  line-height: 30px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: 1px solid #555;
  overflow: hidden;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  margin-top: 20px;
  transition: opacity 0.2s;

}

.carousel-btn:hover {
  opacity: 0.85;
}

.carousel-btn--prev {
  left: 0;
}

.carousel-btn--next {
  right: 0;
}

.carousel-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.carousel-btn__bg {
  width: 64px;
  height: 64px;
}

.carousel-btn--prev .carousel-btn__bg {
  transform: rotate(180deg);
}

.carousel-btn__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.carousel-btn--prev .carousel-btn__arrow {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* ========== FOOTER ========== */
.footer {
  background: #444;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px var(--page-padding);
  border-bottom: 1px solid var(--white-10);
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer__logo {
  width: 170px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 350;
  color: var(--color-text-light);
  line-height: 26px;
}

.footer__recruit {
  text-align: right;
  flex-shrink: 0;
}

.footer__recruit-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 19.5px;
  margin-bottom: 16px;
}

.footer__recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 21px;
  transition: background 0.2s;
}

.footer__recruit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer__recruit-btn img {
  width: 10.5px;
  height: 12px;
}

.footer__main {
  display: grid;
  grid-template-columns: 378px 1fr;
  gap: 32px;
  padding: 80px var(--page-padding);
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer__section-title {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 19.5px;
  margin-bottom: 24px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer__contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-label {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 3px;
}

.footer__contact-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 350;
  color: var(--color-text-footer);
  line-height: 24.38px;
}

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

.footer__nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 350;
  color: var(--color-text-light);
  line-height: 22.5px;
  margin-bottom: 15px;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px var(--page-padding);
  background: rgba(255, 255, 255, 0.02);
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer__copyright {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 18px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__legal > a {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 18px;
  transition: color 0.2s;
}

.footer__legal > a:hover {
  color: var(--color-text-light);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 24px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--white-10);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ========== RESPONSIVE ========== */

/* Large desktop (1440px+) - Figma 기준 */
@media (min-width: 1441px) {
  .page {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  }
}

/* Laptop */
@media (max-width: 1280px) {
  :root {
    --page-padding: 80px;
  }

  .hero__feature {
    padding: 48px 24px 0;
  }

  .core-values__title {
    font-size: 40px;
    line-height: 48px;
  }

  .products__title {
    font-size: 38px;
    line-height: 52px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  :root {
    --page-padding: 48px;
    --section-padding-y: 72px;
    --features-height: auto;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 0;
  }

  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: calc(var(--header-height) + 48px) 32px 48px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__features {
    position: relative;
    left: auto;
    transform: none;
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero__feature {
    padding: 40px 32px;
    border-right: none;
    border-bottom: 1px solid var(--white-10);
  }

  .hero__feature:last-child {
    border-bottom: none;
  }

  .core-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values__grid .value-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .header__inner{
    padding: 0;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .page-main{
    margin-top: -46px;
  }
  :root {
    --page-padding: 24px;
    --section-padding-y: 56px;
    --header-height: 72px;
  }
  .admin-bar #wpadminbar{
    display: none !important;
  }
  .admin-bar .header{
    top: 0;
    z-index:222222;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 10, 16, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--white-10);
    transform: translateX(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    z-index: 200;
    height: 100vh;
  }

  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--white-10);
    font-size: 16px;
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .hero__title span {
    font-size: 28px;
    line-height: 36px;
  }

  .hero__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .hero__desc br {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    width: 100%;
  }

  .core-values__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-values__title {
    font-size: 24px;
    line-height: 40px;
  }

  .core-values__grid {
    grid-template-columns: 1fr;
  }
  .value-card__desc{
    font-size: 14px;
  }

  .core-values__grid .value-card:last-child {
    max-width: none;
  }

  .core-values__quote-text {
    font-size: 15px;
    white-space: normal;
  }

  .products__title {
    font-size: 28px;
    line-height: 40px;
  }

  .products__slider {
    padding: 0 56px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .carousel-btn__bg {
    width: 48px;
    height: 48px;
  }

  .products-swiper .swiper-slide {
    width: 240px;
  }

  .home-product-card__image-wrap {
    width: 240px;
    height: 240px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__recruit {
    text-align: left;
    width: 100%;
  }

  .footer__links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    display: none;
  }
  .footer__top{
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__social {
    padding-left: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero__label-text {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .hero__label-line {
    width: 32px;
  }

  .hero__subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero__title span {
    font-size: 20px;
    line-height: 32px;
  }

  .core-values__inner {
    padding: 48px 16px;
  }

  .value-card__body {
    padding: 24px;
  }

  .products__header {
    margin-bottom: 36px;
  }

  .products__slider {
    padding: 0 44px;
  }

  .products-swiper .swiper-slide {
    width: 200px;
  }

  .home-product-card__image-wrap {
    width: 200px;
    height: 200px;
  }

  .footer__links-grid {
    grid-template-columns: 1fr;
  }

  .footer__main {
    padding: 48px var(--page-padding);
  }
  .hero__bg{
    top: -40%;
  }
}
