@charset "UTF-8";

/* hwy Theme CSS - Huawei Cloud Modern Style */
:root {
  --hwy-primary: #0055FF;
  --hwy-primary-hover: #0044CC;
  --hwy-dark: #1F1F1F;
  --hwy-dark-bg: #121212;
  --hwy-gray-bg: #F5F6F8;
  --hwy-text: #252B3A;
  --hwy-text-secondary: #575D6C;
  --hwy-border: #E5E6E8;

  --hwy-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --hwy-radius: 2px;
  --hwy-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  --hwy-shadow-hover: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  --hwy-transition: all 0.3s ease-in-out;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 64px;
  font-family: var(--hwy-font);
  color: var(--hwy-text);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Make the 64px body padding-top area dark to match the hero carousel,
   so the fixed nav gap is invisible regardless of sub-pixel rendering */
body#hwy-index {
  padding-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--hwy-transition);
}

.hwy-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hwy-hero {
  position: relative;
  width: 100% !important;
  height: 420px;
  margin: 0;
  padding: 0;
  background-color: var(--hwy-dark-bg);
  overflow: hidden;
  transform: none !important;
  transform-origin: unset !important;
}

.hwy-swiper-container {
  width: 100%;
  height: 100%;
}

.hwy-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.hwy-hero .hwy-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
  padding-top: 64px !important;
  box-sizing: border-box !important;
}

.hwy-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hwy-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 35%),
    linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
}

.hwy-slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 50%;
}

.hwy-slide-badge {
  display: inline-block;
  background: rgba(0, 85, 255, 0.15);
  color: var(--hwy-primary);
  padding: 4px 12px;
  border-left: 3px solid var(--hwy-primary);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hwy-slide-title {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.hwy-slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.hwy-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--hwy-radius);
  cursor: pointer;
  text-align: center;
  transition: var(--hwy-transition);
}

.hwy-btn-primary {
  background-color: var(--hwy-primary);
  color: #fff;
  border: 1px solid var(--hwy-primary);
}

.hwy-btn-primary:hover {
  background-color: var(--hwy-primary-hover);
  border-color: var(--hwy-primary-hover);
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
}

/* ==========================================================================
   Quick Nav Section
   ========================================================================== */
.hwy-quick-nav {
  position: relative;
  margin-top: 0;
  z-index: 10;
}

.hwy-quick-grid {
  display: flex;
  background: #fff;
  box-shadow: var(--hwy-shadow);
  border-radius: var(--hwy-radius);
}

.hwy-quick-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--hwy-border);
}

.hwy-quick-item:last-child {
  border-right: none;
}

.hwy-quick-item:hover {
  background: var(--hwy-gray-bg);
}

.hwy-quick-text h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--hwy-text);
  transition: var(--hwy-transition);
}

.hwy-quick-item:hover .hwy-quick-text h4 {
  color: var(--hwy-primary);
}

.hwy-quick-text p {
  margin: 0;
  font-size: 13px;
  color: var(--hwy-text-secondary);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.hwy-section {
  padding: 80px 0;
}

.hwy-section-gray {
  background-color: var(--hwy-gray-bg);
}

.hwy-section-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 10px 0;
  color: var(--hwy-text);
}

.hwy-section-subtitle {
  text-align: center;
  color: var(--hwy-text-secondary);
  font-size: 16px;
  margin: 0 0 40px 0;
}

.hwy-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hwy-product-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--hwy-radius);
  border: 1px solid transparent;
  transition: var(--hwy-transition);
  position: relative;
  overflow: hidden;
}

.hwy-product-card-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
}

.hwy-product-card:hover {
  border-color: var(--hwy-primary);
  box-shadow: var(--hwy-shadow-hover);
  transform: translateY(-4px);
}

.hwy-product-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--hwy-text);
  transition: var(--hwy-transition);
}

.hwy-product-card-horizontal .hwy-product-icon {
  margin-bottom: 0;
  margin-right: 24px;
  flex-shrink: 0;
}

.hwy-product-card:hover .hwy-product-icon {
  color: var(--hwy-primary);
}

.hwy-product-card h3,
.hwy-product-info h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.hwy-product-card p,
.hwy-product-info p {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.hwy-product-card-horizontal .hwy-product-info {
  flex: 1;
}

.hwy-product-card-horizontal .hwy-product-info h3 {
  margin: 0 0 8px 0;
}

.hwy-product-card-horizontal .hwy-product-info p {
  margin: 0;
}

.hwy-product-price {
  font-size: 20px;
  color: var(--hwy-primary);
  font-weight: 600;
  display: flex;
  align-items: baseline;
}

.hwy-product-price span {
  font-size: 12px;
  color: var(--hwy-text-secondary);
  font-weight: normal;
  margin-left: 4px;
}

.hwy-product-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 20px;
  flex-shrink: 0;
}

.hwy-buy-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  color: var(--hwy-primary);
  border: 1px solid var(--hwy-primary);
  border-radius: var(--hwy-radius);
  font-size: 14px;
  transition: var(--hwy-transition);
}

.hwy-buy-btn:hover {
  background: var(--hwy-primary);
  color: #fff;
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.hwy-sol-wrapper {
  display: flex;
  gap: 40px;
}

.hwy-sol-tabs {
  width: 250px;
  flex-shrink: 0;
}

.hwy-sol-tab {
  padding: 16px 20px;
  font-size: 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--hwy-transition);
  color: var(--hwy-text);
  background: #fff;
  margin-top: 40px;
}

.hwy-news-card {
  border: 1px solid var(--hwy-border);
  border-radius: var(--hwy-radius);
  overflow: hidden;
  transition: var(--hwy-transition);
}

.hwy-news-card:hover {
  box-shadow: var(--hwy-shadow-hover);
}

.hwy-news-img {
  height: 180px;
  background: var(--hwy-gray-bg);
  overflow: hidden;
}

.hwy-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hwy-news-card:hover .hwy-news-img img {
  transform: scale(1.05);
}

.hwy-news-content {
  padding: 24px;
}

.hwy-news-date {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  margin-bottom: 10px;
  display: block;
}

.hwy-news-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwy-news-desc {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* Media Queries for New Sections */
@media (max-width: 768px) {
  .hwy-infra-stats {
    flex-direction: column;
    gap: 30px;
  }

  .hwy-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwy-news-grid {
    grid-template-columns: 1fr;
  }
}

.hwy-sol-content-area {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hwy-sol-content-area.active {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hwy-sol-text {
  flex: 1;
}

.hwy-sol-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--hwy-text-primary);
}

.hwy-sol-text p {
  color: var(--hwy-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hwy-sol-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hwy-sol-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--hwy-text-secondary);
}

.hwy-sol-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--hwy-primary);
  font-weight: bold;
}

.hwy-sol-img {
  flex: 1;
  text-align: right;
}

