:root {
  --color-navy: #0f3661;
  --color-navy-deep: #0d2034;
  --color-navy-darker: #0a1c2e;
  --color-orange: #ea8324;
  --color-text: #42435d;
  --color-text-muted: #6f7387;
  --color-border: #d9dee7;
  --color-bg: #ffffff;
  --color-bg-soft: #f3f5f8;
  --shadow-card: 0 18px 40px rgba(14, 36, 64, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

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

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

p,
ul,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #eef1f4;
  color: #434657;
  font-size: 0.8rem;
}

.topbar-inner,
.header-main-inner,
.nav-inner,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  min-height: 2.25rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.topbar-actions .social-link {
  color: var(--color-navy);
}

.topbar-actions .social-link:hover {
  color: var(--color-orange);
  background: rgba(15, 54, 97, 0.08);
}

.footer-bottom .social-link {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  background: var(--color-orange);
  color: #1f2431;
}

.button-dark {
  background: var(--color-navy);
  color: #fff;
}

.button-small {
  min-height: 2rem;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
}

.header-main {
  background: #fff;
  padding: 1.2rem 0 1rem;
  border-bottom: 1px solid rgba(15, 54, 97, 0.08);
}

.brand img {
  width: 220px;
  max-width: 100%;
}

.header-info {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.info-block {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.info-block strong {
  color: var(--color-navy);
  font-size: 1rem;
}

.info-block span {
  font-size: 0.92rem;
}

.info-label {
  color: var(--color-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-shell {
  background: var(--color-navy);
  color: #fff;
  position: relative;
  z-index: 10;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.95rem 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.site-nav > ul {
  gap: 0.1rem;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0 1.05rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.site-nav > ul > li > a.current,
.site-nav > ul > li > a:hover,
.site-nav > ul > li:focus-within > a {
  background: var(--color-orange);
  color: #1f2431;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  padding: 0.45rem 0;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu li {
  display: block;
}

.submenu a {
  display: block;
  position: relative;
  padding: 0.45rem 1.5rem;
  text-align: center;
  border-bottom: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
}

.submenu li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 1px;
  background: #d6ddea;
}

.submenu a:hover,
.submenu a.current,
.submenu li:focus-within > a {
  color: var(--color-navy);
  background: #f7f9fc;
}

.hero,
.hero-slide,
.page-hero {
  background-position: center;
  background-size: cover;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #0e2138;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-inner {
  min-height: 33rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  text-align: left;
}

.eyebrow,
.breadcrumb {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero h1,
.hero-slide h1,
.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero-subcopy {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-control,
.hero-dot {
  pointer-events: auto;
}

.hero-control {
  border: 0;
  background: rgba(15, 54, 97, 0.72);
  color: #fff;
  width: 3rem;
  height: 3rem;
  padding: 0;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.hero-dot {
  width: 0.82rem;
  height: 0.82rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.page-hero {
  color: #fff;
}

.page-hero .container {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero .breadcrumb {
  margin-bottom: 0.65rem;
}

.breadcrumb span {
  margin: 0 0.45rem;
  color: var(--color-orange);
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--color-bg-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.3rem;
}

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

.split-heading h2,
.contact-band h2,
.about-copy h2,
.content-narrow h2,
.detail-layout h2,
.section-intro h2 {
  color: var(--color-navy);
  font-size: clamp(2rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.section-rule {
  display: inline-block;
  width: 3rem;
  height: 0.2rem;
  background: var(--color-orange);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-card,
.support-card,
.stat-card {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.service-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 1.2rem;
  align-items: start;
}

.service-card img {
  width: 72px;
  justify-self: end;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--color-navy);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--color-orange);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-band {
  color: #fff;
  text-align: center;
  padding: 4.3rem 0;
}

.contact-band-inner {
  display: grid;
  gap: 0.4rem;
}

.contact-band p:last-child {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.logo-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.logo-strip-item--dark {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.logo-strip-item img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.about-layout,
.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-layout img,
.detail-layout img {
  width: 100%;
  border-radius: 6px;
}

.detail-layout img {
  max-width: 260px;
  justify-self: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--color-orange);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-card span {
  display: block;
  color: var(--color-navy);
  font-weight: 700;
}

.content-narrow {
  max-width: 760px;
}

.map-frame {
  margin-top: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.empty-state {
  border: 1px solid var(--color-border);
  padding: 2rem;
  background: var(--color-bg-soft);
}

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

.support-card {
  padding: 2.2rem;
  text-align: center;
}

.support-card img {
  width: 80px;
  margin: 0 auto 1rem;
}

.support-card h2 {
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.support-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.detail-list,
.detail-list li,
.footer-list li {
  margin-bottom: 0.45rem;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 2rem;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border-top: 4px solid var(--color-orange);
  box-shadow: var(--shadow-card);
}

.feature-kicker {
  margin-bottom: 0.6rem;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-card p,
.feature-card li {
  color: var(--color-text-muted);
}

.feature-card p:last-child,
.feature-card ul:last-child {
  margin-bottom: 0;
}

.feature-card ul {
  padding-left: 1.1rem;
}

.feature-card li {
  margin-bottom: 0.45rem;
}

.vendor-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #123e70, #0c2845);
}

.vendor-mark img {
  width: auto;
  max-height: 24px;
}

.vendor-mark.vendor-mark-icon img {
  max-height: 42px;
}

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

.assessment-hero {
  color: #fff;
  background-position: center;
  background-size: cover;
}

.assessment-hero .container {
  min-height: 26rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: center;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.assessment-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.assessment-hero-copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.assessment-hero-card {
  padding: 1.75rem;
  border-radius: 12px;
  background: rgba(8, 23, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.assessment-hero-card h2 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.15;
}

.assessment-hero-card p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.assessment-list {
  padding-left: 1.1rem;
}

.assessment-list li {
  margin-bottom: 0.45rem;
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
  gap: 2rem;
  align-items: start;
}

.assessment-sidebar {
  padding: 1.6rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.assessment-sidebar h3 {
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.25rem;
}

.assessment-sidebar p:last-child,
.assessment-sidebar ul:last-child {
  margin-bottom: 0;
}

.assessment-contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.assessment-contact-list li {
  margin-bottom: 0.7rem;
}

.assessment-contact-list span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-form-card {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.assessment-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(234, 131, 36, 0.12);
}

.form-note,
.form-success {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.form-success {
  color: var(--color-navy);
  font-weight: 600;
}

.telecom-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.telecom-showcase-media {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  align-content: start;
}

.telecom-showcase-media img {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.telecom-showcase figure:first-child img {
  object-fit: contain;
  background: linear-gradient(180deg, #f7f9fc, #edf2f7);
  padding: 1rem;
}

.telecom-showcase figure:last-child img {
  object-fit: cover;
}

.telecom-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.telecom-benefit {
  padding: 1.5rem;
  background: #fff;
  border-top: 4px solid var(--color-orange);
  box-shadow: var(--shadow-card);
}

.telecom-benefit h3 {
  margin-bottom: 0.7rem;
  color: var(--color-navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.telecom-benefit p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.tabbed-section {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.tabbed-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0;
}

.tabbed-button {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-navy);
  padding: 0.8rem 1.1rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tabbed-button:hover,
.tabbed-button:focus-visible {
  border-color: var(--color-orange);
  outline: 0;
}

.tabbed-button.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.tabbed-panels {
  padding: 1.5rem;
}

.tabbed-panel[hidden] {
  display: none;
}

.tabbed-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 2rem;
  align-items: start;
}

.tabbed-copy h3 {
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.7rem;
  line-height: 1.1;
}

.tabbed-copy p {
  margin-bottom: 1rem;
}

.tabbed-media img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.tabbed-media-gallery {
  display: grid;
  gap: 1rem;
}

.tabbed-media-gallery img {
  background: linear-gradient(180deg, #f7f9fc, #edf2f7);
}

.tabbed-media-badges {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.tabbed-media-badges img {
  max-width: 260px;
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
}

.telecom-stat-stack {
  display: grid;
  gap: 1rem;
}

.telecom-stat {
  padding: 1.5rem;
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-orange);
}

.telecom-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1;
}

.telecom-stat span {
  color: var(--color-text-muted);
  font-weight: 500;
}

.telecom-intro {
  display: grid;
  gap: 1.8rem;
}

.telecom-intro-copy {
  max-width: 860px;
}

.telecom-intro-copy p:last-of-type {
  max-width: 760px;
}

.telecom-intro-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.telecom-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.feature-copy h3 {
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.35rem;
}

.feature-copy p:last-of-type {
  margin-bottom: 1.1rem;
}

.feature-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.feature-media-stack {
  display: grid;
  gap: 1rem;
}

.phone-gallery {
  display: grid;
  gap: 1rem;
}

.phone-gallery-primary img {
  max-height: 380px;
  object-fit: contain;
  background: linear-gradient(180deg, #f7f9fc, #edf2f7);
  padding: 1rem;
}

.feature-figure {
  margin: 0;
}

.feature-figure figcaption {
  margin-top: 0.7rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  text-align: center;
}

.telecom-kicker {
  margin-bottom: 0.65rem;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telecom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.telecom-card {
  height: 100%;
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.telecom-card h3 {
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.4rem;
}

.telecom-card h4 {
  margin: 1.2rem 0 0.6rem;
  color: var(--color-navy);
  font-size: 1rem;
}

.telecom-list {
  color: var(--color-text-muted);
}

.telecom-card-media img {
  margin-bottom: 1.1rem;
}

.telecom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: center;
}

.partner-badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-badges img {
  max-width: 180px;
  width: 100%;
  object-fit: contain;
}

.site-footer {
  margin-top: 2rem;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(234, 131, 36, 0.08), transparent 30%),
    linear-gradient(180deg, #102743 0%, #0b1d31 100%);
  color: #bec7d8;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), rgba(234, 131, 36, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 2.3rem;
  padding: 2.3rem 0 1.8rem;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo {
  width: 180px;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  max-width: 22rem;
  margin-bottom: 0.9rem;
  color: #e3e8f2;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.footer-list li,
.footer-contact-list li {
  margin-bottom: 0.45rem;
  color: #bec7d8;
  line-height: 1.5;
}

.footer-list a,
.footer-contact-list a {
  color: #d8deea;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact-list span {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-list strong,
.footer-contact-list a {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 28, 0.45);
}

.footer-bottom-inner {
  min-height: 3.1rem;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-bottom-inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-main-inner,
  .split-heading,
  .about-layout,
  .detail-layout,
  .assessment-hero .container,
  .assessment-layout,
  .feature-block,
  .telecom-cta,
  .footer-grid,
  .logo-strip-inner {
    grid-template-columns: 1fr;
  }

  .header-main-inner {
    display: grid;
    justify-items: start;
  }

  .header-info {
    width: 100%;
    justify-content: flex-start;
  }

  .logo-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .telecom-showcase,
  .telecom-benefits,
  .feature-grid,
  .assessment-form-grid,
  .tabbed-panel-grid,
  .card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .telecom-intro-media {
    grid-template-columns: 1fr;
  }

  .tabbed-nav {
    padding: 1.25rem 1.25rem 0;
  }

  .tabbed-panels {
    padding: 1.25rem;
  }

  .partner-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul,
  .submenu {
    display: block;
    position: static;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    color: inherit;
  }

  .site-nav > ul > li > a,
  .submenu a {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: inherit;
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .submenu a:hover,
  .submenu a.current {
    background: transparent;
    color: #fff;
  }

  .hero-inner {
    min-height: 27rem;
  }

  .hero-controls {
    bottom: 0.8rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    justify-self: start;
  }

  .topbar-inner,
  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0;
    text-align: center;
  }

  .topbar-actions {
    justify-content: center;
  }

  .logo-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
