/* Product detail page styles */

.product-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2d4e 60%, #0e3a6e 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.product-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(26, 109, 181, 0.08);
  top: -300px;
  right: -200px;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-hero-text {
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

.product-hero-tag {
  display: inline-block;
  background: rgba(96, 200, 240, 0.15);
  border: 1px solid rgba(96, 200, 240, 0.35);
  color: #60c8f0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.product-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-hero-subtitle {
  font-size: 1.1rem;
  color: #60c8f0;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.product-hero-img {
  position: relative;
}

.product-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(26, 109, 181, 0.35));
  transition: transform 0.4s ease;
}

.product-hero-img:hover img {
  transform: translateY(-8px) scale(1.02);
}

/* Key specifications bar */
.spec-bar {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.spec-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.spec-bar-item {
  text-align: center;
  padding: 12px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.spec-bar-item:last-child { border-right: none; }

.spec-bar-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: #60c8f0;
  line-height: 1;
  margin-bottom: 4px;
}

.spec-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* Image gallery */
.gallery-section {
  padding: 80px 0;
  background: var(--off-white);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}

/* Detailed specifications */
.specs-section {
  padding: 80px 0;
  background: #fff;
}

.specs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.specs-table th {
  background: var(--gray-light);
  font-weight: 700;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.specs-table tr:last-child td { border-bottom: none; }

.specs-table tr:nth-child(even) td { background: var(--off-white); }

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 220px;
}

.specs-table td:last-child {
  color: var(--text-light);
}

/* Related products */
.related-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* Product navigation */
.product-nav {
  display: flex;
  gap: 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.product-nav-btn {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  white-space: nowrap;
}

.product-nav-btn:hover,
.product-nav-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }
  .gallery-thumb {
    min-width: 80px;
  }
}

/* Contact page styles */
.contact-hero {
  position: relative;
  margin-top: 72px;
  padding: 86px 0 34px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #071526 0%, #0d315d 54%, #125d91 100%);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(96, 200, 240, 0.26), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(26, 109, 181, 0.34), transparent 34%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1.6px;
  margin-bottom: 20px;
}

.contact-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.contact-primary-btn,
.contact-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.contact-primary-btn {
  color: #08345a;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.contact-secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover {
  transform: translateY(-2px);
}

.contact-hero-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-panel-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
}

.hero-panel-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.contact-stat {
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-stat:last-child {
  border-right: none;
}

.contact-stat strong {
  display: block;
  color: #60c8f0;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.contact-support-section,
.contact-process-section,
.contact-faq-section {
  padding: 84px 0;
}

.contact-support-section,
.contact-faq-section {
  background: #fff;
}

.contact-process-section {
  background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
}

.contact-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-section-heading h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.7px;
}

.contact-section-heading p {
  margin-top: 12px;
  color: var(--text-light);
  line-height: 1.75;
}

.support-cards,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card,
.process-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(26, 109, 181, 0.08);
}

.support-card {
  padding: 32px;
  transition: var(--transition);
}

.support-card:hover,
.process-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.support-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 109, 181, 0.1), rgba(0, 180, 216, 0.16));
  font-size: 24px;
}

.support-card h3,
.process-card h3,
.faq-item h3 {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.support-card p,
.process-card p,
.faq-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
}

.contact-page {
  padding: 84px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 70px rgba(14, 77, 138, 0.22);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .text h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}

.contact-detail .text p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}

.contact-card-note {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.contact-card-note h4 {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 800;
}

.contact-card-note ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-card-note li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.6;
}

.contact-card-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60c8f0;
}

.contact-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-social p {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.contact-social div {
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  font-size: 14px;
}

.contact-social a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 109, 181, 0.1);
}

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

.consent-row {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 13px;
}

.consent-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.consent-row input {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-row a {
  color: var(--primary);
  font-weight: 700;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 109, 181, 0.35);
}

.process-card {
  position: relative;
  padding: 34px 30px;
  overflow: hidden;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  font-size: 13px;
}