.hwy-sol-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */
.hwy-advantages {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.hwy-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.hwy-adv-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hwy-adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hwy-adv-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: rgba(34, 84, 244, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.hwy-adv-card:hover .hwy-adv-icon {
  transform: scale(1.1);
  background: rgba(34, 84, 244, 0.1);
}

.hwy-adv-icon i {
  font-size: 32px;
  color: var(--hwy-primary);
}

.hwy-adv-text {
  flex: 1;
}

.hwy-adv-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  margin: 0 0 10px 0;
}

.hwy-adv-text p {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.hwy-cta {
  background: linear-gradient(135deg, #192a56 0%, #2254f4 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.hwy-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.hwy-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hwy-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hwy-cta-btn {
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hwy-cta-primary {
  background: #fff;
  color: #2254f4;
}

.hwy-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hwy-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hwy-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
  .hwy-adv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hwy-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hwy-adv-grid {
    grid-template-columns: 1fr;
  }

  .hwy-cta-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Bento Box Products Section
   ========================================================================== */
.hwy-product-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.hwy-bento-card {
  background-color: #fff;
  background-image: url('/web/hwy/img/index/bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
}



.hwy-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 85, 255, 0.12);
  border-color: rgba(0, 85, 255, 0.2);
}

.hwy-bento-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.hwy-bento-card:hover h3 {
  color: var(--hwy-primary);
}

.hwy-bento-card p {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hwy-bento-icon {
  font-size: 60px;
  color: var(--hwy-primary);
  opacity: 0.08;
  position: absolute;
  bottom: -10px;
  right: 10px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.hwy-bento-card:hover .hwy-bento-icon {
  opacity: 0.25;
  transform: scale(1.15) translate(-5px, -5px);
}

/* Card 1: ECS (Large Left) */
.hwy-bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 50px;
}

.hwy-bento-card-large h3 {
  font-size: 28px;
}

.hwy-bento-card-large p {
  font-size: 16px;
  max-width: 80%;
}

.hwy-bento-card-large .hwy-bento-icon {
  font-size: 160px;
  bottom: -30px;
  right: -20px;
}

/* Card 2: RDS (Top Right Horizontal) */
.hwy-bento-card-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.hwy-bento-card-wide .hwy-bento-icon {
  font-size: 80px;
  bottom: -15px;
  right: 10px;
}

/* Card 3 & 4: CDN & OSS (Bottom Right Squares) */
.hwy-bento-card-square {
  grid-column: span 1;
  grid-row: span 1;
}

/* Tablet: 2-column layout */
@media (max-width: 992px) {
  .hwy-product-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  .hwy-bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: 30px;
    min-height: 200px;
  }

  .hwy-bento-card-wide {
    grid-column: span 2;
    min-height: 160px;
  }

  .hwy-bento-card-square {
    grid-column: span 1;
    min-height: 160px;
  }
}

/* Mobile: Compact 2x2 grid */
@media (max-width: 576px) {
  .hwy-product-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hwy-bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: 24px;
    min-height: 180px;
  }

  .hwy-bento-card-large h3 {
    font-size: 20px;
  }

  .hwy-bento-card-large p {
    font-size: 14px;
  }

  .hwy-bento-card-wide {
    grid-column: span 2;
    min-height: 140px;
  }

  .hwy-bento-card-square {
    grid-column: span 1;
    min-height: 140px;
    padding: 20px;
  }

  .hwy-bento-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .hwy-bento-card p {
    font-size: 13px;
  }

  .hwy-bento-card-large .hwy-bento-icon {
    font-size: 100px;
  }
}



/* ==========================================================================
   News and Help Dual Column Layout
   ========================================================================== */
.hwy-news-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hwy-news-column,
.hwy-help-column {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.hwy-news-column:hover,
.hwy-help-column:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hwy-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.hwy-news-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.hwy-news-header h3 i {
  color: var(--hwy-primary);
  font-size: 22px;
}

.hwy-news-header a {
  color: var(--hwy-text-secondary);
  font-size: 14px;
  text-decoration: none;
}

.hwy-news-header a:hover {
  color: var(--hwy-primary);
}

.hwy-news-item,
.hwy-help-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #f5f5f5;
}

.hwy-news-item:last-child,
.hwy-help-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hwy-news-item a,
.hwy-help-item a {
  color: var(--hwy-text-primary);
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
  transition: color 0.2s;
}

.hwy-news-item a:hover,
.hwy-help-item a:hover {
  color: var(--hwy-primary);
}

.hwy-news-item span,
.hwy-help-item span {
  color: #999;
  font-size: 13px;
}

.hwy-loading {
  padding: 20px 0;
  color: #999;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .hwy-news-help-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   News & Help Tabs + Headline Layout
   ========================================================================== */
.hwy-news-tabs-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.hwy-news-tab {
  font-size: 30px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}

.hwy-news-tab:hover {
  color: var(--hwy-text-primary);
}

.hwy-news-tab.active {
  color: var(--hwy-text-primary);
}

.hwy-news-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--hwy-primary);
  border-radius: 2px;
}

.hwy-news-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.hwy-news-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headline Layout */
.hwy-news-headline-layout {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hwy-news-headline {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hwy-news-headline:hover {
  transform: translateY(-5px);
}

.hwy-news-headline-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.hwy-news-headline.hwy-sol-tab {
  padding: 16px 20px;
  font-size: 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--hwy-transition);
  color: var(--hwy-text);
  background: #fff;
  margin-bottom: 5px;
}

.hwy-sol-tab:hover {
  background: var(--hwy-gray-bg);
}

.hwy-sol-tab.active {
  border-left-color: var(--hwy-primary);
  color: var(--hwy-primary);
  font-weight: 600;
  background: #fff;
  box-shadow: var(--hwy-shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .hwy-products-grid {
    grid-template-columns: 1fr;
  }

  /* Industry Solutions Mobile Adaptation */
  .hwy-sol-wrapper {
    flex-direction: column;
  }

  .hwy-sol-tabs {
    width: 100%;
    display: flex;
    overflow-x: auto;
    margin-bottom: 20px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }

  .hwy-sol-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 12px 16px;
    margin-bottom: 0;
  }

  .hwy-sol-tab.active {
    border-left: none;
    border-bottom-color: var(--hwy-primary);
  }

  .hwy-sol-content-area {
    padding: 20px;
  }

  .hwy-sol-content-area.active {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hwy-sol-text h3 {
    font-size: 20px;
  }

  .hwy-sol-img {
    width: 100%;
    text-align: center;
  }

  .hwy-slide-content {
    width: 100%;
    padding: 0 20px;
  }
}

/* ==========================================================================
   Global Infrastructure Section
   ========================================================================== */
.hwy-infra {
  background-color: var(--hwy-dark-bg);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hwy-infra-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/web/novahl2/assets/img/index/2d-map_1 (1).jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.12;
  z-index: 0;
}

.hwy-infra .hwy-container {
  position: relative;
  z-index: 1;
}

.hwy-infra-header {
  text-align: center;
  margin-bottom: 60px;
}

.hwy-infra-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

.hwy-infra-header p {
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
}

.hwy-infra-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  text-align: center;
}

@media (max-width: 1024px) {
  .hwy-infra-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 10px !important;
  }
}

.hwy-infra-stat-item {
  width: 100%;
  min-width: 0;
}

.hwy-infra-num {
  font-size: 48px;
  color: var(--hwy-primary);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.hwy-infra-num span {
  font-size: 22px;
  font-weight: 500;
}

.hwy-infra-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .hwy-infra {
    padding: 40px 0;
  }

  .hwy-infra-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 10px !important;
  }

  .hwy-infra-stat-item {
    min-width: 0;
  }

  .hwy-infra-num {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .hwy-infra-num span {
    font-size: 16px;
  }

  .hwy-infra-label {
    font-size: 13px;
  }
}

/* ==========================================================================
   Security & Compliance Section
   ========================================================================== */
.hwy-security {
  padding: 80px 0;
  background: var(--hwy-gray-bg);
}

.hwy-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hwy-cert-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--hwy-border);
  transition: var(--hwy-transition);
}

.hwy-cert-card:hover {
  border-color: var(--hwy-primary);
  box-shadow: var(--hwy-shadow);
  transform: translateY(-4px);
}

.hwy-cert-card img {
  height: 60px;
  margin-bottom: 15px;
}

.hwy-cert-card h4 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
}

.hwy-cert-card p {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  margin: 0;
}

/* ==========================================================================
   Partners & Marquee Section
   ========================================================================== */
.hwy-partners {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--hwy-border);
}

.hwy-partners h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.hwy-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hwy-marquee {
  display: flex;
  width: 200%;
  animation: hwyMarquee 20s linear infinite;
}

.hwy-marquee-item {
  flex: 1 0 auto;
  width: 150px;
  margin: 0 30px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--hwy-transition);
}

.hwy-marquee-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.hwy-marquee-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes hwyMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   News & Resources Section
   ========================================================================== */
.hwy-news {
  padding: 80px 0;
  background: #fff;
}

.hwy-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.hwy-news-card {
  border: 1px solid var(--hwy-border);
  border-radius: var(--hwy-radius);
  overflow: hidden;
  transition: var(--hwy-transition);
}

.hwy-news-card:hover {
  box-shadow: var(--hwy-shadow-hover);
}

.hwy-news-img {
  height: 180px;
  background: var(--hwy-gray-bg);
  overflow: hidden;
}

.hwy-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hwy-news-card:hover .hwy-news-img img {
  transform: scale(1.05);
}

.hwy-news-content {
  padding: 24px;
}

.hwy-news-date {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  margin-bottom: 10px;
  display: block;
}

.hwy-news-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwy-news-desc {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Media Queries for New Sections */
@media (max-width: 768px) {
  .hwy-infra-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .hwy-infra-stat-item:last-child {
    grid-column: span 2;
  }

  .hwy-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwy-news-grid {
    grid-template-columns: 1fr;
  }
}

.hwy-news-headline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hwy-news-headline:hover .hwy-news-headline-img img {
  transform: scale(1.05);
}

.hwy-news-headline-text {
  padding: 20px 0 0 0;
}

.hwy-news-headline-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hwy-text-primary);
  margin-top: 10px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.hwy-news-headline:hover .hwy-news-headline-text h3 {
  color: var(--hwy-primary);
}

.hwy-news-headline-text p {
  color: var(--hwy-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Side List */
.hwy-news-side-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hwy-news-side-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #f0f0f0;
}

.hwy-news-side-item a {
  font-size: 15px;
  color: var(--hwy-text-primary);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
  transition: color 0.2s;
}

.hwy-news-side-item a:hover {
  color: var(--hwy-primary);
}

.hwy-news-side-item span {
  color: #999;
  font-size: 14px;
}

.hwy-news-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(34, 84, 244, 0.05);
  color: var(--hwy-primary);
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.hwy-news-more-btn:hover {
  background: var(--hwy-primary);
  color: #fff;
}

/* Help Grid Layout */
.hwy-help-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hwy-help-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.hwy-help-card i {
  font-size: 28px;
  color: var(--hwy-primary);
  margin-right: 15px;
}

.hwy-help-card h4 {
  font-size: 16px;
  color: var(--hwy-text-primary);
  font-weight: 600;
  margin: 0;
  transition: color 0.3s;
}

.hwy-help-card:hover {
  border-color: var(--hwy-primary);
  background: #fff;
  box-shadow: 0 5px 15px rgba(34, 84, 244, 0.1);
}

.hwy-help-card:hover h4 {
  color: var(--hwy-primary);
}

@media (max-width: 768px) {
  .hwy-news-headline-layout {
    flex-direction: column;
  }

  .hwy-help-grid-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Apple Style Bento Box Layout (For Tabs Content)
   ========================================================================== */
.hwy-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}

.hwy-bento-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.hwy-bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hwy-bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hwy-bento-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

.hwy-bento-large .hwy-bento-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hwy-bento-large h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.hwy-bento-vertical {
  grid-column: span 1;
  grid-row: span 2;
  background: var(--hwy-primary);
  color: #fff;
}

.hwy-bento-vertical h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.hwy-bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.hwy-bento-small h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwy-bento-small:hover h3 {
  color: var(--hwy-primary);
}

.hwy-bento-date {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 10px;
}

.hwy-bento-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--hwy-primary);
}

