:root {
  --color-primary: #07101c;
  --color-secondary: #59c9ff;
  --color-accent: #d7e4ff;
  --color-text: #222222;
  --color-white: #ffffff;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-heading: "Inter", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --shadow-soft: 0 18px 40px rgba(10, 37, 64, 0.08);
  --radius-large: 28px;
  --radius-medium: 20px;
  --container-width: min(1180px, calc(100vw - 2rem));
  --transition-base: 220ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, 0.12), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f9fbfd 55%, #edf4f9 100%);
}

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

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

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

.section-spacing {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 19, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  min-height: 4.95rem;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-branding__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #7ee7ff);
  color: var(--color-primary);
  font: 800 1rem/1 var(--font-heading);
}

.site-branding {
  min-width: 0;
}

.site-branding__logo,
.site-branding__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-branding__logo img,
.custom-logo {
  width: auto;
  max-width: 11rem;
  max-height: 3.9rem;
}

.site-branding__text strong,
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

.primary-navigation {
  min-width: 0;
  justify-self: center;
}

.primary-menu,
.footer-menu,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.primary-menu li {
  position: relative;
}

.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: rgba(225, 232, 242, 0.88);
  transition: color var(--transition-base), opacity var(--transition-base);
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible {
  color: #ffffff;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  min-width: 18rem;
  padding: 1rem;
  background: rgba(8, 15, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.5rem);
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 1200;
}

.primary-menu .sub-menu .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  padding: 0.75rem 0 0;
}

.primary-menu > .menu-item-has-children > .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(14rem, 1fr));
  gap: 0.85rem;
  width: min(44rem, calc(100vw - 2rem));
}

.primary-menu > .menu-item-has-children > .sub-menu > li {
  padding: 0.45rem 0.65rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

.primary-menu > .menu-item-has-children > .sub-menu > li > a {
  display: block;
  margin-bottom: 0.3rem;
  color: #f4f8fb;
  font-weight: 700;
}

.primary-menu > .menu-item-has-children > .sub-menu > li .sub-menu,
.primary-menu > .menu-item-has-children > .sub-menu > li .sub-menu li {
  list-style: none;
  margin: 0;
}

.primary-menu > .menu-item-has-children > .sub-menu > li .sub-menu li a {
  display: block;
  padding: 0.28rem 0;
  color: #9cb0c3;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(238, 244, 251, 0.88);
  cursor: pointer;
  transition: color var(--transition-base), transform var(--transition-base);
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-search-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.site-header__cta,
.site-header__actions .button {
  min-height: 2.6rem;
  padding: 0.8rem 1.3rem;
  border-radius: 0;
  background: linear-gradient(135deg, #d6defb, #bac9f5);
  color: #193b6a;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: none;
}

.site-search-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(6, 12, 22, 0.96);
}

.site-search-panel__inner {
  padding: 1rem 0 1.2rem;
}

.site-search-panel .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.site-search-panel label {
  display: block;
}

.site-search-panel .search-field {
  width: 100%;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f0f6fb;
  font: 400 0.96rem/1.4 var(--font-body);
  box-sizing: border-box;
}

.site-search-panel .search-submit {
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(214, 222, 251, 0.78);
  background: linear-gradient(135deg, #d6defb, #bac9f5);
  color: #193b6a;
  font: 600 0.85rem/1 var(--font-heading);
  cursor: pointer;
}

.button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-secondary), #62dfff);
  color: var(--color-primary);
  font-weight: 700;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(10, 37, 64, 0.18);
  background: transparent;
  color: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 37, 64, 0.95) 20%, rgba(10, 37, 64, 0.55) 70%, rgba(0, 174, 239, 0.3));
}

.hero__inner,
.cta-banner,
.split-section,
.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.hero__inner {
  position: relative;
  min-height: 80vh;
  align-items: end;
  padding: 7rem 0 4rem;
}

.hero__content {
  max-width: 40rem;
}

.hero__lead,
.page-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-secondary);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.hero__actions,
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Make inner-hero sections full-bleed and match homepage hero styling */
.inner-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  /* full-bleed technique */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 37, 64, 0.95) 20%, rgba(10, 37, 64, 0.55) 70%, rgba(0, 174, 239, 0.14));
  pointer-events: none;
}