.partners-subtitle {
  max-width: 680px;
  margin: -6px auto 34px;
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 28px;
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 64px 0 28px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-hero-copy h1 {
    letter-spacing: -0.8px;
  }

  .contact-hero-panel {
    padding: 24px;
  }

  .contact-stats,
  .support-cards,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-stat:last-child {
    border-bottom: 0;
  }

  .contact-support-section,
  .contact-process-section,
  .contact-faq-section,
  .contact-page {
    padding: 60px 0;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-card { position: relative; top: auto; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Contact page premium refresh */
.contact-hero {
  margin-top: 72px;
  padding: 120px 0 0;
  background: #06111f;
  color: #fff;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.96) 0%, rgba(6, 17, 31, 0.78) 48%, rgba(6, 17, 31, 0.42) 100%),
    radial-gradient(circle at 76% 28%, rgba(0, 119, 182, 0.55), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 96px);
}

.contact-hero::before {
  content: "";
  position: absolute;
  right: 7vw;
  top: 122px;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.02)),
    radial-gradient(circle at 42% 34%, rgba(96,200,240,0.25), transparent 34%);
  box-shadow: inset 0 0 80px rgba(255,255,255,0.06), 0 40px 110px rgba(0,0,0,0.32);
}

.contact-hero::after {
  right: 18vw;
  bottom: 90px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(96, 200, 240, 0.34);
  background: rgba(96, 200, 240, 0.06);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) 420px;
  align-items: end;
  min-height: 520px;
}

.contact-kicker,
.panel-label,
.contact-section-header > span,
.presence-panel span {
  display: inline-block;
  color: #60c8f0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-hero-copy {
  padding-bottom: 86px;
}

.contact-hero-copy h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -4px;
}

.contact-hero-copy p {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.9;
}

.contact-primary-btn,
.contact-secondary-btn {
  min-height: 52px;
  border-radius: 0;
  padding: 0 28px;
  letter-spacing: 0.5px;
}

.contact-primary-btn {
  color: #fff;
  background: #0072ce;
  box-shadow: none;
}

.contact-secondary-btn {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.26);
  background: transparent;
}

.contact-brief-card {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4, 13, 25, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brief-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.brief-topline span {
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.brief-topline strong {
  color: rgba(255,255,255,0.28);
  font-size: 36px;
  line-height: 1;
}

.brief-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brief-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.brief-row span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.brief-row p {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.7;
}

.contact-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(4, 13, 25, 0.66);
}

.contact-metrics div {
  min-height: 120px;
  padding: 30px 34px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.contact-metrics div:last-child {
  border-right: 0;
}

.contact-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.contact-metrics span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.contact-intent-section,
.contact-process-section,
.contact-faq-section {
  padding: 110px 0;
  background: #fff;
}

.contact-section-header {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 58px;
}

.contact-section-header h2,
.presence-panel h2 {
  color: #071526;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
}

.contact-section-header p {
  grid-column: 2;
  max-width: 560px;
  color: #607086;
  font-size: 15px;
  line-height: 1.9;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9e2ee;
  border-left: 1px solid #d9e2ee;
}

.intent-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
  background: #fff;
  transition: var(--transition);
}

.intent-card:hover {
  background: #f6f9fc;
}

.intent-card > span,
.process-card > span {
  display: block;
  margin-bottom: 78px;
  color: #0072ce;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.intent-card h3,
.process-card h3,
.faq-item h3 {
  color: #071526;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.intent-card p,
.process-card p,
.faq-item p {
  color: #66778c;
  font-size: 14px;
  line-height: 1.8;
}

.contact-page {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}

.contact-grid {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  border-radius: 0;
  box-shadow: none;
}

.contact-info-card {
  top: 96px;
  padding: 44px;
  background: #071526;
  border: 1px solid #071526;
}

.contact-info-card::before {
  top: auto;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(0, 114, 206, 0.18);
}

.contact-info-card h3,
.contact-form-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
}

.contact-info-card > p {
  margin-bottom: 40px;
  color: rgba(255,255,255,0.62);
}

.contact-detail {
  margin-bottom: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
}

.contact-detail .icon {
  width: 32px;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #60c8f0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.contact-detail .text h5 {
  color: rgba(255,255,255,0.48);
}

.contact-card-note {
  margin-top: 34px;
  padding: 26px;
  border-radius: 0;
  background: rgba(255,255,255,0.06);
}

.contact-form-card {
  padding: 52px;
  border: 1px solid #d9e2ee;
  background: #fff;
}

.contact-form-card > p {
  max-width: 560px;
  margin-bottom: 36px;
}

.form-row {
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  color: #213047;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid #cdd8e6;
  border-radius: 0;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0072ce;
  box-shadow: inset 0 -1px 0 #0072ce;
  background: #fff;
}

.btn-submit {
  min-height: 54px;
  border-radius: 0;
  background: #071526;
  letter-spacing: 0.6px;
}

.btn-submit:hover {
  background: #0072ce;
}

.contact-process-section {
  background: #071526;
}

.contact-process-section .contact-section-header h2 {
  color: #fff;
}

.contact-process-section .contact-section-header p {
  color: rgba(255,255,255,0.58);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}

.process-card {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.04);
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255,255,255,0.58);
}