.hwy-bento-vertical .hwy-bento-icon {
  color: rgba(255, 255, 255, 0.8);
}

.hwy-bento-desc {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hwy-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .hwy-bento-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }

  .hwy-bento-vertical {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hwy-bento-grid {
    grid-template-columns: 1fr;
  }

  .hwy-bento-large {
    grid-column: span 1;
    height: 250px;
  }

  .hwy-bento-vertical {
    grid-column: span 1;
    height: auto;
  }
}

/* ==========================================================================
   Article List (News & Announcements)
   ========================================================================== */
.hwy-page-banner {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.hwy-page-banner h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hwy-page-banner p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.hwy-article-section {
  padding: 60px 0;
  background: #f7f8fa;
  min-height: 500px;
}

.hwy-article-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--hwy-border);
}

.hwy-article-tab {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--hwy-text-secondary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.hwy-article-tab:hover {
  color: var(--hwy-primary);
}

.hwy-article-tab.active {
  color: var(--hwy-primary);
  border-bottom-color: var(--hwy-primary);
}

.hwy-article-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 20px 40px;
}

.hwy-article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed var(--hwy-border);
  transition: all 0.3s ease;
}

.hwy-article-item:last-child {
  border-bottom: none;
}

.hwy-article-item:hover {
  transform: translateX(5px);
}

.hwy-article-item-title {
  font-size: 16px;
  color: var(--hwy-text-primary);
  text-decoration: none;
  font-weight: 500;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
  transition: color 0.3s;
}

.hwy-article-item:hover .hwy-article-item-title {
  color: var(--hwy-primary);
}

.hwy-article-item-time {
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

/* Pagination */
.hwy-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.hwy-pagination-total {
  font-size: 14px;
  color: var(--hwy-text-secondary);
}

.hwy-pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hwy-pagination li a,
.hwy-pagination li span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--hwy-border);
  border-radius: 4px;
  color: var(--hwy-text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.hwy-pagination li a:hover {
  background: var(--hwy-gray-bg);
  border-color: #ddd;
}

.hwy-pagination li a.active {
  background: var(--hwy-primary);
  color: #fff;
  border-color: var(--hwy-primary);
}

/* Article Detail */
.hwy-article-detail {
  padding: 60px 0;
  background: #fff;
}

.hwy-article-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.hwy-article-detail-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--hwy-border);
  padding-bottom: 30px;
}

.hwy-article-detail-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--hwy-text-primary);
}

.hwy-article-detail-header .meta {
  font-size: 14px;
  color: #999;
}

.hwy-article-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hwy-text-secondary);
}

.hwy-article-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/* ==========================================================================
   Help Center (Document Layout)
   ========================================================================== */
.hwy-doc-layout {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.hwy-doc-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 20px 0;
  align-self: flex-start;
  position: sticky;
  top: 80px;
}

.hwy-doc-content {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 40px;
  min-height: 600px;
}

.hwy-doc-cat {
  margin-bottom: 15px;
}

.hwy-doc-cat-title {
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.hwy-doc-cat-title:hover {
  background: var(--hwy-gray-bg);
}

.hwy-doc-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  /* can be toggled */
}

.hwy-doc-menu li a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: 14px;
  color: var(--hwy-text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}

.hwy-doc-menu li a:hover,
.hwy-doc-menu li a.active {
  color: var(--hwy-primary);
  background: rgba(34, 84, 244, 0.05);
  border-right: 3px solid var(--hwy-primary);
}

@media (max-width: 768px) {
  .hwy-doc-layout {
    flex-direction: column;
  }

  .hwy-doc-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }

  .hwy-article-list {
    padding: 15px;
  }

  .hwy-pagination-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   Responsive Header & Footer (Mobile Adaptation)
   ========================================================================== */

/* Header */
.hwy-global-header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.hwy-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: relative;
}

.hwy-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--hwy-primary);
  letter-spacing: 1px;
}

.hwy-nav-links {
  display: flex;
  gap: 30px;
}

