/* -------------------------------------------------
   Custom section: Solutions (generated from hero)
   Kept separate to avoid touching template minified CSS.
-------------------------------------------------- */

/* -------------------------------------------------
   Mega menu width fix (desktop)
-------------------------------------------------- */
@media (min-width: 992px) {
  .navbar .dropdown-menu.mega-menu {
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 40px) !important;
  }

  .navbar .mega-grid {
    overflow-x: visible;
  }
}

.solutions-section {
  padding-top: 90px;
  padding-bottom: 120px;
}

.solutions-head {
  gap: 18px;
  margin-bottom: 34px;
}

.solutions-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  font-weight: 600;
  font-size: 14px;
}

.solutions-kicker .num {
  min-width: 24px;
}

.solutions-kicker .line {
  width: 56px;
  height: 2px;
  background: #111;
  opacity: 0.18;
}

.solutions-title {
  margin: 14px 0 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 4.8vw, 72px);
}

.solutions-title .strong {
  display: block;
  color: #111;
}

.solutions-title .muted {
  display: block;
  color: rgba(17, 17, 17, 0.32);
}

.solutions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.solutions-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.solution-card {
  background: transparent;
}

.solution-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.06);
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.06);
}

.solution-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.solution-body {
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.solution-meta {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.12;
}

.solution-desc {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 16px;
  line-height: 1.5;
}

.solution-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.solution-arrow i {
  color: #111;
  font-size: 18px;
}

.solution-arrow:hover {
  transform: translateX(2px);
  background: rgba(17, 17, 17, 0.1);
}

/* Responsive: horizontally scrollable cards like the reference */
@media (max-width: 991px) {
  .solutions-section {
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  .solutions-grid::-webkit-scrollbar {
    height: 8px;
  }

  .solutions-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
  }

  .solution-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .solutions-head {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .solutions-cta {
    align-self: flex-start;
  }

  .solution-body {
    grid-template-columns: 1fr;
  }

  .solution-arrow {
    margin-top: 8px;
  }
}

/* -------------------------------------------------
   Solutions page: stacked detailed cards
-------------------------------------------------- */
.solutions-page .solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.solutions-page .solution-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0,0,0,.06);
}

.solutions-page .solution-media {
  border-radius: 18px;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 7;
  position: relative;
}