.partners-section {
  padding: 96px 0;
  background: #f6f9fc;
}

.presence-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid #d9e2ee;
}

.presence-panel h2 {
  margin-top: 16px;
}

.presence-panel p {
  color: #607086;
  line-height: 1.9;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.region-grid div {
  min-height: 150px;
  padding: 30px 28px;
  border-right: 1px solid #d9e2ee;
}

.region-grid div:first-child {
  border-left: 1px solid #d9e2ee;
}

.region-grid span {
  display: block;
  margin-bottom: 42px;
  color: #0072ce;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.region-grid strong {
  color: #071526;
  font-size: 18px;
}

.faq-list {
  max-width: 980px;
  margin-left: auto;
  border-top: 1px solid #d9e2ee;
}

.faq-item {
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid #d9e2ee;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.faq-item:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .contact-hero {
    padding-top: 86px;
  }

  .contact-hero::before {
    opacity: 0.45;
    right: -120px;
    top: 120px;
    width: 360px;
    height: 360px;
  }

  .contact-hero-inner,
  .contact-section-header,
  .presence-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section-header p {
    grid-column: auto;
  }

  .contact-hero-copy {
    padding-bottom: 34px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
    letter-spacing: -2px;
  }

  .contact-brief-card {
    margin-bottom: 46px;
  }

  .contact-metrics,
  .intent-grid,
  .process-line,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .contact-metrics div,
  .region-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .region-grid div,
  .region-grid div:first-child {
    border-left: 1px solid #d9e2ee;
    border-right: 1px solid #d9e2ee;
    border-bottom: 1px solid #d9e2ee;
  }

  .contact-intent-section,
  .contact-process-section,
  .contact-faq-section,
  .contact-page,
  .partners-section {
    padding: 72px 0;
  }

  .contact-info-card {
    position: relative;
    top: auto;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px;
  }
}

/* Contact command center redesign */
.contact-command {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  overflow: hidden;
  background: #020917;
  color: #fff;
}

.command-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(2, 9, 23, 0.98) 0%, rgba(2, 9, 23, 0.9) 44%, rgba(2, 9, 23, 0.62) 100%),
    radial-gradient(circle at 72% 18%, rgba(0, 114, 206, 0.5), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px, 96px 96px;
}

.command-bg span {
  position: absolute;
  border: 1px solid rgba(96, 200, 240, 0.22);
  border-radius: 999px;
  filter: blur(0.1px);
}

.command-bg span:nth-child(1) {
  right: 4vw;
  top: 110px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 35% 30%, rgba(96,200,240,0.24), transparent 38%);
}

.command-bg span:nth-child(2) {
  right: 25vw;
  bottom: 80px;
  width: 190px;
  height: 190px;
}

.command-bg span:nth-child(3) {
  left: 18vw;
  top: 190px;
  width: 16px;
  height: 16px;
  background: #60c8f0;
  box-shadow: 0 0 80px rgba(96, 200, 240, 0.8);
}

.command-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(520px, 38vw);
  min-height: calc(100vh - 72px);
}

.command-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 42px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.command-rail strong {
  color: #fff;
}