.hwy-nav-links a {
  font-weight: 500;
  color: var(--hwy-text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.hwy-nav-links a.active,
.hwy-nav-links a:hover {
  color: var(--hwy-primary);
}

.hwy-auth-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hwy-auth-btns a.login {
  font-weight: 500;
  color: var(--hwy-text-primary);
  text-decoration: none;
}

.hwy-auth-btns a.login:hover {
  color: var(--hwy-primary);
}

.hwy-nav-menu-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 50px;
}

.hwy-mobile-menu-btn {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: var(--hwy-text, #1e293b);
  border-radius: 6px;
  transition: background 0.2s;
}

.hwy-mobile-menu-btn:hover {
  background: #f1f5f9;
}

.hwy-mobile-menu-btn .hwy-icon-close {
  display: none;
}

.hwy-mobile-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hwy-header-container.menu-open ~ .hwy-mobile-overlay,
.hwy-header-container.menu-open + .hwy-mobile-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .hwy-mobile-menu-btn {
    display: flex !important;
  }

  .hwy-header-container.menu-open .hwy-mobile-menu-btn .hwy-icon-open {
    display: none !important;
  }

  .hwy-header-container.menu-open .hwy-mobile-menu-btn .hwy-icon-close {
    display: block !important;
  }

  .hwy-global-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 64px !important;
    background: #ffffff !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08) !important;
    z-index: 1000 !important;
  }

  .hwy-header-container {
    position: relative !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Right-Angled Left Drawer Menu below Fixed Header */
  .hwy-nav-menu-wrapper {
    position: fixed !important;
    top: 64px !important;
    left: -320px !important;
    right: auto !important;
    width: 280px !important;
    max-width: 82vw !important;
    height: calc(100vh - 64px) !important;
    max-height: calc(100vh - 64px) !important;
    margin-left: 0 !important;
    background: #ffffff !important;
    padding: 16px 18px 24px !important;
    box-shadow: 8px 0 24px rgba(15, 23, 42, 0.08) !important;
    border-right: 1px solid #e2e8f0 !important;
    border-bottom: none !important;
    border-radius: 0 !important; /* Zero rounded corners - completely straight frame */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    z-index: 999 !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }

  /* When menu is active (slides in from left) */
  .hwy-header-container.menu-open .hwy-nav-menu-wrapper {
    left: 0 !important;
  }

  .hwy-mobile-drawer-header {
    display: none !important;
  }

  /* Minimal & Straight Mobile Navigation */
  .hwy-nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .hwy-nav-links > a,
  .hwy-nav-dropdown-wrapper {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hwy-nav-links > a,
  .hwy-nav-dropdown-wrapper > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    padding: 12px 14px !important;
    border-radius: 0 !important; /* Straight right-angled corners */
    border-bottom: 1px solid #f8fafc !important;
    text-decoration: none !important;
    writing-mode: horizontal-tb !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    transition: background 0.2s, color 0.2s !important;
  }

  /* Light & Soft Accent Tint for Active Top Items */
  .hwy-nav-links > a:hover,
  .hwy-nav-dropdown-wrapper > a:hover,
  .hwy-nav-dropdown-wrapper.active > a {
    background: #f0f6ff !important;
    color: var(--hwy-primary, #0052d9) !important;
  }

  .hwy-nav-dropdown-wrapper .hwy-chevron-down {
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .hwy-nav-dropdown-wrapper.active .hwy-chevron-down {
    transform: rotate(180deg) !important;
  }

  /* Sub-menu Container */
  .hwy-nav-dropdown-wrapper .hwy-nav-dropdown-menu,
  .hwy-nav-dropdown-wrapper:hover .hwy-nav-dropdown-menu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-left: none !important; /* Removed vertical blue bar */
    background: transparent !important;
    border-radius: 0 !important;
    padding: 2px 0 4px 10px !important;
    margin: 2px 0 4px 4px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .hwy-nav-dropdown-wrapper.active .hwy-nav-dropdown-menu,
  .hwy-nav-dropdown-wrapper.active:hover .hwy-nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hwy-nav-dropdown-inner {
    display: block !important;
    min-height: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hwy-nav-dropdown-left,
  .hwy-nav-dropdown-left::before {
    display: none !important;
  }

  .hwy-nav-dropdown-right {
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .hwy-nav-dropdown-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    grid-template-columns: 1fr !important;
  }

  .hwy-nav-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border-radius: 0 !important; /* Straight right-angled corners */
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transition: background 0.2s ease !important;
  }

  .hwy-nav-dropdown-item:hover,
  .hwy-nav-dropdown-item:active {
    background: #f8fafc !important;
    color: var(--hwy-primary, #0052d9) !important;
  }

  .hwy-nav-dropdown-icon {
    width: 22px !important;
    height: 22px !important;
    background: transparent !important;
    color: var(--hwy-primary, #0052d9) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .hwy-nav-dropdown-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .hwy-nav-dropdown-text {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 1 !important;
  }

  .hwy-nav-dropdown-text h4 {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    color: #334155 !important;
  }

  .hwy-nav-dropdown-text p {
    display: none !important;
  }

  /* Bottom Auth Area & Hide Avatar on Mobile */
  .hwy-auth-btns {
    flex-direction: row !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 16px !important;
    border-top: 1px solid #f1f5f9 !important;
    box-sizing: border-box !important;
  }

  .hwy-auth-btns a {
    flex: 1 !important;
    width: auto !important;
    text-align: center !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0 !important; /* Straight right-angled corners */
  }

  .hwy-logged-wrap {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hwy-logged-wrap[style*="display: none"] {
    display: none !important;
  }

  .hwy-logged-wrap #hwy-user-avatar {
    display: none !important;
  }

  .hwy-logged-wrap a#hwy-console-btn {
    flex: 1 !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0 !important; /* Straight right-angled corners */
  }

  .hwy-mobile-menu-btn {
    display: block;
    cursor: pointer;
  }
}

/* Footer */
.hwy-footer-wrapper {
  background: #1C1D21;
  color: #8C92A4;
  padding: 60px 0 20px;
  margin-top: 0;
  font-size: 14px;
  border-top: 1px solid #2A2C35;
}

.hwy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.hwy-footer-brand-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hwy-footer-col-title {
  color: #fff;
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 600;
}

.hwy-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.5;
}

.hwy-footer-list a {
  color: #8C92A4;
  text-decoration: none;
  transition: color 0.3s;
}

.hwy-footer-list a:hover {
  color: #fff;
}

.hwy-footer-socials {
  display: flex;
  gap: 15px;
}

.hwy-footer-socials i {
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
  color: #8C92A4;
}

.hwy-footer-socials i:hover {
  color: #fff;
}

/* Footer QR Codes Area */
.hwy-footer-qrcodes {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.hwy-qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hwy-qrcode-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 85, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hwy-qrcode-img {
  width: 76px;
  height: 76px;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px;
  box-sizing: border-box;
  object-fit: contain;
  display: block;
}

.hwy-qrcode-label {
  font-size: 12px;
  color: #A0A5B5;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hwy-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hwy-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .hwy-footer-wrapper {
    padding: 40px 0 20px;
  }
}

/* Homepage Hero Adaptation */
@media (max-width: 768px) {
  .hwy-hero {
    height: 320px;
  }

  .hwy-hero h1 {
    font-size: 28px !important;
    margin-bottom: 12px;
  }

  .hwy-hero p {
    font-size: 14px !important;
    margin-bottom: 24px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hwy-hero .hwy-btn {
    padding: 8px 24px;
    font-size: 14px;
  }
}

/* Homepage Quick Grid Adaptation */
/* Homepage Quick Grid Adaptation */
@media (max-width: 768px) {
  .hwy-quick-nav {
    margin-top: 10px;
    padding: 0 10px;
  }

  .hwy-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .hwy-quick-item {
    padding: 12px 10px;
    border-right: 1px solid var(--hwy-border);
    border-bottom: 1px solid var(--hwy-border);
  }

  /* Remove right border on 2nd column items */
  .hwy-quick-item:nth-child(2n) {
    border-right: none;
  }

  /* Remove bottom border on last row items */
  .hwy-quick-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hwy-quick-text h4 {
    margin: 0 0 3px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
  }

  .hwy-quick-text p {
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hwy-quick-item {
    padding: 10px 6px;
  }

  .hwy-quick-text h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .hwy-quick-text p {
    font-size: 10.5px;
  }
}


/* ==========================================================================
   Advantages Section
   ========================================================================== */
.hwy-advantages {
  padding: 80px 0;
  background: #fff;
}

.hwy-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.hwy-adv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--hwy-gray-bg);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--hwy-transition);
}

.hwy-adv-card:hover {
  border-color: var(--hwy-primary);
  background: #fff;
  box-shadow: var(--hwy-shadow-hover);
  transform: translateY(-4px);
}

.hwy-adv-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.1);
}

.hwy-adv-text h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--hwy-text);
  margin: 0 0 8px;
}

.hwy-adv-text p {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .hwy-adv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .hwy-advantages {
    padding: 50px 0;
  }

  .hwy-adv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .hwy-adv-card {
    padding: 20px 18px;
  }

  .hwy-adv-icon {
    width: 44px;
    height: 44px;
  }

  .hwy-adv-text h3 {
    font-size: 16px;
  }

  /* Global Section Title Mobile Scaling */
  .hwy-section {
    padding: 50px 0;
  }

  .hwy-section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hwy-section-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0 15px;
  }

  /* News Tabs Mobile Scaling */
  .hwy-news-tabs-header {
    gap: 20px;
  }

  .hwy-news-tab {
    font-size: 20px;
  }
}

/* ==========================================================================
   Article Navigation (Prev / Next)
   ========================================================================== */
.hwy-article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--hwy-border);
}

.hwy-article-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hwy-article-nav-prev {
  text-align: left;
  padding-right: 20px;
}

.hwy-article-nav-next {
  text-align: right;
  padding-left: 20px;
}

.hwy-article-nav-item span {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  margin-bottom: 5px;
}