.solutions-page .solution-body {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.solutions-page .solution-desc {
  margin-top: 8px;
}

.solutions-page .solution-long {
  margin: 12px 0 0;
  color: rgba(17,17,17,.72);
  font-size: 16px;
  line-height: 1.62;
}

.solutions-page .solution-summary {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.solutions-page .solution-summary li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(17,17,17,.88);
  font-weight: 600;
  line-height: 1.45;
}

.solutions-page .solution-summary i {
  color: #e11d2e;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 1px;
}

.solutions-page .solution-actions {
  padding-top: 4px;
}

@media (max-width: 991px) {
  .solutions-page .solution-card {
    padding: 14px;
  }

  .solutions-page .solution-media {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .solutions-page .solution-actions .btn-two {
    width: 100%;
    text-align: center;
  }
}


/* -------------------------------------------------
   Footer (Grafty-style)
-------------------------------------------------- */
.site-footer{
  margin-top: 40px;
  border-top: 1px solid rgba(17,17,17,.10);
  padding-top: 70px;
  padding-bottom: 28px;
  background: #fff;
}

.site-footer .footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 40px;
}

.footer-brand{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
  color:#111;
  margin-top: 8px;
}

.footer-logo{
  height: 32px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.footer-brand-text{
  font-family: inherit;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.footer-brand-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 22px;
  max-width: 470px;
}

.footer-event-badges{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 18px 22px;
}

.footer-event-badge{
  display:block;
  width:auto;
  height:auto;
  object-fit:contain;
  flex: 0 0 auto;
}

.footer-event-badge-websummit{
  max-width: 230px;
}

.footer-event-badge-impact{
  max-width: 45px;
  border-radius: 50%;
}

.footer-cols{
  display:flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 120px;
  flex: 1;
}

.footer-title{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color:#111;
  margin-bottom: 18px;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.footer-links a{
  text-decoration:none;
  color: rgba(17,17,17,.58);
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}

.footer-links a:hover{
  color: rgba(17,17,17,.92);
}


.footer-contact-text{
  color: rgba(17,17,17,.92);
  font-weight: 600;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 2px;
}

.footer-phone{
  display:inline-block;
  margin-top: 22px;
  text-decoration:none;
  color:#111;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 34px;
  line-height: 1;
}

.footer-bottom{
  margin-top: 56px;
  border-top: 1px solid rgba(17,17,17,.10);
  padding-top: 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.footer-copy{
  color: rgba(17,17,17,.55);
  font-weight: 600;
}

/* Back-to-top button */
.to-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #e11d2e;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

.to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top i{
  font-size: 16px;
}

/* Responsive footer */
@media (max-width: 991px){
  .site-footer{
    padding-top: 54px;
  }

  .footer-top{
    flex-direction: column;
  }

  .footer-brand-block{
    max-width: 100%;
  }

  .footer-event-badges{
    gap: 16px 18px;
  }

  .footer-event-badge-websummit{
    max-width: 210px;
  }

  .footer-event-badge-impact{
    max-width: 88px;
  }

  .footer-cols{ 
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }
}

@media (max-width: 575px){
  .footer-logo{
    max-width: 260px;
  }

  .footer-event-badges{
    align-items:flex-start;
  }

  .footer-event-badge-websummit{
    max-width: 188px;
  }

  .footer-event-badge-impact{
    max-width: 76px;
  }
}


/* -------------------------------------------------
   Contact page
-------------------------------------------------- */
.contact-wrap { padding: 80px 0; }
.contact-card {
  background:#fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  overflow:hidden;
}
.contact-card .contact-head {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-card .contact-body { padding: 28px; }
.contact-item {
  display:flex; gap:16px; align-items:flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-item:last-child{ border-bottom:0; padding-bottom:0; }
.contact-ico{
  width:46px;height:46px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(0,0,0,.04);
  flex: 0 0 46px;
}
.contact-ico i{ font-size: 20px; line-height:1; }
.contact-item .label{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; opacity:.65; margin-bottom:6px; }
.contact-item .value{ font-size:18px; font-weight:600; }
.contact-form .form-control{ border-radius: 14px; padding: 14px 14px; }
.contact-form textarea.form-control{ min-height: 140px; }
.contact-map iframe{ width:100%; height:100%; min-height: 340px; border:0; border-radius: 20px; }
@media (max-width: 991px){
  .contact-wrap{ padding: 60px 0; }
  .contact-map iframe{ min-height: 280px; }
}

/* -------------------------------------------------
   Product page: Vox Door
-------------------------------------------------- */
.product-wrap { padding: 84px 0 26px; }
.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  height: 100%;
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-box {
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.product-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(17,17,17,.58);
  margin-bottom: 10px;
}
.product-title {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(28px,3vw,46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.product-text {
  margin: 0;
  color: rgba(17,17,17,.72);
  font-size: 17px;
  line-height: 1.7;
}
.product-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.product-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(17,17,17,.9);
  font-weight: 600;
}
.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e11d2e;
}

.product-section {
  padding: 24px 0 48px;
}
.product-block {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
  height: 100%;
}
.product-block h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.product-block p {
  margin: 0;
  color: rgba(17,17,17,.7);
  line-height: 1.7;
}

.product-benefits {
  padding: 16px 0 70px;
}
.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(17,17,17,.08);
  height: 100%;
}
.benefit-card .num {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(17,17,17,.55);
  margin-bottom: 10px;
}
.benefit-card h4 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #111;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.benefit-card p {
  margin: 0;
  color: rgba(17,17,17,.7);
  line-height: 1.65;
}

.product-cta {
  padding: 10px 0 30px;
}
.product-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 36px 34px;
  color: #fff;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
}

.product-cta-title {
  margin: 0 0 10px;
  font-size: clamp(28px,3vw,40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.product-cta-text {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 991px){
  .product-wrap { padding-top: 64px; }
  .product-media { min-height: 320px; }
  .product-box { padding: 26px 22px; }
  .product-block { padding: 24px 20px; }
  .product-cta-box { padding: 28px 24px; }
}

/* -------------------------------------------------
   Product page extras: Vox Door
-------------------------------------------------- */
.vox-stats { padding: 8px 0 42px; }
.vox-stat-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,.08);
  background: linear-gradient(145deg, #fff 0%, #f8f9fb 100%);
}

.vox-stat-value {
  margin: 0 0 8px;
  color: #111;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.vox-stat-label {
  margin: 0;
  color: rgba(17,17,17,.66);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.vox-feature-wrap { padding: 10px 0 58px; }
.vox-section-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.vox-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(17,17,17,.58);
  font-weight: 700;
  margin-bottom: 8px;
}
.vox-section-title {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.vox-section-text {
  margin: 0;
  color: rgba(17,17,17,.66);
  font-size: 17px;
  line-height: 1.65;
}
.vox-feature-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 18px;
  padding: 22px 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.vox-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.vox-feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(225,29,46,.1);
  color: #e11d2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.vox-feature-ico i {
  font-size: 20px;
  line-height: 1;
}
.vox-feature-card h4 {
  margin: 0 0 8px;
  color: #111;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.vox-feature-card p {
  margin: 0;
  color: rgba(17,17,17,.68);
  line-height: 1.62;
}

.vox-flow { padding: 8px 0 68px; }
.vox-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.vox-step {
  height: 100%;
  border-radius: 18px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
}
.vox-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(17,17,17,.08);
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.vox-step h5 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}
.vox-step p {
  margin: 0;
  color: rgba(17,17,17,.66);
  line-height: 1.58;
}

.vox-faq { padding: 0 0 70px; }
.vox-faq .accordion-item {
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}
.vox-faq .accordion-button {
  background: #fff;
  box-shadow: none !important;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 22px;
}
.vox-faq .accordion-button:not(.collapsed) {
  color: #111;
  background: rgba(17,17,17,.03);
}
.vox-faq .accordion-body {
  padding: 0 22px 20px;
  color: rgba(17,17,17,.72);
  line-height: 1.65;
}

@media (max-width: 1199px){
  .vox-flow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px){
  .vox-stat-value { font-size: 26px; }
  .vox-flow-list { grid-template-columns: 1fr; }
}


/* -------------------------------------------------
   G-Mesh one page additions
-------------------------------------------------- */
html { scroll-behavior: smooth; }
.anchor-offset { scroll-margin-top: 110px; }
.hero-one-page-grid {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 28px;
  align-items: end;
  padding: 56px 0 44px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-subcopy {
  max-width: 760px;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px,2.1vw,24px);
  line-height: 1.55;
  margin: 14px 0 20px;
}
.hero-tag-list { gap: 10px; margin-bottom: 26px; }
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  transition: .2s ease;
}
.btn-outline-light:hover { color: #111; background: #fff; }
.hero-side-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.hero-side-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.72);
  margin-bottom: 12px;
}
.hero-side-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.08;
  color: #fff;
}
.hero-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-side-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}
.hero-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e11d2e;
}
.gmesh-split-section { padding: 12px 0 52px; }
.insight-card {
  border-radius: 24px;
  padding: 28px 28px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
  border: 1px solid rgba(17,17,17,.08);
}
.insight-card-dark {
  background: linear-gradient(145deg, #111 0%, #272727 100%);
  color: #fff;
}
.insight-label,
.industry-kicker {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 14px;
  color: rgba(17,17,17,.55);
}
.insight-card-dark .insight-label,
.industry-panel-dark .industry-kicker { color: rgba(255,255,255,.7); }
.insight-list,
.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.insight-list li,
.industry-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.65;
  color: rgba(17,17,17,.8);
}
.insight-card-dark .insight-list li,
.industry-panel-dark .industry-list li { color: rgba(255,255,255,.9); }
.insight-list li::before,
.industry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e11d2e;
}
.gmesh-industries { padding: 0 0 64px; }
.industry-panel {
  height: 100%;
  border-radius: 24px;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 16px 50px rgba(0,0,0,.05);
}
.industry-panel-dark {
  background: linear-gradient(135deg, #161616 0%, #323232 100%);
  color: #fff;
}
.industry-panel h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.industry-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-chip-grid span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #f5f6f8;
  color: #111;
  font-weight: 700;
}
.industry-footnote {
  margin: 18px 0 0;
  color: rgba(17,17,17,.7);
  line-height: 1.65;
}
.gmesh-video-section { padding: 8px 0 70px; }
.video-card {
  height: 100%;
  border-radius: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
}
.video-card-head h2,
.video-actions-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(26px,3vw,38px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #111;
}
.youtube-frame {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 22px;
  background: #111;
  min-height: 440px;
}
.youtube-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}
.youtube-placeholder {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #fff;
  background: radial-gradient(circle at top, rgba(225,29,46,.35), transparent 40%), linear-gradient(145deg, #0c0c0c 0%, #1d1d1d 100%);
}
.play-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e11d2e;
  color: #fff;
  font-size: 34px;
  margin-bottom: 16px;
  box-shadow: 0 14px 40px rgba(225,29,46,.34);
}
.youtube-placeholder h4 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #fff;
}
.youtube-placeholder p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.video-actions-card p {
  color: rgba(17,17,17,.72);
  line-height: 1.65;
}
.video-contact-mini {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: rgba(17,17,17,.78);
}
.video-contact-mini i { color: #e11d2e; margin-right: 8px; }
.form-note { color: rgba(17,17,17,.58); }
@media (max-width: 1199px) {
  .hero-one-page-grid { grid-template-columns: 1fr; min-height: auto; }
}
@media (max-width: 991px) {
  .anchor-offset { scroll-margin-top: 90px; }
  .hero-one-page-grid { padding: 38px 0 30px; }
  .hero-side-card, .insight-card, .industry-panel, .video-card { padding: 24px 20px; }
  .youtube-frame, .youtube-frame iframe, .youtube-placeholder { min-height: 320px; }
}


/* -------------------------------------------------
   G-Mesh one page layout fixes
-------------------------------------------------- */
body { overflow-x: hidden; }
.theme-main-menu .logo img {
  max-height: 42px;
  width: auto;
}
.gmesh-menu-row {
  gap: 18px;
  min-width: 0;
}
.onepage-nav-shell {
  min-width: 0;
}
.hero-banner-two .main-bg {
  padding: 200px 0 56px;
  text-align: left;
}
.hero-banner-two .main-bg:before {
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.7) 100%);
}
.hero-banner-two .hero-heading {
  font-size: clamp(56px, 8vw, 102px);
  line-height: .92;
  margin-bottom: 10px;
  max-width: 7ch;
}
.hero-banner-two .tags.hero-tag-list {
  position: static;
  left: auto;
  bottom: auto;
}
.hero-banner-two .hero-tag-list li {
  padding: 0 20px;
  line-height: 44px;
  font-size: 15px;
}
.hero-one-page-grid {
  align-items: center;
}
.hero-one-page-grid > div:first-child {
  min-width: 0;
}
.hero-side-card {
  max-width: 100%;
}
.onepage-nav-shell .bg-shape {
  display: none;
}
@media (min-width: 992px) {
  .theme-main-menu.gap-two {
    padding: 26px 28px;
  }
  .gmesh-menu-row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
  .onepage-nav-shell {
    justify-self: center;
  }
  .onepage-nav-shell .navbar-collapse {
    display: block !important;
  }
  .onepage-nav-shell .navbar-nav {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 999px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    padding: 8px 14px;
    flex-wrap: nowrap;
  }
  .theme-main-menu.menu-style-two .nav-item .nav-link {
    font-size: 15px;
    margin: 0 12px;
    padding: 10px 0;
    white-space: nowrap;
  }
  .theme-main-menu.menu-style-two .nav-item .nav-link:before {
    display: none;
  }
  .right-widget ul {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .hero-banner-two .main-bg {
    padding-top: 180px;
  }
  .hero-banner-two .hero-heading {
    max-width: none;
  }
}
@media (max-width: 991px) {
  .theme-main-menu.gap-two {
    padding: 20px 18px;
  }
  .theme-main-menu .logo img {
    max-height: 36px;
  }
  .hero-banner-two .main-bg {
    padding: 150px 0 42px;
  }
  .hero-one-page-grid {
    gap: 22px;
  }
  .hero-subcopy {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .hero-banner-two .main-bg {
    padding-top: 134px;
  }
  .hero-banner-two .hero-heading {
    font-size: 44px;
  }
  .hero-banner-two .hero-tag-list li,
  .btn-outline-light,
  .hero-cta-group .btn-two {
    width: 100%;
    justify-content: center;
  }
}


.contact-hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px;
  height:1px;
  overflow:hidden;
}
.contact-status{
  display:none;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.contact-status.is-visible{ display:block; }
.contact-status.is-loading{
  display:block;
  background: rgba(0,0,0,.04);
  color:#202020;
}
.contact-status.is-success{
  display:block;
  background: rgba(25, 135, 84, .12);
  color:#146c43;
}
.contact-status.is-error{
  display:block;
  background: rgba(220, 53, 69, .12);
  color:#b02a37;
}
.contact-form .btn-two[disabled]{
  opacity:.7;
  pointer-events:none;
}

/* -------------------------------------------------
   G-Mesh language switcher
-------------------------------------------------- */
.gm-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.gm-lang-switch__btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  min-width: 40px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gm-lang-switch__btn:hover {
  color: #fff;
}

.gm-lang-switch__btn.is-active {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.gm-lang-switch__btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 2px;
}

.gm-lang-switch--drawer {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.gm-lang-switch--drawer .gm-lang-switch__btn {
  min-width: 64px;
  height: 42px;
}

@media (max-width: 575px) {
  .gm-lang-switch {
    padding: 3px;
  }

  .gm-lang-switch__btn {
    min-width: 36px;
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }
}