.command-stage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(72px, 8vw, 118px) clamp(38px, 6vw, 92px) 0;
}

.command-eyebrow,
.form-panel-head span,
.direct-heading span,
.direct-card span,
.paths-head span,
.paths-grid article > span,
.contact-global > div > span {
  display: inline-block;
  color: #60c8f0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.command-copy h1 {
  max-width: 940px;
  margin: 22px 0 26px;
  font-size: clamp(3.8rem, 8.2vw, 8.8rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.command-copy p {
  max-width: 620px;
  color: rgba(255,255,255,0.64);
  font-size: 17px;
  line-height: 1.9;
}

.command-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.command-stats div {
  min-height: 150px;
  padding: 32px 30px 34px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.command-stats div:last-child {
  border-right: none;
}

.command-stats strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
}

.command-stats span {
  color: rgba(255,255,255,0.52);
  font-size: 13px;
}

.command-form-panel {
  align-self: stretch;
  padding: clamp(36px, 5vw, 62px);
  background: rgba(248, 251, 255, 0.97);
  color: #071526;
  box-shadow: -30px 0 80px rgba(0,0,0,0.26);
}

.form-panel-head {
  margin-bottom: 28px;
}

.form-panel-head h2 {
  margin: 12px 0 12px;
  color: #071526;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.form-panel-head p {
  max-width: 520px;
  color: #607086;
  font-size: 14px;
  line-height: 1.75;
}

.command-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.command-form .form-group {
  margin-bottom: 13px;
}

.command-form .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #17253a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.command-form .form-group input,
.command-form .form-group select,
.command-form .form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7e0ec;
  border-radius: 0;
  background: #fff;
  color: #071526;
  font-size: 14px;
  font-family: inherit;
  box-shadow: none;
}

.command-form .form-group textarea {
  min-height: 98px;
}

.command-form .form-group input:focus,
.command-form .form-group select:focus,
.command-form .form-group textarea:focus {
  outline: none;
  border-color: #0072ce;
  box-shadow: 0 0 0 1px #0072ce;
}

.command-form .consent-row {
  margin: 12px 0 18px;
  color: #607086;
  font-size: 12px;
  line-height: 1.6;
}

.command-form .consent-row label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.command-form .consent-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.command-form .btn-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: #0072ce;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.command-form .btn-submit:hover {
  background: #071526;
  transform: none;
  box-shadow: none;
}

.contact-direct,
.contact-paths,
.contact-global {
  padding: 110px clamp(28px, 5vw, 72px);
}

.contact-direct {
  background: #fff;
}

.direct-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid #d9e2ee;
  border-left: 1px solid #d9e2ee;
}

.direct-heading,
.direct-card {
  min-height: 230px;
  padding: 32px;
  border-right: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
}

.direct-heading h2,
.paths-head h2,
.contact-global h2 {
  margin-top: 16px;
  color: #071526;
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.direct-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.direct-card a,
.direct-card strong {
  color: #071526;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-paths {
  background: #f5f8fc;
}

.paths-head {
  max-width: 1120px;
  margin: 0 auto 58px;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid #d9e2ee;
  border-left: 1px solid #d9e2ee;
}

.paths-grid article {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
  background: #fff;
}

.paths-grid article > span {
  margin-bottom: 92px;
}

.paths-grid h3 {
  margin-bottom: 14px;
  color: #071526;
  font-size: 1.25rem;
  font-weight: 900;
}

.paths-grid p {
  color: #66778c;
  font-size: 14px;
  line-height: 1.8;
}

.contact-global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  background: #071526;
  color: #fff;
}

.contact-global h2 {
  color: #fff;
}

.global-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}