.hwy-article-nav-item a {
  font-size: 16px;
  color: var(--hwy-text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hwy-article-nav-item a:hover {
  color: var(--hwy-primary);
}

@media (max-width: 768px) {
  .hwy-article-nav {
    flex-direction: column;
    gap: 20px;
  }

  .hwy-article-nav-item {
    width: 100%;
  }

  .hwy-article-nav-prev,
  .hwy-article-nav-next {
    text-align: left;
    padding: 0;
  }
}

/* Handle broken images gracefully in article body */
.hwy-article-detail-body img {
  position: relative;
  min-height: 50px;
}

.hwy-article-detail-body img::after {
  content: 'ͼƬ����ʧ��';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f8fa;
  color: #ccc;
  font-size: 14px;
  border: 1px dashed #e0e0e0;
  border-radius: 8px;
}

/* ==========================================================================
   Solution Pages - Premium Pain Points Layout
   ========================================================================== */
.hwy-pain-section {
  padding: 35px 0 50px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.hwy-pain-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.hwy-pain-text {
  flex: 0 0 350px;
  position: sticky;
  top: 100px;
}

.hwy-pain-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hwy-pain-text p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.hwy-pain-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.hwy-pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.hwy-pain-card::before {
  content: '' '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--hwy-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hwy-pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hwy-pain-card:hover::before {
  transform: scaleX(1);
}

.hwy-pain-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--hwy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.hwy-pain-card:hover .hwy-pain-icon {
  background: var(--hwy-primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.hwy-pain-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.hwy-pain-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .hwy-pain-layout {
    flex-direction: column;
    gap: 40px;
  }

  .hwy-pain-text {
    flex: auto;
    position: static;
  }
}

@media (max-width: 768px) {
  .hwy-pain-grid {
    grid-template-columns: 1fr;
  }

  .hwy-pain-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   Premium Product Landing Pages
   ========================================================================== */
.hwy-product-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  color: #fff;
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}

.hwy-product-banner::before {
  content: '' '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('' /web/novahl2/assets/img/index/2d-map_1 (1).jpg'') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  filter: contrast(1.5) grayscale(0.5);
  mix-blend-mode: overlay;
}

.hwy-product-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: hwyFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hwy-product-banner h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.hwy-product-banner p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hwy-product-actions {
  display: flex;
  gap: 20px;
}

.hwy-product-banner .hwy-btn-primary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.hwy-product-banner .hwy-btn-outline {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.hwy-product-banner .hwy-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Pricing / Recommended Specs Cards */
.hwy-pricing-section {
  padding: 100px 0;
  background: #f8f9fc;
}

.hwy-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.hwy-pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hwy-pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.hwy-pricing-card.hwy-popular {
  border-top: 6px solid var(--hwy-primary);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.hwy-pricing-card.hwy-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.hwy-popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hwy-pricing-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.hwy-pricing-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.hwy-pricing-header p {
  font-size: 14px;
  color: #6b7280;
}

.hwy-pricing-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--hwy-primary);
  margin: 20px 0;
  display: flex;
  align-items: baseline;
}

.hwy-pricing-price span {
  font-size: 16px;
  color: #9ca3af;
  font-weight: 500;
  margin-left: 5px;
}

.hwy-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.hwy-pricing-features li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 15px;
}

.hwy-pricing-features li i {
  color: #10b981;
  margin-right: 12px;
  font-size: 18px;
}

.hwy-pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.hwy-btn-buy {
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
}

.hwy-btn-buy:hover {
  background: #e5e7eb;
  color: #111827;
}

.hwy-popular .hwy-btn-buy {
  background: linear-gradient(90deg, var(--hwy-primary) 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.hwy-popular .hwy-btn-buy:hover {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
  background: linear-gradient(90deg, #1d4ed8 0%, #1e40af 100%);
}

@media (max-width: 992px) {
  .hwy-pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hwy-pricing-card.hwy-popular {
    transform: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    border-top: 4px solid var(--hwy-primary);
  }

  .hwy-pricing-card.hwy-popular:hover {
    transform: translateY(-10px);
  }

  .hwy-product-banner h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hwy-product-banner {
    padding: 50px 20px 60px !important;
    text-align: center;
  }

  .hwy-product-banner h1 {
    font-size: 24px !important;
  }

  .hwy-product-banner p {
    font-size: 14px !important;
    margin: 0 0 20px !important;
  }

  .hwy-product-banner-content {
    margin: 0 auto;
  }

  .hwy-product-actions {
    flex-direction: column;
  }

  .hwy-product-actions .hwy-btn {
    padding: 10px 0 !important;
    font-size: 14px !important;
  }
}

/* ==========================================================================
   Product V2.0: Trust & Global Infrastructure Layout
   ========================================================================== */

/* Trust Metrics Strip */
.hwy-trust-metrics {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 10;
}

.hwy-trust-metrics-inner {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

.hwy-metric-item {
  text-align: center;
  flex: 1;
  border-right: 1px solid #e5e7eb;
}

.hwy-metric-item:last-child {
  border-right: none;
}

.hwy-metric-val {
  font-size: 36px;
  font-weight: 700;
  color: var(--hwy-primary);
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
}

.hwy-metric-desc {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Global Infrastructure */
.hwy-global-infra {
  background: #0f172a;
  color: #fff;
  padding: 50px 0 25px;
  position: relative;
  overflow: hidden;
}

.hwy-global-infra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/web/novahl2/assets/img/index/2d-map_1 (1).jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
}

.hwy-infra-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 35px;
}

.hwy-infra-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.hwy-infra-header p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.hwy-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hwy-infra-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.hwy-infra-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}

.hwy-infra-icon {
  font-size: 32px;
  color: #60a5fa;
  margin-bottom: 15px;
}

.hwy-infra-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.hwy-infra-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Scenario Recommendations (Replacing Pricing) */
.hwy-scenario-section {
  padding: 50px 0;
  background: #f8f9fc;
}

.hwy-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.hwy-scenario-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.hwy-scenario-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hwy-scenario-header {
  padding: 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
}

.hwy-scenario-card:nth-child(2) .hwy-scenario-header {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.hwy-scenario-card:nth-child(3) .hwy-scenario-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

.hwy-scenario-header h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.hwy-scenario-header p {
  font-size: 14px;
  opacity: 0.9;
}

.hwy-scenario-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hwy-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.hwy-scenario-tags span {
  font-size: 12px;
  padding: 4px 12px;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 20px;
}

.hwy-scenario-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hwy-scenario-footer {
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
  padding-top: 20px;
}

.hwy-scenario-btn {
  display: block;
  text-align: center;
  color: var(--hwy-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.hwy-scenario-btn:hover {
  color: #1d4ed8;
  letter-spacing: 1px;
}

/* Bottom CTA Banner */
.hwy-bottom-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hwy-bottom-cta::after {
  content: '' '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(37, 99, 235, 0) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(37, 99, 235, 0) 100%);
  animation: hwyRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes hwyRotate {
  100% {
    transform: rotate(360deg);
  }
}

.hwy-bottom-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hwy-bottom-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hwy-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  color: #1d4ed8;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.hwy-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .hwy-trust-metrics-inner {
    flex-wrap: wrap;
    gap: 30px;
  }

  .hwy-metric-item {
    flex: 0 0 calc(50% - 15px);
    border-right: none;
  }

  .hwy-infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwy-scenario-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hwy-infra-grid {
    grid-template-columns: 1fr;
  }

  .hwy-bottom-cta h2 {
    font-size: 30px;
  }
}

/* ==========================================================================
   Product V2.1: Banner & White Infra Overrides
   ========================================================================== */
.hwy-product-banner {
  background: linear-gradient(135deg, #0d47a1 0%, #001529 100%);
  padding: 120px 0 140px;
}

.hwy-product-banner::before {
  opacity: 0.05;
  filter: none;
}

.hwy-product-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hwy-product-banner h1 {
  font-size: 46px;
  letter-spacing: 0;
}

.hwy-product-banner p {
  font-size: 16px;
  opacity: 0.85;
}

.hwy-product-actions {
  justify-content: center;
}

/* White Global Infra */
.hwy-global-infra {
  background: #fff;
  color: #111827;
}

.hwy-global-infra::before {
  display: none;
  /* Hide dark map background */
}

.hwy-global-infra .hwy-infra-header h2 {
  color: #111827 !important;
}

.hwy-global-infra .hwy-infra-header p {
  color: #6b7280 !important;
}

.hwy-infra-card {
  background: #f8f9fc;
  border: 1px solid transparent;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.hwy-infra-card:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05);
}

.hwy-infra-card h3 {
  color: #111827;
}

.hwy-infra-card p {
  color: #4b5563;
}

/* Enhanced Mobile Adaptation for Banner */
@media (max-width: 768px) {
  .hwy-product-banner {
    padding: 60px 15px 70px;
  }

  .hwy-product-banner h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .hwy-product-banner p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hwy-product-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hwy-product-actions .hwy-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
  }
}

/* ==========================================================================
   Product V2.2: Deep Mobile Optimization (Mobile First Refinements)
   ========================================================================== */
@media (max-width: 768px) {

  /* Trust Metrics Strip */
  .hwy-trust-metrics-inner {
    padding: 16px 0;
    gap: 10px;
  }

  .hwy-metric-item {
    flex: 0 0 calc(50% - 5px) !important;
    border-right: none !important;
    padding: 10px 8px;
    background: #f9fafb;
    border-radius: 8px;
  }

  .hwy-metric-val {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }

  .hwy-metric-desc {
    font-size: 11px !important;
  }

  /* Global Infra */
  .hwy-infra-header h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .hwy-infra-header p {
    font-size: 13px !important;
  }

  .hwy-infra-grid {
    gap: 12px !important;
  }

  .hwy-infra-card {
    padding: 15px !important;
  }

  .hwy-infra-card h3 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  /* Pain/Features */
  .hwy-pain-section {
    padding: 30px 0 !important;
  }

  .hwy-pain-text h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .hwy-pain-text p {
    font-size: 13px !important;
  }

  .hwy-pain-grid {
    gap: 12px !important;
  }

  .hwy-pain-card {
    padding: 15px !important;
  }

  .hwy-pain-card h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .hwy-pain-card p {
    font-size: 12px !important;
  }

  /* Scenario */
  .hwy-scenario-section {
    padding: 30px 0 !important;
  }

  .hwy-scenario-section h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .hwy-scenario-section p {
    font-size: 13px !important;
  }

  .hwy-scenario-grid {
    gap: 15px !important;
  }

  .hwy-scenario-card {
    padding: 15px !important;
  }

  .hwy-scenario-header h3 {
    font-size: 16px !important;
  }

  .hwy-scenario-header p {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .hwy-scenario-tags {
    flex-wrap: wrap;
    gap: 6px !important;
  }

  .hwy-scenario-tags span {
    font-size: 11px !important;
    padding: 2px 6px !important;
  }

  .hwy-scenario-desc {
    font-size: 12px !important;
  }

  /* Bottom CTA */
  .hwy-bottom-cta {
    padding: 40px 15px !important;
  }

  .hwy-bottom-cta h2 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  .hwy-bottom-cta p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
    padding: 0 10px;
  }

  .hwy-cta-btn {
    width: 100%;
    padding: 14px 0 !important;
    font-size: 16px !important;
    display: block;
    box-sizing: border-box;
  }
}

/* 2x2 Grid Override for Trust Metrics */
@media (max-width: 768px) {
  .hwy-trust-metrics-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 16px 0 !important;
  }

  .hwy-metric-item {
    border-right: none !important;
    padding: 10px 8px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    margin: 0 !important;
    width: auto !important;
    flex: none !important;
  }

  .hwy-metric-val {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }

  .hwy-metric-desc {
    font-size: 11px !important;
  }
}

/* 2x2 Flexbox Override for Trust Metrics (Maximum Compatibility) */
@media (max-width: 768px) {
  .hwy-trust-metrics-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    padding: 16px 0 !important;
    gap: 0 !important;
  }

  .hwy-metric-item {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    box-sizing: border-box !important;
    border-right: none !important;
    padding: 10px 8px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    margin: 0 0 10px 0 !important;
  }

  .hwy-metric-val {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }

  .hwy-metric-desc {
    font-size: 11px !important;
  }
}

/* ==========================================================================
   2-Column Grid Layout for Core Products on Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .hwy-product-bento {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 10px 0 !important;
  }

  .hwy-product-bento .hwy-bento-card {
    grid-column: span 1 !important;
    /* Reset desktop styles */
    grid-row: auto !important;
    /* Reset desktop styles */
    height: auto !important;
    min-height: 120px !important;
    padding: 16px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    background-color: #fff !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    /* Ensures pseudo elements don't spill */
  }

  .hwy-product-bento .hwy-bento-card h3 {
    font-size: 15px !important;
    /* Smaller title */
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  .hwy-product-bento .hwy-bento-card p {
    font-size: 12px !important;
    /* Smaller description */
    color: #666 !important;
    opacity: 0.8 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    /* Max 2 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .hwy-product-bento .hwy-bento-card .hwy-bento-icon {
    font-size: 36px !important;
    /* Smaller icon */
    bottom: -10px !important;
    right: -10px !important;
    opacity: 0.04 !important;
  }
}

/* ==========================================================================
   Mobile: First Product Card (ECS) Spans Full Row (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .hwy-product-bento .hwy-bento-card-large {
    grid-column: span 2 !important;
    padding: 24px 20px !important;
    min-height: 140px !important;
  }

  .hwy-product-bento .hwy-bento-card-large h3 {
    font-size: 18px !important;
  }

  .hwy-product-bento .hwy-bento-card-large p {
    font-size: 13px !important;
    -webkit-line-clamp: 3 !important;
    /* Allow more description text */
  }

  .hwy-product-bento .hwy-bento-card-large .hwy-bento-icon {
    font-size: 60px !important;
    bottom: -5px !important;
    right: 5px !important;
    opacity: 0.05 !important;
  }
}

/* ==========================================================================
   MacOS Browser/Console Mockup Showcase
   ========================================================================== */
.hwy-mac-mockup-section {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden;
}

.hwy-mac-mockup-header {
  text-align: center;
  margin-bottom: 50px;
}

.hwy-mac-mockup-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.hwy-mac-mockup-header p {
  font-size: 16px;
  color: #6b7280;
}

.hwy-mac-window {
  max-width: 1000px;
  margin: 0 auto;
  background: #111827;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.hwy-mac-window:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(-8px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.4);
}

.hwy-mac-toolbar {
  height: 40px;
  background: #1f2937;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hwy-mac-dots {
  display: flex;
  gap: 8px;
}

.hwy-mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hwy-mac-dot.red {
  background: #ff5f56;
}

.hwy-mac-dot.yellow {
  background: #ffbd2e;
}

.hwy-mac-dot.green {
  background: #27c93f;
}

.hwy-mac-title {
  flex: 1;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  margin-right: 44px;
}

.hwy-mac-content {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  background: #000;
}

.hwy-mac-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.hwy-mac-window:hover .hwy-mac-content img {
  opacity: 1;
}

@media (max-width: 768px) {
  .hwy-mac-mockup-section {
    padding: 40px 0;
  }

  .hwy-mac-mockup-header h2 {
    font-size: 24px;
  }

  .hwy-mac-mockup-header p {
    font-size: 14px;
  }

  .hwy-mac-window {
    transform: none;
    border-radius: 8px;
    margin: 0 15px;
  }

  .hwy-mac-window:hover {
    transform: none;
  }

  .hwy-mac-toolbar {
    height: 30px;
    padding: 0 10px;
  }

  .hwy-mac-dots {
    gap: 6px;
  }

  .hwy-mac-dot {
    width: 10px;
    height: 10px;
  }

  .hwy-mac-title {
    font-size: 11px;
    margin-right: 36px;
  }
}

/* ==========================================================================
   Product Cross-Sell Section
   ========================================================================== */
.hwy-cross-sell-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.hwy-cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.hwy-cross-sell-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hwy-cross-sell-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.hwy-cross-sell-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--hwy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hwy-cross-sell-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.hwy-cross-sell-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.hwy-cross-sell-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hwy-primary);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s;
}