.inner-hero .container {
  /* keep content aligned with other sections */
  position: relative;
  z-index: 2;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Ensure consistent spacing between inner sections */
.inner-section {
  padding: 4.5rem 0;
}

@media (min-width: 980px) {
  .inner-hero .container {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .inner-hero {
    min-height: 60vh;
  }
}

.hero__stats {
  display: grid;
  gap: 1rem;
  align-self: center;
}

.stat-card,
.surface-card,
.content-card,
.cta-banner,
.spec-table,
.archive-filters,
.page-hero,
.site-footer {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.surface-card,
.content-card__body,
.page-hero,
.archive-filters {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 2rem;
}

.section-accent {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.75), rgba(232, 242, 248, 0.8));
}

.section-dark {
  background: linear-gradient(180deg, var(--color-primary), #102f52);
  color: var(--color-white);
}

.section-dark .surface-card,
.section-dark .cta-banner {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-list,
.timeline-list,
.gallery-grid,
.card-grid,
.post-grid,
.logo-strip {
  display: grid;
  gap: 1.25rem;
}

.feature-list {
  padding-left: 1rem;
}

.card-grid,
.post-grid,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.content-card {
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.content-card:hover {
  transform: translateY(-4px);
}

.content-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.term-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.term-pill {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.1);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.spec-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.spec-table__row:last-child {
  border-bottom: 0;
}

.slider {
  overflow: hidden;
}

.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 24rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__slide {
  scroll-snap-align: start;
}

.slider__controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.slider__button {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  cursor: pointer;
}

.logo-strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.logo-strip__item {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 10rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.page-hero--compact {
  margin-bottom: 2rem;
}

.content-single,
.entry-content {
  display: grid;
  gap: 1.5rem;
}

.site-footer {
  margin: 2rem 1rem 1rem;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #070f1b 0%, #070d17 100%);
  border: 1px solid rgba(142, 168, 202, 0.15);
  border-radius: var(--radius-large);
  color: #e6edf8;
}

.site-footer__kpis {
  border-bottom: 1px solid rgba(142, 168, 202, 0.14);
  background: linear-gradient(90deg, rgba(13, 25, 42, 0.95), rgba(11, 20, 34, 0.95));
}

.site-footer__kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0;
}

.site-footer__kpi strong {
  display: block;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #f4f8ff;
  line-height: 1.1;
}

.site-footer__kpi span {
  display: block;
  margin-top: 0.35rem;
  color: #8ea5c4;
  font-size: 0.82rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
}

.site-footer__heading,
.site-footer__title {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
  color: #f4f8ff;
}

.site-footer__logo {
  display: block;
  width: auto;
  max-width: 11rem;
  height: auto;
}

.site-footer__copy {
  margin: 0 0 1rem;
  color: #8ea5c4;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 30ch;
}

.site-footer__copyright {
  margin: 0;
  color: #7187a6;
  font-size: 0.78rem;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.site-footer__links a {
  color: #8ea5c4;
  font-size: 0.88rem;
}

.site-footer__links a:hover {
  color: #f4f8ff;
}

.menu-toggle,
.mobile-cta {
  display: none;
}

.wpcf7 {
  max-width: 52rem;
  margin-top: 2rem;
}

.wpcf7-form {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.cf7-grid p {
  margin: 0;
}

.cf7-grid p:last-child,
.cf7-grid p:nth-last-child(2) {
  grid-column: 1 / -1;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(10, 37, 64, 0.14);
  border-radius: 1rem;
  background: #f8fbfd;
  color: var(--color-primary);
  font: 600 0.98rem/1.4 var(--font-body);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  box-sizing: border-box;
}

.wpcf7 textarea {
  min-height: 12rem;
  resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #5e6e80;
  font-weight: 500;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.14);
  background: #ffffff;
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-secondary), #62dfff);
  color: var(--color-primary);
  font: 800 1rem/1 var(--font-heading);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 14px 30px rgba(0, 174, 239, 0.24);
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
}

.wpcf7 .wpcf7-spinner {
  margin: 0.75rem 0 0 0.75rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .hero__inner,
  .split-section,
  .cta-banner,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .site-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__actions {
    gap: 0.45rem;
  }

  .site-branding__logo img,
  .custom-logo {
    max-width: 9rem;
    max-height: 3rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #f4f7fb;
  }

  .primary-navigation {
    position: fixed;
    inset: 5.8rem 1rem auto;
    padding: 1rem;
    background: rgba(8, 15, 24, 0.98);
    border-radius: 1.5rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.75rem 0 0.25rem 1rem;
    width: 100%;
    background: transparent;
    border: 0;
  }

  .primary-menu > .menu-item-has-children > .sub-menu {
    grid-template-columns: 1fr;
    padding-left: 1rem;
  }

  .primary-menu > .menu-item-has-children > .sub-menu > li {
    padding: 0.2rem 0;
    background: transparent;
  }

  .mobile-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    display: block;
  }
}

@media (max-width: 639px) {
  .primary-navigation {
    inset: 4.8rem 0 auto 0;
    width: 100%;
    max-height: calc(100vh - 4.8rem);
    overflow-y: auto;
    border-radius: 0;
    padding: 1rem 1.15rem 1.25rem;
  }

  .section-spacing {
    padding: 3.5rem 0;
  }

  .site-header__bar {
    min-height: 4.8rem;
  }

  .site-branding__logo img,
  .custom-logo {
    max-width: 7.8rem;
    max-height: 2.5rem;
  }

  .hero__inner {
    min-height: 72vh;
    padding-top: 6rem;
  }

  .spec-table__row {
    grid-template-columns: 1fr;
  }

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

  .site-header__bar {
    gap: 0.9rem;
  }

  .site-header__actions {
    display: none;
  }

  .site-search-panel .search-form {
    grid-template-columns: 1fr;
  }
}

body.home {
  color: #d7e0eb;
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, 0.16), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(0, 174, 239, 0.09), transparent 24rem),
    linear-gradient(180deg, #07101c, #08111d 38%, #09111b 100%);
}

body.home .site-header {
  background: rgba(4, 10, 18, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

body.home .site-branding__text strong,
body.home .primary-menu a,
body.home .site-header__actions .button--ghost,
body.home .site-footer,
body.home .site-footer a {
  color: #f4f7fb;
}

.showcase-title,
.showcase-heading__title {
  text-align: center;
}

.showcase-hero__copy,
.showcase-contact__copy {
  text-align: center;
}

.showcase-heading {
  text-align: center;
}

.showcase-heading__copy {
  margin-left: auto;
  margin-right: auto;
}

body.home .site-branding__text small {
  color: rgba(244, 247, 251, 0.72);
}

body.home .site-footer {
  background: linear-gradient(180deg, #050c17 0%, #050a13 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

body.home .site-footer__kpis {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.home .button--ghost {
  color: #f4f7fb;
  border-color: rgba(255, 255, 255, 0.18);
}

body.home .primary-menu .sub-menu {
  background: rgba(8, 15, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

body.home .primary-menu > .menu-item-has-children > .sub-menu > li {
  background: rgba(255, 255, 255, 0.03);
}

body.home .primary-menu > .menu-item-has-children > .sub-menu > li > a {
  color: #f4f8fb;
}

body.home .primary-menu > .menu-item-has-children > .sub-menu > li .sub-menu li a {
  color: #9cb0c3;
}
.home-showcase {
  overflow: hidden;
}

.showcase-hero {
  position: relative;
  padding: 7rem 0 2.5rem;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 36rem;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 174, 239, 0.18), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.showcase-hero__inner,
.showcase-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.showcase-kicker,
.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #bfcad8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-title,
.showcase-heading__title {
  margin: 1.2rem 0 0;
  color: #f6f8fb;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.showcase-title {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.showcase-heading__title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.showcase-lead,
.showcase-heading__copy {
  max-width: 38rem;
  margin-top: 1.35rem;
  color: #9eb0c3;
  font-size: 1rem;
  line-height: 1.8;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button--light {
  color: #07101c;
  background: linear-gradient(135deg, #f5f9ff, #c5f2ff 72%);
}

.button--outline-light {
  color: #f4f7fb;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.showcase-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 3rem;
  color: #dbe6f5;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.showcase-hero__visual {
  position: relative;
  min-height: 30rem;
}

.glass-stage {
  position: relative;
  width: min(100%, 42rem);
  height: 100%;
  margin-inline: auto;
}

.glass-stage__glow {
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.5), rgba(0, 174, 239, 0));
  filter: blur(28px);
}

.glass-stage__sheet {
  position: absolute;
  inset: auto;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(12, 28, 44, 0.72);
  border: 1px solid rgba(101, 227, 255, 0.22);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.glass-stage__sheet--rear {
  right: 6%;
  bottom: 28%;
  width: 72%;
  height: 45%;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: perspective(1200px) rotateX(56deg) rotateZ(-28deg);
}

.glass-stage__sheet--front {
  left: 6%;
  bottom: 8%;
  width: 78%;
  height: 22%;
  background:
    linear-gradient(135deg, rgba(120, 236, 255, 0.65), rgba(7, 16, 28, 0.12) 58%),
    rgba(13, 28, 42, 0.7);
  border-color: rgba(95, 244, 255, 0.44);
  transform: perspective(1200px) rotateX(72deg) rotateZ(-28deg);
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(87, 243, 255, 0.08);
  background-size: cover;
  background-position: center;
}

.glass-stage__sheet--accent {
  right: 13%;
  bottom: 19%;
  width: 42%;
  height: 12%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.86), rgba(126, 240, 255, 0.5));
  border-color: rgba(95, 244, 255, 0.44);
  transform: perspective(1000px) rotateX(72deg) rotateZ(-28deg);
  background-size: cover;
  background-position: center;
}

.showcase-metrics,
.showcase-stat-band,
.showcase-contact,
.showcase-text-card,
.showcase-feature-card,
.showcase-mini-card,
.process-card,
.testimonial-card,
.compliance-badge {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(19, 28, 40, 0.92), rgba(10, 17, 28, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.showcase-metrics,
.showcase-stat-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.5rem;
}

.metric-pill,
.showcase-stat-band__item {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.metric-pill strong,
.showcase-stat-band__item strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
}

.metric-pill span,
.showcase-stat-band__item span {
  display: block;
  margin-top: 0.5rem;
  color: #9ba9ba;
  font-size: 0.92rem;
}

.showcase-section {
  padding: 4.5rem 0;
}

.showcase-heading {
  margin-bottom: 2rem;
}

.showcase-heading--center {
  text-align: center;
}

.showcase-heading--center .showcase-heading__title,
.showcase-heading--center .showcase-heading__copy {
  margin-inline: auto;
}

.showcase-card-grid {
  display: grid;
  gap: 1.2rem;
}

.showcase-card-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.showcase-card-grid--four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.showcase-feature-card,
.showcase-mini-card,
.showcase-text-card,
.testimonial-card {
  border-radius: 1.4rem;
  overflow: hidden;
}

.showcase-feature-card__media,
.showcase-mini-card__media {
  display: block;
  min-height: 14rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.35), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #0d1623;
  background-size: cover;
  background-position: center;
}

.showcase-mini-card__media {
  min-height: 10rem;
}

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

.showcase-card-img--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(133, 233, 255, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 22, 35, 0.88);
}

.showcase-feature-card__media .showcase-card-img,
.showcase-mini-card__media .showcase-card-img {
  position: absolute;
  inset: 0;
}

.showcase-feature-card__content,
.showcase-mini-card__content,
.showcase-text-card,
.testimonial-card {
  padding: 1.3rem;
}

.showcase-feature-card h3,
.showcase-mini-card h3,
.showcase-text-card h3 {
  margin: 0.2rem 0 0.8rem;
  color: #f7fbff;
  font-size: 1.2rem;
}

.showcase-feature-card p,
.showcase-mini-card p,
.showcase-text-card p,
.testimonial-card p {
  color: #9fb0c1;
  line-height: 1.7;
}

.showcase-link,
.showcase-text-card__tag {
  color: #85e9ff;
}

.showcase-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
}

.showcase-text-card__tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.process-card__number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(133, 233, 255, 0.28);
  color: #85e9ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.process-card h3 {
  margin: 1rem 0 0.65rem;
  color: #f7fbff;
}

.process-card p {
  margin: 0;
  color: #95a5b6;
  line-height: 1.7;
}

.compliance-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.compliance-badge {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
}

.compliance-badge__icon {
  color: #85e9ff;
  font-size: 1.3rem;
}

.testimonial-card__quote-mark {
  margin-bottom: 0.7rem;
  color: #85e9ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: #f4f8fb;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__role {
  display: block;
  margin-top: 0.35rem;
  color: #9ba9ba;
  font-size: 0.9rem;
}

.showcase-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at right center, rgba(0, 174, 239, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(8, 14, 24, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.showcase-about__image {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.showcase-about__wysiwyg p {
  margin: 0.8rem 0 0;
}

.showcase-section--contact {
  padding-bottom: 5.5rem;
}

.showcase-contact {
  padding: 1.4rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at left bottom, rgba(0, 174, 239, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(8, 14, 24, 0.98));
}

.showcase-contact__copy,
.showcase-contact__form {
  min-width: 0;
}

.showcase-logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.showcase-logo-cloud__item {
  display: grid;
  place-items: center;
  min-width: 5rem;
  min-height: 3.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

body.home .showcase-contact .wpcf7 {
  max-width: none;
  margin-top: 0;
}

body.home .showcase-contact .wpcf7-form {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

body.home .showcase-contact .wpcf7 input[type="text"],
body.home .showcase-contact .wpcf7 input[type="email"],
body.home .showcase-contact .wpcf7 input[type="tel"],
body.home .showcase-contact .wpcf7 textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f4f8fb;
}

body.home .showcase-contact .wpcf7 input::placeholder,
body.home .showcase-contact .wpcf7 textarea::placeholder {
  color: #8ea0b3;
}

body.home .showcase-contact .wpcf7 input:focus,
body.home .showcase-contact .wpcf7 textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(133, 233, 255, 0.6);
}

body.home .showcase-contact .wpcf7 input[type="submit"] {
  width: 100%;
}

@media (min-width: 980px) {
  .showcase-hero__inner,
  .showcase-contact {
    grid-template-columns: 1.05fr 1fr;
  }

  .showcase-metrics,
  .showcase-stat-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .showcase-about {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .showcase-hero__copy,
  .showcase-contact__copy,
  .showcase-heading {
    text-align: center;
  }
}

/* Allow the homepage hero container to span full viewport width */
.showcase-hero > .container {
  max-width: 100%;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Give the hero copy more breathing room on very wide screens */
.showcase-hero__copy {
  padding-right: 3rem;
}

@media (max-width: 1024px) {
  body.home .site-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  body.home .menu-toggle {
    color: #f4f7fb;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
  }

  body.home .primary-navigation {
    background: rgba(8, 15, 24, 0.96);
  }
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__kpis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin: 1.2rem 0.6rem 0.75rem;
    border-radius: 0.75rem;
  }

  .site-footer,
  .site-footer__column,
  .site-footer__kpi,
  .site-footer__copy,
  .site-footer__copyright,
  .site-footer__links {
    text-align: center;
  }

  .site-footer__main,
  .site-footer__kpis-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__kpis-grid {
    gap: 0.7rem;
    padding: 1rem 0;
  }

  .site-footer__main {
    gap: 1.2rem;
    padding: 1.35rem 0 1.5rem;
  }

  .site-footer__heading,
  .site-footer__title {
    margin-bottom: 0.55rem;
  }

  .site-footer__logo {
    max-width: 8.75rem;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__copy {
    margin-bottom: 0.6rem;
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .site-footer__links {
    gap: 0.45rem;
  }
}

@media (max-width: 639px) {
  .showcase-hero {
    padding-top: 6rem;
  }

  .showcase-hero__visual {
    min-height: 22rem;
  }

  .showcase-contact,
  .showcase-metrics,
  .showcase-stat-band {
    padding: 1rem;
  }

  .showcase-actions .button,
  .showcase-actions .button--outline-light {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .showcase-hero__inner,
  .showcase-contact,
  .showcase-about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-hero__visual {
    margin: 2rem auto 0;
  }

  .showcase-hero__copy,
  .showcase-contact .wpcf7 {
    margin-left: auto;
    margin-right: auto;
  }

  .showcase-hero__copy .showcase-title,
  .showcase-heading__title {
    text-align: center;
  }
}

.inner-site {
  color: #d7e0eb;
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, 0.16), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(0, 174, 239, 0.09), transparent 24rem),
    linear-gradient(180deg, #07101c, #08111d 38%, #09111b 100%);
}

.inner-hero {
  padding: 5rem 0 2rem;
}

.inner-hero__panel {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at right center, rgba(0, 174, 239, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(8, 14, 24, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.inner-hero__media img,
.featured-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

.inner-section {
  padding: 2rem 0 5rem;
}

.inner-section--compact {
  padding-top: 0;
}

.inner-layout,
.blog-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.inner-article,
.inner-sidebar__card,
.archive-filters,
.archive-pagination,
.section-card,
.blog-sidebar__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(19, 28, 40, 0.92), rgba(10, 17, 28, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border-radius: 1.4rem;
}

.inner-article {
  overflow: hidden;
}

.inner-article__content,
.inner-sidebar__card,
.archive-filters,
.archive-pagination,
.section-card {
  padding: 1.4rem;
}

.section-card + .section-card {
  margin-top: 1.5rem;
}

.inner-article .entry-content,
.blog-content {
  color: #b6c3d3;
  line-height: 1.85;
}

.inner-article .entry-content h2,
.inner-article .entry-content h3,
.blog-content h2,
.blog-content h3 {
  margin-top: 2rem;
  color: #f5f8fb;
}

.inner-article .entry-content p,
.blog-content p,
.inner-article .entry-content li,
.blog-content li {
  color: #a9b8c8;
}

.inner-article .entry-content a,
.blog-content a {
  color: #85e9ff;
}

.inner-site .breadcrumbs {
  margin-bottom: 1.25rem;
  color: #8ea0b3;
}

.inner-site .breadcrumbs a {
  color: #dbe6f5;
}

.inner-sidebar {
  display: grid;
  gap: 1.25rem;
}

.lead-form-wrap .wpcf7 {
  max-width: none;
  margin-top: 0;
}

.lead-form-wrap .wpcf7-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lead-form-wrap .cf7-grid {
  grid-template-columns: 1fr;
}

.lead-form-wrap .wpcf7 input[type="text"],
.lead-form-wrap .wpcf7 input[type="email"],
.lead-form-wrap .wpcf7 input[type="tel"],
.lead-form-wrap .wpcf7 textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f4f8fb;
}

.lead-form-wrap .wpcf7 input::placeholder,
.lead-form-wrap .wpcf7 textarea::placeholder {
  color: #8ea0b3;
}

.lead-form-wrap .wpcf7 input:focus,
.lead-form-wrap .wpcf7 textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(133, 233, 255, 0.6);
}

.lead-form-wrap .wpcf7 input[type="submit"] {
  width: 100%;
}

.blog-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.blog-toc__item a {
  color: #dbe6f5;
  line-height: 1.5;
}

.blog-toc__item--h3 {
  padding-left: 1rem;
}

.archive-grid .content-card,
.archive-grid .product-card,
.archive-grid .industry-card,
.archive-grid .project-card {
  height: 100%;
}

.archive-card {
  overflow: hidden;
}

.archive-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfe7f1;
}

.archive-pagination .page-numbers.current {
  background: linear-gradient(135deg, #f5f9ff, #c5f2ff 72%);
  color: #07101c;
  font-weight: 700;
}

.archive-filters label {
  color: #dfe7f1;
  font-weight: 700;
}

.archive-filters select {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8fb;
}

.spec-table {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
}

.spec-table__row {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.spec-table__label {
  color: #f4f8fb;
  font-weight: 700;
}

.spec-table__value {
  color: #a9b8c8;
}

.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
}

.cta-banner--dark {
  background: linear-gradient(180deg, rgba(19, 28, 40, 0.92), rgba(10, 17, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eff5fb;
}

.inner-site .term-pill {
  background: rgba(133, 233, 255, 0.12);
  color: #eafcff;
}

.blog-content > *:first-child,
.inner-article .entry-content > *:first-child {
  margin-top: 0;
}

@media (min-width: 980px) {
  .inner-hero__panel {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .inner-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  }


   .showcase-hero__inner, .showcase-contact {
        grid-template-columns: 1.05fr 0fr;
        text-align: center;
    }
}


body.home .showcase-contact .wpcf7
Specificity: (0,3,1)
 {
    max-width: none;
    display: none;
    margin-top: 0;
}
li#menu-item--9999 {
    display: none;
}

.showcase-heading__title, .showcase-title{
      max-width: 100%;
}

body.home .showcase-actions {
    margin-bottom: 1.75rem;
    justify-content: center;
}

.showcase-lead, .showcase-heading__copy {
  max-width: 100%;}