.global-regions span {
  min-height: 118px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .command-shell {
    grid-template-columns: 72px 1fr;
  }

  .command-form-panel {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  .contact-command {
    margin-top: 60px;
  }

  .command-shell {
    display: block;
    min-height: auto;
  }

  .command-rail {
    display: none;
  }

  .command-stage {
    padding: 72px 24px 0;
  }

  .command-copy h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .command-stats,
  .command-form .form-row,
  .direct-grid,
  .paths-grid,
  .contact-global,
  .global-regions {
    grid-template-columns: 1fr;
  }

  .command-stats div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .command-form-panel {
    padding: 34px 24px 44px;
  }

  .contact-direct,
  .contact-paths,
  .contact-global {
    padding: 68px 24px;
  }

  .direct-heading,
  .direct-card,
  .paths-grid article {
    min-height: auto;
  }

  .paths-grid article > span {
    margin-bottom: 46px;
  }
}

/* Products collection page */
.products-index {
  background: #fff;
  color: #071526;
}

.portfolio-hero {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  background: #06111f;
  color: #fff;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(0, 114, 206, 0.52), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
}

.portfolio-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 132px 40px 96px;
  align-items: end;
}

.portfolio-copy > span,
.portfolio-heading > span,
.portfolio-feature > span,
.material-feature span,
.portfolio-cta span {
  display: inline-block;
  color: #60c8f0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.portfolio-copy h1 {
  max-width: 900px;
  margin: 20px 0 24px;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.portfolio-copy p {
  max-width: 660px;
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.9;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.portfolio-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  background: #0072ce;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.portfolio-actions a:last-child {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
}

.portfolio-feature {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.portfolio-feature strong {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.portfolio-feature p {
  margin-top: 22px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

.portfolio-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.portfolio-metrics div {
  min-height: 118px;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.portfolio-metrics div:last-child {
  border-right: 0;
}

.portfolio-metrics strong {
  display: block;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
}

.portfolio-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.portfolio-nav {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #d9e2ee;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.portfolio-nav a {
  padding: 18px 24px;
  border-right: 1px solid #d9e2ee;
  color: #071526;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-nav a:hover {
  color: #0072ce;
  background: #f6f9fc;
}

.portfolio-section {
  padding: 110px 40px;
}

.portfolio-dark {
  background: #071526;
  color: #fff;
}

.portfolio-materials {
  background: #f6f9fc;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 54px;
  max-width: 1380px;
  margin: 0 auto 54px;
}

.portfolio-heading h2 {
  color: #071526;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.portfolio-heading p {
  grid-column: 2;
  max-width: 640px;
  color: #607086;
  line-height: 1.9;
}

.portfolio-dark .portfolio-heading h2 {
  color: #fff;
}

.portfolio-dark .portfolio-heading p {
  color: rgba(255,255,255,0.62);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid #d9e2ee;
  border-left: 1px solid #d9e2ee;
}

.portfolio-dark .portfolio-grid {
  border-color: rgba(255,255,255,0.14);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-right: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
  background: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.portfolio-dark .portfolio-card {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.portfolio-card:hover {
  background: #f7faff;
}

.portfolio-dark .portfolio-card:hover {
  background: rgba(255,255,255,0.08);
}

.portfolio-card.featured {
  grid-column: span 2;
}

.portfolio-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 30px;
  background: linear-gradient(135deg, #eef6ff, #fff);
}

.portfolio-dark .portfolio-image {
  background: rgba(255,255,255,0.06);
}

.portfolio-image img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: translateY(-6px);
}

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.portfolio-card-body > span {
  color: #0072ce;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-card-body h3 {
  margin: 16px 0 12px;
  color: #071526;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.portfolio-dark .portfolio-card-body h3 {
  color: #fff;
}

.portfolio-card-body p {
  color: #66778c;
  font-size: 14px;
  line-height: 1.8;
}

.portfolio-dark .portfolio-card-body p {
  color: rgba(255,255,255,0.62);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.portfolio-tags em {
  padding: 6px 9px;
  border: 1px solid #d9e2ee;
  color: #42536a;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  color: #0072ce;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.portfolio-link::after {
  content: "→";
  margin-left: 10px;
}

.portfolio-grid.compact .portfolio-card {
  min-height: 390px;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid #d9e2ee;
  border-left: 1px solid #d9e2ee;
}

.equipment-list a {
  display: flex;
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.equipment-list span {
  color: #071526;
  font-size: 28px;
  font-weight: 900;
}

.equipment-list strong {
  color: #0072ce;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.material-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border: 1px solid #d9e2ee;
}

.material-feature h3 {
  margin: 18px 0 18px;
  color: #071526;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.material-feature p {
  color: #607086;
  line-height: 1.9;
}

.material-feature img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: linear-gradient(135deg, #eef6ff, #fff);
}

.portfolio-cta {
  padding: 110px 40px;
  text-align: center;
  color: #fff;
  background: #06111f;
}

.portfolio-cta h2 {
  max-width: 940px;
  margin: 18px auto 32px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.portfolio-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  background: #0072ce;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .portfolio-shell,
  .portfolio-heading,
  .material-feature {
    grid-template-columns: 1fr;
  }

  .portfolio-heading p {
    grid-column: auto;
  }

  .portfolio-grid,
  .equipment-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .portfolio-hero {
    margin-top: 60px;
  }

  .portfolio-shell,
  .portfolio-section,
  .portfolio-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .portfolio-shell {
    padding-top: 86px;
    padding-bottom: 64px;
  }

  .portfolio-nav,
  .portfolio-metrics,
  .portfolio-grid,
  .equipment-list {
    grid-template-columns: 1fr;
  }

  .portfolio-nav {
    position: relative;
    top: auto;
  }

  .portfolio-section,
  .portfolio-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .portfolio-card {
    min-height: auto;
  }

  .portfolio-image {
    min-height: 220px;
  }

  .material-feature {
    padding: 28px;
  }
}

/* Shuhua-inspired product center */
.sh-products {
  background: #fff;
  color: #111;
}

.sh-product-banner {
  margin-top: 72px;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246,248,250,0.98) 0%, rgba(246,248,250,0.86) 48%, rgba(246,248,250,0.34) 100%),
    radial-gradient(circle at 76% 46%, rgba(0, 184, 207, 0.2), transparent 30%),
    url("../images/hzbg.png") center/cover no-repeat;
}

.sh-banner-inner {
  width: min(1550px, calc(100% - 80px));
  margin: 0 auto;
}

.sh-banner-copy {
  max-width: 620px;
}

.sh-banner-copy span,
.sh-section-title .en,
.strip-card span,
.sh-material-card .txt span {
  display: block;
  color: #00b8cf;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sh-banner-copy h1 {
  color: #111;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

.sh-banner-copy p {
  color: #505050;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 40px;
}

.sh-banner-copy a,
.strip-card a,
.sh-material-card .txt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 50px;
  border: 1px solid #00b8cf;
  background: #00b8cf;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}

.sh-banner-copy a:hover,
.strip-card a:hover,
.sh-material-card .txt a:hover {
  background: #009fb3;
  border-color: #009fb3;
}

.sh-category-nav {
  display: flex;
  justify-content: center;
  background: #f1f3f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.sh-category-nav a {
  width: 220px;
  min-height: 150px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #e0e0e0;
  color: #111;
}

.sh-category-nav a:last-child {
  border-right: 1px solid #e0e0e0;
}

.sh-category-nav span {
  color: #00b8cf;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sh-category-nav strong {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sh-category-nav em {
  color: #777;
  font-size: 12px;
  font-style: normal;
}

.sh-category-nav a:hover,
.sh-category-nav a.on {
  background: #00b8cf;
  color: #fff;
  border-color: #00b8cf;
}

.sh-category-nav a:hover span,
.sh-category-nav a:hover em,
.sh-category-nav a.on span,
.sh-category-nav a.on em {
  color: rgba(255,255,255,0.86);
}

.sh-product-section {
  padding: 90px 0;
  background: #fff;
}

.sh-product-section.gray {
  background: #f1f3f5;
}

.sh-section-title {
  max-width: 1050px;
  margin: 0 auto 58px;
  text-align: center;
  padding: 0 24px;
}

.sh-section-title h2 {
  color: #111;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 700;
}

.sh-section-title p {
  color: #657173;
  font-size: 16px;
  line-height: 1.9;
}

.sh-product-grid {
  width: min(1550px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sh-product-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.sh-product-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 15px;
  background: #fff;
  transition: var(--transition);
}

.sh-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.sh-large-card {
  grid-column: span 2;
}

.sh-product-card .pic {
  min-height: 250px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.sh-product-card .pic img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.sh-product-card:hover .pic img {
  transform: scale(1.06);
}

.sh-product-card.no-img {
  min-height: 300px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0,184,207,0.08), rgba(255,255,255,0.96)),
    #fff;
}

.sh-product-card .txt {
  flex: 1;
  padding: 26px 28px 30px;
}

.sh-product-card .txt span {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 8px;
}

.sh-product-card .txt h3 {
  color: #111;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sh-product-card .txt p {
  color: #657173;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.sh-product-card .txt a {
  color: #00b8cf;
  font-size: 14px;
  font-weight: 700;
}

.sh-product-card .txt a::after {
  content: " →";
}

.sh-solution-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.strip-card {
  min-height: 430px;
  padding: 72px 8vw;
  color: #fff;
  background:
    linear-gradient(rgba(0, 45, 64, 0.62), rgba(0, 45, 64, 0.62)),
    url("../images/hero-scan.jpg") center/cover no-repeat;
}

.strip-card.dark {
  background:
    linear-gradient(rgba(2, 17, 31, 0.76), rgba(2, 17, 31, 0.76)),
    url("../images/p4-scene2.jpg") center/cover no-repeat;
}

.strip-card h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  margin-bottom: 22px;
}

.strip-card p {
  max-width: 520px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 34px;
}

.sh-equipment-grid {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
}

.sh-equipment-grid a {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sh-equipment-grid a:hover {
  background: #00b8cf;
}

.sh-equipment-grid span {
  color: #111;
  font-size: 30px;
  font-weight: 800;
}

.sh-equipment-grid em {
  color: #00b8cf;
  font-size: 13px;
  font-style: normal;
}

.sh-equipment-grid a:hover span,
.sh-equipment-grid a:hover em {
  color: #fff;
}

.sh-material-card {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 15px;
  overflow: hidden;
}

.sh-material-card .pic {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.sh-material-card .pic img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.sh-material-card .txt {
  padding: 56px;
}

.sh-material-card .txt h3 {
  color: #111;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.sh-material-card .txt p {
  color: #657173;
  line-height: 1.9;
  margin-bottom: 32px;
}

.sh-side-float {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 10px;
}

.sh-side-float a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 12px rgba(0,0,0,0.12);
  color: #999;
  font-size: 12px;
}

.sh-side-float a:hover {
  color: #fff;
  background: #00b8cf;
}

@media (max-width: 1100px) {
  .sh-product-grid,
  .sh-product-grid.four,
  .sh-solution-strip,
  .sh-material-card {
    grid-template-columns: 1fr 1fr;
  }

  .sh-large-card {
    grid-column: span 1;
  }

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

@media (max-width: 760px) {
  .sh-product-banner {
    margin-top: 60px;
    min-height: 480px;
  }

  .sh-banner-inner,
  .sh-product-grid,
  .sh-equipment-grid,
  .sh-material-card {
    width: calc(100% - 32px);
  }

  .sh-category-nav {
    flex-wrap: wrap;
  }

  .sh-category-nav a {
    width: 50%;
    min-height: 120px;
  }

  .sh-product-grid,
  .sh-product-grid.four,
  .sh-solution-strip,
  .sh-material-card,
  .sh-equipment-grid {
    grid-template-columns: 1fr;
  }

  .sh-product-section {
    padding: 64px 0;
  }

  .strip-card {
    min-height: 330px;
    padding: 48px 28px;
  }

  .sh-material-card .txt {
    padding: 32px 24px;
  }

  .sh-side-float {
    display: none;
  }
}

/* Aidite-style product list page */
.aidite-list-body {
  margin: 0;
  background: #fff;
  color: #231f20;
  font-family: Arial, Helvetica, sans-serif;
}

.aid-list-page * {
  box-sizing: border-box;
}

.aid-list-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 64px;
  border-bottom: 1px solid #ededed;
  background: #fff;
}

.aid-list-logo {
  justify-self: start;
}

.aid-list-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.aid-list-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 48px;
  height: 100%;
  font-size: 15px;
}

.aid-list-nav > a,
.aid-list-nav-item > a {
  color: #333;
  line-height: 80px;
}

.aid-list-nav > a:hover,
.aid-list-nav-item:hover > a,
.aid-list-nav-item.active > a {
  color: #0052a2;
}

.aid-list-nav-item {
  height: 100%;
}

.aid-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 34px 10vw 38px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.aid-list-nav-item:hover .aid-mega {
  display: grid;
}

.aid-mega-col {
  padding: 0 34px;
  border-right: 1px solid #ececec;
}

.aid-mega-col:last-child {
  border-right: none;
}

.aid-mega-col h4 {
  margin: 0 0 16px;
  color: #0052a2;
  font-size: 16px;
}

.aid-mega-col a {
  display: block;
  padding: 8px 0;
  color: #555;
  font-size: 14px;
}

.aid-mega-col a:hover {
  color: #0052a2;
}

.aid-list-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #666;
  font-size: 14px;
}

.aid-list-tools a,
.aid-list-tools button {
  color: #666;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.aid-list-main {
  background: #fff;
}

.aid-products-hero {
  width: 100%;
  background: #d7ecf5;
  overflow: hidden;
}

.aid-products-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.aid-list-title {
  padding: 58px 24px 42px;
  text-align: center;
}

.aid-list-title h1 {
  margin: 0;
  color: #333;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}

.aid-list-cats {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 42px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e5e5e5;
}

.aid-list-cats a {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.aid-list-cats a:hover,
.aid-list-cats a.active {
  color: #0052a2;
}

.aid-product-group {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.aid-product-group h2 {
  margin: 0 0 28px;
  color: #333;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.aid-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 44px;
}

.aid-product-card {
  display: block;
  min-height: 460px;
  padding: 34px 34px 36px;
  text-align: center;
  background: #fff;
  border: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.aid-product-card:hover {
  border-color: #e5e5e5;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.aid-product-card figure {
  height: 330px;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.aid-product-card img {
  max-width: 116%;
  max-height: 320px;
  object-fit: contain;
}

.aid-product-card h3 {
  margin: 0 0 9px;
  color: #0052a2;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.aid-product-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}

.aid-product-card.text-only {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: #f0f0f0;
  background: #fafafa;
}

.product-float-actions {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.product-float-btn {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 14px 30px rgba(41, 99, 150, 0.2);
  color: #1f75e8;
  font: 600 14px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-float-btn:hover {
  background: #fff;
  box-shadow: 0 18px 36px rgba(31, 117, 232, 0.28);
  transform: translateY(-3px);
}

.product-float-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #77b4ff 0%, #2368f0 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}

.product-float-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.product-float-icon-whatsapp {
  background: linear-gradient(135deg, #63da7b 0%, #22b957 100%);
}

.aid-list-footer {
  margin-top: 54px;
  padding: 34px 24px 42px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.aid-list-footer p {
  max-width: 900px;
  margin: 12px auto;
}

.aid-list-footer a {
  color: #0052a2;
}

@media (max-width: 1180px) {
  .aid-list-header {
    padding: 0 24px;
  }

  .aid-list-nav {
    gap: 24px;
  }

  .aid-list-tools {
    display: none;
  }

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

@media (max-width: 760px) {
  .aid-list-header {
    height: auto;
    min-height: 68px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .aid-list-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    font-size: 14px;
  }

  .aid-list-nav > a,
  .aid-list-nav-item > a {
    line-height: 32px;
    white-space: nowrap;
  }

  .aid-mega {
    display: none !important;
  }

  .aid-list-title {
    padding-top: 48px;
  }

  .product-float-actions {
    right: 14px;
    gap: 10px;
  }

  .product-float-btn {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 12px;
  }

  .product-float-icon {
    width: 34px;
    height: 34px;
  }

  .product-float-icon svg {
    width: 22px;
    height: 22px;
  }

  .aid-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aid-product-card {
    min-height: 360px;
    padding: 24px 18px 26px;
  }

  .aid-product-card figure {
    height: 260px;
  }

  .aid-product-card h3 {
    font-size: 18px;
  }
}