.hwy-cross-sell-link:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .hwy-cross-sell-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.hwy-faq-section {
  padding: 80px 0;
  background: #fff;
}

.hwy-faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.hwy-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.hwy-faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s;
}

.hwy-faq-question:hover {
  color: var(--hwy-primary);
}

.hwy-faq-icon {
  transition: transform 0.3s ease;
  color: #9ca3af;
}

.hwy-faq-item.active .hwy-faq-icon {
  transform: rotate(45deg);
  color: var(--hwy-primary);
}

.hwy-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.hwy-faq-item.active .hwy-faq-answer {
  max-height: 1000px;
  transition: max-height 0.6s ease-in-out;
}

.hwy-faq-answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ==========================================================================
   Dynamic Navigation Dropdown (HWY Theme Control)
   ========================================================================== */
.hwy-nav-dropdown-wrapper {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.hwy-nav-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hwy-chevron-down {
  transition: transform 0.3s ease;
}

.hwy-nav-dropdown-wrapper:hover .hwy-chevron-down {
  transform: rotate(180deg);
}

.hwy-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
  min-width: 500px;
  z-index: 999;
}

.hwy-nav-dropdown-wrapper:hover .hwy-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hwy-nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.hwy-nav-dropdown-item {
  display: flex !important;
  align-items: flex-start;
  gap: 15px;
  padding: 15px !important;
  border-radius: 8px;
  transition: background 0.2s ease !important;
  text-decoration: none;
}

.hwy-nav-dropdown-item:hover {
  background: #f8fafc !important;
  color: inherit !important;
}

.hwy-nav-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--hwy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hwy-nav-dropdown-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.hwy-nav-dropdown-text p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Mega Menu Layout Overrides */
.hwy-nav-dropdown-menu {
  position: fixed !important;
  top: 64px !important;
  /* matches header height */
  left: 0 !important;
  width: 100vw !important;
  transform: translateY(10px) !important;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--hwy-border);
}

.hwy-nav-dropdown-wrapper:hover .hwy-nav-dropdown-menu {
  transform: translateY(0) !important;
}

@media (min-width: 1025px) {
  .hwy-nav-dropdown-inner {
    display: flex;
    min-height: 300px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hwy-nav-dropdown-left {
    position: relative;
    width: 280px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }

  .hwy-nav-dropdown-left::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 50vw;
    background: #111827;
    z-index: -1;
  }

  .hwy-nav-dropdown-left h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
  }

  .hwy-nav-dropdown-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: auto;
  }

  .hwy-nav-left-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 0;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }

  .hwy-nav-left-btn:hover {
    color: #93c5fd;
  }

  .hwy-nav-dropdown-right {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
  }

  .hwy-nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==========================================================================
   News, Announcements & Help Center (Dynamic Tabs)
   ========================================================================== */
.hwy-nc-section {
  padding: 80px 0;
  background: #f8fafc;
}

.hwy-nc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--hwy-border);
  padding-bottom: 20px;
}

.hwy-nc-head-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px;
}

.hwy-nc-head-text p {
  color: var(--hwy-text-secondary);
  margin: 0;
}

.hwy-nc-tabs {
  display: flex;
  gap: 30px;
}

.hwy-nc-tab {
  font-size: 16px;
  font-weight: 500;
  color: var(--hwy-text-secondary);
  cursor: pointer;
  padding-bottom: 21px;
  margin-bottom: -21px;
  border-bottom: 3px solid transparent;
  transition: var(--hwy-transition);
}

.hwy-nc-tab:hover {
  color: var(--hwy-primary);
}

.hwy-nc-tab.active {
  color: var(--hwy-primary);
  border-bottom-color: var(--hwy-primary);
}

.hwy-nc-panel {
  display: none;
  animation: hwyFadeIn 0.3s ease-out;
}

.hwy-nc-panel.active {
  display: block;
}

.hwy-nc-body {
  display: flex;
  gap: 30px;
}

/* Left Featured Area */
.hwy-nc-feat {
  flex: 0 0 500px;
  position: relative;
  border-radius: var(--hwy-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--hwy-shadow-sm);
  display: flex;
  flex-direction: column;
}

.hwy-nc-feat-img {
  height: 280px;
  background: #e2e8f0;
  overflow: hidden;
}

.hwy-nc-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hwy-nc-feat:hover .hwy-nc-feat-img img {
  transform: scale(1.05);
}

.hwy-nc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hwy-primary), #4facfe);
  color: rgba(255, 255, 255, 0.3);
  font-size: 80px;
  font-weight: bold;
}

.hwy-nc-feat-info {
  padding: 30px;
  flex: 1;
}

.hwy-nc-feat-date {
  font-size: 13px;
  color: var(--hwy-text-secondary);
  margin-bottom: 15px;
}

.hwy-nc-feat-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--hwy-text-primary);
  margin-bottom: 20px;
}

.hwy-nc-more-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: #f1f5f9;
  color: var(--hwy-primary);
  font-weight: 500;
  transition: var(--hwy-transition);
}

.hwy-nc-more-btn:hover {
  background: var(--hwy-primary);
  color: #fff;
}

