@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
:root {
  --bg-body: #ffffff;
  --bg-header: #fffffff4;
  --bg-dropdown: #ffffff;
  --bg-input: #ffffff;
  --bg-hover: #f1f3f5;
  --bg-sidebar: #f8f9fa;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-placeholder: #868e96;
  --border-color: #e9ecef;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --icon-filter: none;
  --bg-dropdown-header: linear-gradient(135deg, #5865f208, #845ef708);
}
body.color_scheme_dark {
  --bg-body: #181818;
  --bg-header: #1e1e1ef4;
  --bg-dropdown: #252525;
  --bg-input: #2c2c2c;
  --bg-hover: #333333;
  --bg-sidebar: #1e1e1e;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-placeholder: #666666;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --icon-filter: invert(1) brightness(2);
  --bg-dropdown-header: var(--bg-dropdown);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
ul, ol {
  list-style: none;
}
.container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.rb-header {
  position: sticky;
  top: 0;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--bg-header);
  box-shadow: 0px 0px 20px var(--shadow-color);
  z-index: 1000;
}
.rb-header.scrolled {
  box-shadow: 0 2px 8px var(--shadow-color);
}
.rb-header .header-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}
.rb-header .header-left {
  display: flex;
  align-items: center;
  gap: 2.9rem;
  flex: 1;
}
.rb-header .header-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.logo {
  margin: 0;
  font-size: 0;
}
.logo a {
  display: block;
}
.logo img {
  width: auto;
  height: 3.5rem;
  max-height: none;
  display: block;
}
.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary);
  line-height: 2rem;
}
.logo .logo-mo {
  display: none;
}
.mobile-menu-toggle {
  display: none;
  gap: 0.4rem;
  padding: 0.6rem;
}
.mobile-menu-toggle.button {
  flex-direction: column;
}
.mobile-menu-toggle span.hamburger-line {
  width: 1.6rem;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.gnb-menu ul {
  display: flex;
  gap: 2.3rem;
}
.gnb-menu .gnb-item {
  position: relative;
}
.gnb-menu .gnb-item > a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  display: block;
  padding: 1.4rem 0;
  font-weight: bold;
}
.gnb-menu .gnb-item > a:hover {
  color: #5865f2;
}
.gnb-menu .gnb-item.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-27%);
  background: var(--bg-dropdown);
  border-radius: 0.6rem;
  padding: 2.3rem;
  min-width: 15rem;
  box-shadow: 0 4px 12px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0.1s;
  z-index: 100;
  margin-top: 0.3rem;
}
.gnb-menu .gnb-item.has-submenu .submenu .submenu-title {
  padding: 0 0 0.8rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02rem;
}
.gnb-menu .gnb-item.has-submenu .submenu a {
  display: block;
  padding: 0.3rem 0;
  font-size: 1rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0s;
  font-weight: bold;
}
.gnb-menu .gnb-item.has-submenu .submenu a:hover {
  color: var(--text-primary);
}
.gnb-menu .gnb-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.search-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: 0.6rem;
  transition: all 0.2s;
}
.search-toggle img, .search-toggle svg {
  width: 20px;
  height: 20px;
  filter: var(--icon-filter);
}
.search-toggle:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.user-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.user-actions .user-link {
  padding: 0.6rem 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 0.4rem;
  transition: all 0.2s;
}
.user-actions .user-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.user-actions .btn-signup {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #000;
  border-radius: 0.4rem;
  transition: all 0.2s;
}
.user-actions .btn-signup:hover {
  background: #333;
}
.write-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: 0.6rem;
  transition: all 0.2s;
}
.write-toggle:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.search-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-dropdown);
  border-bottom: 1px solid var(--border-color);
  padding: 1.1rem 0;
  display: none;
  box-shadow: 0 4px 12px var(--shadow-color);
}
.search-box.active {
  display: block;
}
.search-box .search-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.search-box .search-input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  font-size: 1.1rem;
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.6rem;
  outline: none;
}
.search-box .search-input:focus {
  border-color: #5865f2;
}
.search-box .search-submit {
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: white;
  border-radius: 0.6rem;
  transition: background 0.2s;
}
.search-box .search-submit img, .search-box .search-submit svg {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.search-box .search-submit:hover {
  background: #333;
}
.search-box .search-close {
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-placeholder);
  border-radius: 0.6rem;
  transition: all 0.2s;
}
.search-box .search-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -21.4rem;
  width: 21.4rem;
  height: 100%;
  background: var(--bg-dropdown);
  z-index: 1000;
  overflow-y: auto;
  transition: left 0.3s;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu .mobile-menu-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
}
.mobile-menu .mobile-menu-header .mobile-menu-close {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-placeholder);
  border-radius: 50%;
  transition: all 0.2s;
}
.mobile-menu .mobile-menu-header .mobile-menu-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.mobile-menu .mobile-menu-list {
  padding: 1.1rem 0;
}
.mobile-menu .mobile-menu-item {
  border-bottom: 1px solid var(--bg-hover);
}
.mobile-menu .mobile-menu-item:last-child {
  border-bottom: none;
}
.mobile-menu .mobile-menu-item > a {
  display: block;
  padding: 1.1rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s;
}
.mobile-menu .mobile-menu-item > a:hover {
  background: var(--bg-hover);
  color: #5865f2;
}
.mobile-menu .mobile-menu-item.has-submenu .mobile-menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: all 0s;
}
.mobile-menu .mobile-menu-item.has-submenu .mobile-menu-toggle span {
  text-align: left;
  white-space: nowrap;
}
.mobile-menu .mobile-menu-item.has-submenu .mobile-menu-toggle:hover {
  background: var(--bg-hover);
  color: #5865f2;
}
.mobile-menu .mobile-menu-item.has-submenu .mobile-menu-toggle .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  color: var(--text-placeholder);
  margin-left: auto;
}
.mobile-menu .mobile-menu-item.has-submenu.open .mobile-menu-toggle {
  background: var(--bg-hover);
  color: #5865f2;
}
.mobile-menu .mobile-menu-item.has-submenu.open .mobile-menu-toggle .arrow-icon {
  transform: rotate(180deg);
}
.mobile-menu .mobile-menu-item.has-submenu.open .mobile-submenu {
  max-height: 35.7rem;
  opacity: 1;
}
.mobile-menu .mobile-menu-item .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
  background: var(--bg-sidebar);
}
.mobile-menu .mobile-menu-item .mobile-submenu li a {
  display: block;
  padding: 0.9rem 1.4rem 0.9rem 2.9rem;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.mobile-menu .mobile-menu-item .mobile-submenu li a:hover {
  background: var(--bg-hover);
  color: #5865f2;
}
.mobile-menu .mobile-menu-auth {
  padding: 1.4rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.6rem;
}
.mobile-menu .mobile-menu-auth a {
  flex: 1;
  padding: 0.7rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.4rem;
}
.mobile-menu .mobile-menu-auth a.mobile-login {
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.mobile-menu .mobile-menu-auth a.mobile-login:hover {
  background: var(--bg-hover);
}
.mobile-menu .mobile-menu-auth a.mobile-signup {
  color: white;
  background: #000;
}
.mobile-menu .mobile-menu-auth a.mobile-signup:hover {
  background: #333;
}
.content-wrapper {
  padding: 0.5rem 0 1.7rem;
  min-height: calc(100vh - 5.7rem);
}
.content-layout {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 5rem;
  align-items: start;
}
.content-layout.no-sidebar {
  grid-template-columns: 1fr;
}
.sidebar-right {
  position: sticky;
  top: 7.4rem;
}
.control-btn, .more-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-placeholder);
  background: var(--bg-sidebar);
  border-radius: 0.4rem;
  transition: all 0.2s;
}
.control-btn:hover, .more-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}
.more-btn {
  width: auto;
  padding: 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.badge-new, .badge-soon, .badge-doing, .badge-idle {
  padding: 2px 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0.3rem;
  text-transform: uppercase;
}
.badge-new {
  background: #51cf66;
  color: white;
}
.badge-soon {
  background: #5865f2;
  color: white;
}
.badge-doing {
  background: #339af0;
  color: white;
}
.badge-idle {
  background: var(--border-color);
  color: var(--text-placeholder);
}
.progress-bar {
  height: 0.6rem;
  background: var(--border-color);
  border-radius: 0.3rem;
  overflow: hidden;
}
.progress-bar.small {
  height: 0.4rem;
}
.progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #5865f2, #845ef7);
  border-radius: 0.3rem;
  transition: width 0.3s;
}
.main-content {
  min-height: 42.9rem;
}
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .rb-header .header-inner {
    height: 4rem;
  }
  .sidebar-left, .sidebar-right {
    display: none;
  }
  .gnb-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo .logo-pc {
    display: none;
  }
  .logo .logo-mo {
    display: block;
  }
  .user-actions .user-link, .user-actions .btn-signup {
    display: none;
  }
  .header-left {
    gap: 1.1rem;
  }
  .content-wrapper {
    padding: 0.5rem 0 1.1rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 1.4rem;
  }
  .rb-header .header-inner {
    padding: 0 1.4rem;
    height: 3.5rem;
    gap: 0.7rem;
  }
  .logo img {
    height: 2rem;
  }
  .logo span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .header-left {
    gap: 0.5rem;
  }
  .header-right {
    gap: 0.7rem;
  }
  .search-toggle, .write-toggle {
    width: 2.4rem;
    height: 2.4rem;
  }
  .search-toggle img, .search-toggle svg, .write-toggle img, .write-toggle svg {
    width: 18px;
    height: 18px;
  }
  .mobile-menu-toggle {
    padding: 0.4rem;
  }
  .mobile-menu-toggle span.hamburger-line {
    width: 1.4rem;
  }
}
.theme-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: 0.6rem;
  transition: all 0.2s;
}
.theme-toggle:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}
.theme-toggle.is-dark .icon-sun {
  display: block;
}
.theme-toggle.is-dark .icon-moon {
  display: none;
}
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  .container {
    padding: 0 1.1rem;
  }
  .rb-header .header-inner {
    padding: 0 1.1rem;
    height: 3.2rem;
    gap: 0.5rem;
  }
  .logo img {
    height: 1.8rem;
  }
  .logo span {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
  .header-left {
    gap: 0.4rem;
  }
  .header-right {
    gap: 0.5rem;
  }
  .search-toggle, .write-toggle {
    width: 2rem;
    height: 2rem;
  }
  .search-toggle img, .search-toggle svg, .write-toggle img, .write-toggle svg {
    width: 16px;
    height: 16px;
  }
  .mobile-menu-toggle {
    padding: 0.3rem;
  }
  .mobile-menu-toggle span.hamburger-line {
    width: 1.2rem;
  }
}
.products-page {
  width: 100%;
  max-width: 92rem;
  margin: 0 auto;
  padding: 5rem 2.5rem 7rem;
}
.products-hero {
  max-width: 52rem;
  margin-bottom: 4rem;
}
.products-hero .products-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f06445;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.products-hero h1 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.products-hero p {
  max-width: 45rem;
  margin: 1.6rem 0 0;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.product-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  padding: 2.3rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 1.2rem;
  background: var(--bg-body);
  color: var(--text-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card::before {
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(240, 100, 69, 0.08);
  content: "";
  transition: transform 0.35s ease;
}
.product-card:hover {
  border-color: rgba(240, 100, 69, 0.6);
  box-shadow: 0 18px 45px var(--shadow-color);
  text-decoration: none;
  transform: translateY(-6px);
}
.product-card:hover::before {
  transform: scale(1.25);
}
.product-card:hover .product-link b {
  transform: translateX(5px);
}
.product-number {
  position: relative;
  flex: 0 0 3.4rem;
  color: #f06445;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.product-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-content h2 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.product-content p {
  max-width: 30rem;
  margin: 0 0 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
.product-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  color: #f06445;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.product-link b {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .products-page {
    padding: 3.5rem 1.4rem 5rem;
  }
  .products-hero {
    margin-bottom: 2.5rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 15rem;
    padding: 1.8rem;
  }
}
@media (max-width: 480px) {
  .products-page {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }
  .product-card {
    padding: 1.5rem;
  }
  .product-number {
    flex-basis: 2.8rem;
  }
  .product-content h2 {
    font-size: 1.45rem;
  }
}
/* ========================================
   WPATES Login / Signup
======================================== */
/* 회원가입 숨김 */
.user-actions .btn-signup, .mobile-menu-auth .mobile-signup {
  display: none !important;
}
/* 로그인 한글 글자 숨김 */
.user-actions .user-link, .mobile-menu-auth .mobile-login {
  font-size: 0 !important;
}
/* LOGIN 영어로 표시 */
.user-actions .user-link::after, .mobile-menu-auth .mobile-login::after {
  content: "LOGIN";
  font-size: 1rem;
  font-weight: 500;
}
/* ========================================
   WPATES HOME PAGE
======================================== */
.main-content .xe-widget-wrapper:has(img[src$="WPATES-MAIN-HERO-1672x360.png"]) {
  float: none !important;
  width: 100% !important;
  max-width: 95rem;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.main-content .xe-widget-wrapper:has(img[src$="WPATES-MAIN-HERO-1672x360.png"]) > div > div:has(> img[src$="WPATES-MAIN-HERO-1672x360.png"]) {
  margin-bottom: 0 !important;
  border-radius: 1.3rem;
  overflow: hidden;
}
.home-latest, .home-expertise, .home-company, .home-contact {
  width: 100%;
  max-width: 95rem;
  margin-left: auto;
  margin-right: auto;
}
.home-eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #f06445;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.home-latest {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.home-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.home-title-row h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.home-title-row p {
  margin: 0.7rem 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
}
.home-text-link {
  flex: 0 0 auto;
  padding-bottom: 0.2rem;
  color: #f06445;
  font-size: 0.9rem;
  font-weight: 700;
}
.home-text-link span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}
.home-text-link:hover span {
  transform: translateX(4px);
}
/* ========================================
   CATEGORY SECTION
======================================== */
.home-expertise {
  margin-top: 2rem;
}
.home-section-head {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}
.home-section-head h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 2.25rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.15;
}
.home-section-head p {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.home-category-card {
  position: relative;
  display: flex;
  min-height: 19rem;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 1.1rem;
  background: var(--bg-body);
  color: var(--text-primary);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.home-category-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(240, 100, 69, 0.07);
  content: "";
  transition: transform 0.3s ease;
}
.home-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 100, 69, 0.35);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}
.home-category-card:hover::after {
  transform: scale(1.15);
}
.home-category-card:hover .home-category-link b {
  transform: translateX(5px);
}
.home-category-number {
  flex: 0 0 2.8rem;
  padding-top: 0.15rem;
  color: #f06445;
  font-size: 0.8rem;
  font-weight: 700;
}
.home-category-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}
.home-category-content h3 {
  min-height: 2.5em;
  margin: 0 0 1.1rem;
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.25;
}
.home-category-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.home-category-link {
  margin-top: auto;
  padding-top: 1.5rem;
  color: #f06445;
  font-size: 0.88rem;
  font-weight: 700;
}
.home-category-link b {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 0.2s ease;
}
/* ========================================
   COMPANY SECTION
======================================== */
.home-company {
  margin-top: 2rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(240, 100, 69, 0.055), rgba(255, 255, 255, 0));
  border: 1px solid var(--border-color);
}
.home-company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 2.5rem;
}
.home-company-copy h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.18;
}
.home-company-copy p {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.home-company-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 0;
}
.home-company-categories div {
  display: flex;
  flex-direction: column;
  min-height: 7rem;
  padding: 1.4rem;
  border-bottom: 1px solid var(--border-color);
}
.home-company-categories div:nth-child(odd) {
  border-right: 1px solid var(--border-color);
}
.home-company-categories div:nth-child(3), .home-company-categories div:nth-child(4) {
  border-bottom: 0;
}
.home-company-categories strong {
  margin-bottom: 0.65rem;
  color: #f06445;
  font-size: 0.75rem;
}
.home-company-categories span {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 650;
}
/* ========================================
   CONTACT CTA
======================================== */
.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 2.5rem;
  border-radius: 1.3rem;
  background: #222;
  color: #fff;
}
.home-contact .home-eyebrow {
  color: #f5825f;
}
.home-contact h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.035em;
}
.home-contact p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}
.home-contact-btn {
  flex: 0 0 auto;
  padding: 1rem 1.6rem;
  border-radius: 0.5rem;
  background: #f06445;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 700;
}
.home-contact-btn span {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
.home-contact-btn:hover span {
  transform: translateX(5px);
}
/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-company-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .main-content .xe-widget-wrapper:has(img[src$="WPATES-MAIN-HERO-1672x360.png"]) {
    width: calc(100% - 2rem) !important;
  }
  .home-latest, .home-expertise, .home-company, .home-contact {
    width: calc(100% - 2rem);
  }
  .home-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .home-section-head h2, .home-company-copy h2, .home-contact h2 {
    font-size: 1.7rem;
  }
  .home-category-grid {
    grid-template-columns: 1fr;
  }
  .home-category-card {
    min-height: 16rem;
  }
  .home-category-content h3 {
    min-height: 0;
  }
  .home-company-inner {
    padding: 2rem;
  }
  .home-company-categories {
    grid-template-columns: 1fr;
  }
  .home-company-categories div, .home-company-categories div:nth-child(odd), .home-company-categories div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .home-company-categories div:last-child {
    border-bottom: 0;
  }
  .home-contact {
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
  }
}
/*# sourceMappingURL=e4504cb85aa877a1706f59721a457594b8ffb519.layout.scss.map */