/* Right List Area */
.hwy-nc-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hwy-nc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: #fff;
  border-radius: var(--hwy-radius);
  transition: var(--hwy-transition);
  border: 1px solid transparent;
}

.hwy-nc-item:hover,
.hwy-nc-item.active {
  border-color: var(--hwy-border);
  box-shadow: var(--hwy-shadow-sm);
  transform: translateX(5px);
}

.hwy-nc-item-thumb {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}

.hwy-nc-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hwy-nc-item-thumb .hwy-nc-placeholder {
  font-size: 24px;
}

.hwy-nc-item-body {
  flex: 1;
}

.hwy-nc-item-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--hwy-text-primary);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.3s;
}

.hwy-nc-item:hover .hwy-nc-item-title,
.hwy-nc-item.active .hwy-nc-item-title {
  color: var(--hwy-primary);
}

.hwy-nc-item-date {
  font-size: 13px;
  color: var(--hwy-text-secondary);
}

/* Help Center Grid */
.hwy-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hwy-help-card {
  background: #fff;
  border-radius: var(--hwy-radius);
  padding: 30px;
  border: 1px solid var(--hwy-border);
  transition: var(--hwy-transition);
}

.hwy-help-card:hover {
  box-shadow: var(--hwy-shadow);
  border-color: var(--hwy-primary);
  transform: translateY(-4px);
}

.hwy-help-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--hwy-text-primary);
}

.hwy-help-card-head i {
  color: var(--hwy-primary);
  font-size: 24px;
}

.hwy-help-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hwy-help-link {
  color: var(--hwy-text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--hwy-transition);
}

.hwy-help-link i {
  font-size: 12px;
  opacity: 0.5;
  transition: transform 0.3s;
}

.hwy-help-link:hover {
  color: var(--hwy-primary);
}

.hwy-help-link:hover i {
  transform: translateX(3px);
  opacity: 1;
}

@media (max-width: 1024px) {
  .hwy-nc-body {
    flex-direction: column;
  }

  .hwy-nc-feat {
    flex: none;
    width: 100%;
  }

  .hwy-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hwy-nc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hwy-nc-tab {
    font-size: 13px;
    padding: 6px 10px;
  }

  /* Make featured item look like a normal list item on mobile */
  .hwy-nc-feat {
    flex-direction: row;
    box-shadow: none;
    border: 1px solid transparent;
    padding: 8px 10px;
    gap: 10px;
    background: transparent;
  }

  .hwy-nc-feat-img {
    width: 50px !important;
    height: 40px !important;
    flex-shrink: 0;
    border-radius: 4px;
  }

  .hwy-nc-feat-info {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hwy-nc-feat-title {
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .hwy-nc-feat-date {
    font-size: 11px;
    color: var(--hwy-text-secondary);
  }

  /* Hide the duplicate first item in the right list since the featured item now acts as the first list item */
  .hwy-nc-list .hwy-nc-item:first-child {
    display: none;
  }

  .hwy-nc-item {
    padding: 8px 10px;
    gap: 10px;
  }

  .hwy-nc-item-thumb {
    width: 50px;
    height: 40px;
  }

  .hwy-nc-item-thumb .hwy-nc-placeholder {
    font-size: 16px;
  }

  .hwy-nc-item-title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .hwy-nc-item-date {
    font-size: 11px;
  }

  .hwy-help-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Hot Activities & Special Offers — Left Features + Right Product Cards
   ========================================================================== */
.hwy-sale-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 40%, #f2f8ff 100%);
  padding: 80px 0;
  position: relative;
}

.hwy-sale-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 85, 255, 0.04));
  pointer-events: none;
}

.hwy-sale-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ===== Left: Feature Text ===== */
.hwy-sale-left {
  flex: 0 0 38%;
  max-width: 38%;
  position: sticky;
  top: 100px;
}

.hwy-sale-left .hwy-section-title {
  text-align: left;
}

.hwy-sale-left .hwy-section-subtitle {
  text-align: left;
  margin-left: 0;
}

.hwy-sale-features {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hwy-sale-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hwy-sale-feature-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.08);
  border: 1px solid rgba(0, 85, 255, 0.06);
}

.hwy-sale-feature-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.hwy-sale-feature-text span {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

/* ===== Right: Product Cards ===== */
.hwy-sale-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 0;
}

.hwy-sale-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f6;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.hwy-sale-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 85, 255, 0.12);
}

.hwy-sale-card.featured {
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.06);
  background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}

.hwy-sale-card.featured:hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.1);
}

/* Badge */
.hwy-sale-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 3px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  letter-spacing: 0.3px;
}

/* Card title */
.hwy-sale-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
  line-height: 1.35;
  padding-right: 50px;
}

/* Card description */
.hwy-sale-card-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}

/* Price row */
.hwy-sale-card-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
}

.hwy-sale-card-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--hwy-primary, #0055FF);
}

.hwy-sale-card.featured .hwy-sale-card-currency {
  color: #dc2626;
}

.hwy-sale-card-amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--hwy-primary, #0055FF);
  line-height: 1;
  letter-spacing: -1px;
}

.hwy-sale-card.featured .hwy-sale-card-amount {
  color: #dc2626;
}

.hwy-sale-card-unit {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 2px;
}

/* Button */
.hwy-sale-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.hwy-sale-card-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.hwy-sale-card.featured .hwy-sale-card-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.hwy-sale-card.featured .hwy-sale-card-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hwy-sale-wrapper {
    gap: 36px;
  }

  .hwy-sale-left {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .hwy-sale-right {
    gap: 16px;
  }

  .hwy-sale-card {
    padding: 20px 18px 16px;
  }

  .hwy-sale-card-amount {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .hwy-sale-wrapper {
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }

  .hwy-sale-left {
    flex: none;
    max-width: 100%;
    position: static;
  }

  .hwy-sale-left .hwy-section-title {
    text-align: center;
  }

  .hwy-sale-left .hwy-section-subtitle {
    text-align: center;
  }

  .hwy-sale-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hwy-sale-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .hwy-sale-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hwy-sale-card {
    padding: 18px 16px 14px;
  }

  .hwy-sale-card-title {
    font-size: 15px;
    padding-right: 0;
  }

  .hwy-sale-card-amount {
    font-size: 24px;
  }

  .hwy-sale-card-btn {
    font-size: 13px;
    padding: 10px 0;
  }
}

@media (max-width: 540px) {
  .hwy-sale-section {
    padding: 50px 0;
  }

  .hwy-sale-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .hwy-sale-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwy-sale-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .hwy-sale-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hwy-sale-card {
    padding: 18px 16px 16px;
  }

  .hwy-sale-card-title {
    font-size: 15px;
    padding-right: 0;
  }

  .hwy-sale-card-desc {
    font-size: 12px;
  }

  .hwy-sale-card-amount {
    font-size: 24px;
  }

  .hwy-sale-card-badge {
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 2px 10px;
  }
}

/* ==========================================================================
   Testimonials (Voice of Customers)
   ========================================================================== */
.hwy-testimonial {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--hwy-border);
}

.hwy-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.hwy-testi-card {
  background: #f8fafc;
  border-radius: var(--hwy-radius);
  padding: 40px 30px;
  position: relative;
  transition: var(--hwy-transition);
  border: 1px solid transparent;
}

.hwy-testi-card:hover {
  background: #fff;
  border-color: var(--hwy-border);
  box-shadow: var(--hwy-shadow-lg);
  transform: translateY(-5px);
}

.hwy-testi-quote {
  font-size: 36px;
  color: var(--hwy-primary);
  opacity: 0.2;
  margin-bottom: 20px;
  display: inline-block;
  transition: opacity 0.3s;
}

.hwy-testi-card:hover .hwy-testi-quote {
  opacity: 0.5;
}

.hwy-testi-text {
  font-size: 15px;
  color: var(--hwy-text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  min-height: 80px;
}

.hwy-testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hwy-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hwy-primary), #4facfe);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.hwy-testi-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  margin: 0 0 4px;
}

.hwy-testi-info span {
  font-size: 13px;
  color: var(--hwy-text-secondary);
}

@media (max-width: 1024px) {
  .hwy-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hwy-testi-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none;
  }

  .hwy-testi-grid::-webkit-scrollbar {
    display: none;
  }

  .hwy-testi-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* ==========================================================================
   Bottom CTA (Call to Action)
   ========================================================================== */
.hwy-bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
  text-align: center;
}

.hwy-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.hwy-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}

.hwy-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
}

.hwy-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hwy-btn-lg {
  padding: 12px 36px;
  font-size: 16px;
}

.hwy-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hwy-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .hwy-cta-content h2 {
    font-size: 28px;
  }

  .hwy-cta-actions {
    flex-direction: column;
  }
}

/* Force homepage dark infrastructure header text to white */
.hwy-infra .hwy-infra-header h2,
.hwy-infra .hwy-infra-header p {
  color: #fff !important;
}

/* ==========================================================================
   News Page List Cards (Left Image, Right Text)
   ========================================================================== */
.hwy-news-card {
  display: flex;
  background: #fff;
  border-radius: var(--hwy-radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--hwy-transition);
  border: 1px solid var(--hwy-border);
  text-decoration: none;
}

.hwy-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 85, 255, 0.1);
  border-color: rgba(0, 85, 255, 0.2);
}

.hwy-news-card-thumb {
  width: 240px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.hwy-news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hwy-news-card:hover .hwy-news-card-thumb img {
  transform: scale(1.05);
}

.hwy-news-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hwy-primary), #4facfe);
  color: rgba(255, 255, 255, 0.3);
  font-size: 64px;
  font-weight: bold;
}

.hwy-news-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hwy-news-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hwy-text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.hwy-news-card:hover .hwy-news-card-title {
  color: var(--hwy-primary);
}

.hwy-news-card-desc {
  font-size: 14px;
  color: var(--hwy-text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwy-news-card-meta {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hwy-news-card-meta i {
  margin-right: 5px;
}

/* Mobile Responsiveness for News Cards */
@media (max-width: 768px) {
  .hwy-news-card {
    flex-direction: column;
  }

  .hwy-news-card-thumb {
    width: 100%;
    height: 180px;
  }

  .hwy-news-card-content {
    padding: 20px;
  }

  .hwy-news-card-title {
    font-size: 18px;
  }

  .hwy-news-card-desc {
    -webkit-line-clamp: 3;
  }
}

/* ==========================================================================
   Qualifications / Certifications
   ========================================================================== */
/* ===============================================
   Qualifications — Infinite Scroll Marquee (Dark)
   =============================================== */
.hwy-qualifications {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c1222 0%, #1a2333 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hwy-qualifications::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,85,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,85,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Marquee wrapper */
.hwy-qual-marquee {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.hwy-qual-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: qual-scroll 38s linear infinite;
}

.hwy-qual-marquee-track:hover {
  animation-play-state: paused;
}

.hwy-qual-marquee-group {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Logo items — glass cards */
.hwy-qual-logo-item {
  width: 160px;
  height: 90px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.35s ease;
  cursor: default;
  backdrop-filter: blur(4px);
}

.hwy-qual-logo-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 30px rgba(0,85,255,0.12);
}

.hwy-qual-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.3) contrast(0.9);
  transition: filter 0.35s ease;
}

.hwy-qual-logo-item:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
}

@keyframes qual-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .hwy-qualifications {
    padding: 60px 0;
  }
  .hwy-qual-marquee-track {
    gap: 24px;
  }
  .hwy-qual-marquee-group {
    gap: 24px;
  }
  .hwy-qual-logo-item {
    width: 130px;
    height: 72px;
    padding: 12px;
  }
  .hwy-qual-logo-item img {
    max-height: 48px;
  }
}

/* ===============================================
   Control Panel Feature Showcase
   =============================================== */
.hwy-panel-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.hwy-panel-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,85,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hwy-panel-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,85,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Wrapper — flex left/right */
.hwy-panel-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== Left: Text ===== */
.hwy-panel-text {
  flex: 0 0 44%;
  position: relative;
  z-index: 1;
}

.hwy-panel-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hwy-primary);
  background: rgba(0,85,255,0.08);
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.hwy-panel-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hwy-text, #1e293b);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hwy-panel-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 28px;
}

/* Feature grid 2-column */
.hwy-panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hwy-panel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: background 0.2s;
}

.hwy-panel-features li:hover {
  background: rgba(255,255,255,1);
}

.hwy-panel-features li svg {
  flex-shrink: 0;
}

/* Extended capabilities */
.hwy-panel-ext {
  margin-bottom: 32px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px dashed #d1d9e6;
  border-radius: 10px;
}

.hwy-panel-ext-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.hwy-panel-ext-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hwy-panel-ext-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--hwy-primary);
  background: rgba(0,85,255,0.07);
  padding: 4px 14px;
  border-radius: 20px;
  line-height: 1.5;
  transition: all 0.2s;
}

.hwy-panel-ext-tags span:hover {
  background: rgba(0,85,255,0.12);
  transform: translateY(-1px);
}

/* CTA */
.hwy-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
}

.hwy-panel-cta svg {
  transition: transform 0.25s;
}

.hwy-panel-cta:hover svg {
  transform: translateX(4px);
}

/* ===== Right: Panel Mockup ===== */
.hwy-panel-visual {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Terminal window */
.hwy-panel-window {
  background: #14161a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0,0,0,0.08),
    0 15px 35px -5px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}

.hwy-panel-window:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 8px 12px -2px rgba(0,0,0,0.1),
    0 25px 50px -8px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,255,255,0.08);
}

/* Title bar */
.hwy-panel-window-bar {
  height: 42px;
  background: #1e2128;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hwy-panel-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.hwy-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.hwy-dot.red { background: #ff5f56; }
.hwy-dot.yellow { background: #ffbd2e; }
.hwy-dot.green { background: #27c93f; }

.hwy-dot:hover { opacity: 0.8; }

.hwy-panel-window-title {
  font-size: 12.5px;
  color: #8b8fa3;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Window body */
.hwy-panel-window-body {
  padding: 22px 24px 24px;
}

/* Server status line */
.hwy-panel-server-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 14px rgba(34,197,94,0.6); }
}

.status-label {
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
}

.status-meta {
  font-size: 13px;
  color: #6b7280;
}

.status-ip {
  margin-left: auto;
  font-size: 12px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  color: #4b5563;
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 4px;
}

/* Resource bars */
.hwy-panel-resources {
  margin-bottom: 18px;
}

.hwy-panel-res-row,
.hwy-panel-res-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hwy-panel-res-row:last-child,
.hwy-panel-res-row:last-child {
  margin-bottom: 0;
}

.res-name {
  width: 36px;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  flex-shrink: 0;
}

.res-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.res-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  transition: width 0.6s ease;
}

.res-fill.warn {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.res-value {
  width: 36px;
  font-size: 12px;
  font-weight: 600;
  color: #d1d5db;
  text-align: right;
  flex-shrink: 0;
}

/* Traffic chart */
.hwy-panel-chart {
  margin-bottom: 18px;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hwy-panel-chart-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hwy-panel-chart-svg {
  width: 100%;
  height: 48px;
  display: block;
}

.hwy-panel-chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.hwy-panel-chart-legend span {
  font-size: 11px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot-in,
.dot-out {
  display: inline-block;
  width: 8px;
  height: 3px;
  border-radius: 2px;
}

.dot-in {
  background: #3b82f6;
}

.dot-out {
  background: #10b981;
}

/* Action buttons */
.hwy-panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hwy-panel-btn,
.hwy-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #d1d5db;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.hwy-panel-btn:hover,
.hwy-panel-btn:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.hwy-panel-btn.primary,
.hwy-panel-btn.primary {
  color: #fff;
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.3);
}

.hwy-panel-btn.primary:hover,
.hwy-panel-btn.primary:hover {
  background: rgba(59,130,246,0.3);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 12px rgba(59,130,246,0.15);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hwy-panel-wrapper {
    gap: 40px;
  }
  .hwy-panel-text {
    flex: 0 0 48%;
  }
  .hwy-panel-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .hwy-panel-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .hwy-panel-text {
    flex: none;
    width: 100%;
    max-width: 600px;
  }
  .hwy-panel-visual {
    width: 100%;
    max-width: 600px;
  }
  .hwy-panel-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hwy-panel-section {
    padding: 60px 0;
  }
  .hwy-panel-title {
    font-size: 24px;
  }
  .hwy-panel-features {
    grid-template-columns: 1fr;
  }
  .hwy-panel-window-body {
    padding: 16px;
  }
  .hwy-panel-actions {
    gap: 6px;
  }
  .hwy-panel-btn {
    padding: 6px 12px;
    font-size: 11.5px;
  }
  .status-ip {
    display: none;
  }
}

/* ===============================================
   Website Popup Modal
   =============================================== */
.hwy-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: hwyPopupFadeIn 0.3s ease;
}

@keyframes hwyPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hwy-popup-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  animation: hwyPopupSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hwyPopupSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hwy-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  font-size: 22px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 5;
  line-height: 1;
}

.hwy-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.hwy-popup-img {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.hwy-popup-img img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.hwy-popup-body {
  padding: 30px 32px 36px;
  text-align: center;
}

.hwy-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
  line-height: 1.35;
}

.hwy-popup-content {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hwy-popup-content ul {
  text-align: left;
  padding-left: 20px;
  margin: 10px 0;
}

.hwy-popup-content li {
  margin-bottom: 4px;
}

.hwy-popup-btn {
  display: inline-block;
  padding: 13px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.hwy-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

@media (max-width: 540px) {
  .hwy-popup-modal {
    width: 92%;
    border-radius: 16px;
  }
  .hwy-popup-body {
    padding: 24px 20px 28px;
  }
  .hwy-popup-title {
    font-size: 19px;
  }
  .hwy-popup-img {
    max-height: 160px;
  }
  .hwy-popup-img img {
    max-height: 160px;
  }
  .hwy-popup-btn {
    padding: 11px 32px;
    font-size: 14px;
  }
}