:root {
  --navy: #071b35;
  --navy-2: #0e2a4a;
  --slate: #475569;
  --muted: #64748b;
  --line: #d9e2ee;
  --soft: #f5f8fc;
  --white: #ffffff;
  --accent: #0f8fb3;
  --accent-2: #1f6feb;
  --success: #0f766e;
  --shadow: 0 18px 45px rgba(7, 27, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 238, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-weight: 800;
  line-height: 1.15;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate);
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a:not(.button) {
  transition: color 180ms ease;
}

.primary-nav a:not(.button):hover,
.primary-nav a:not(.button):focus-visible {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7, 27, 53, 0.18);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.section {
  scroll-margin-top: 88px;
  padding: 92px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background:
    linear-gradient(135deg, rgba(7, 27, 53, 0.06), rgba(15, 143, 179, 0.06)),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 143, 179, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 143, 179, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.hero-grid,
.home-content,
.contact-grid,
.about-grid,
.about-details {
  position: relative;
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.25;
}

h4 {
  margin-bottom: 12px;
  color: var(--navy-2);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.about-grid p,
.contact-copy p {
  color: var(--slate);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel,
.highlight-card,
.service-card,
.product-card,
.about-panel,
.approach-card,
.industries,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.dashboard-visual {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), #153e67);
  color: var(--white);
}

.visual-topline {
  width: 36%;
  height: 9px;
  margin-bottom: 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
}

.visual-row {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
}

.visual-row span,
.visual-row strong {
  height: 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
}

.visual-row strong {
  background: #8bd7e8;
}

.visual-row.short span {
  width: 74%;
}

.visual-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 130px;
  margin-top: 30px;
}

.visual-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #8bd7e8, #1f6feb);
}

.visual-chart i:nth-child(1) {
  height: 42%;
}

.visual-chart i:nth-child(2) {
  height: 72%;
}

.visual-chart i:nth-child(3) {
  height: 54%;
}

.visual-chart i:nth-child(4) {
  height: 88%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.trust-grid article {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.trust-grid strong,
.trust-grid span,
.about-panel strong,
.about-panel span,
.site-footer span {
  display: block;
}

.trust-grid strong,
.about-panel strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

.trust-grid span,
.about-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-content {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
  margin-top: 34px;
}

.highlight-card {
  padding: 28px;
}

.procurement-card {
  border-left: 5px solid var(--accent);
}

.question {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.highlight-card p:last-child {
  margin-bottom: 0;
  color: var(--slate);
}

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

.highlights-list div {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-2);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 960px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.product-card {
  padding: 26px;
}

.service-card {
  min-height: 270px;
}

.service-card p,
.product-card p,
.product-card li,
.approach-card p,
.industries li,
.consent {
  color: var(--slate);
}

.icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(15, 143, 179, 0.25);
  background: #e9f7fb;
  position: relative;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon-ledger::before {
  inset: 10px 11px;
  border: 2px solid var(--accent);
  border-radius: 3px;
}

.icon-cloud::before {
  width: 24px;
  height: 14px;
  left: 9px;
  top: 15px;
  border-radius: 18px;
  background: var(--accent);
}

.icon-support::before {
  width: 20px;
  height: 20px;
  left: 11px;
  top: 9px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.icon-analytics::before {
  width: 5px;
  height: 19px;
  left: 10px;
  bottom: 10px;
  background: var(--accent);
  box-shadow: 9px -7px 0 var(--accent-2), 18px -2px 0 var(--success);
}

.icon-advisory::before {
  width: 22px;
  height: 22px;
  left: 10px;
  top: 10px;
  border: 3px solid var(--accent);
  transform: rotate(45deg);
}

.icon-onboarding::before {
  width: 22px;
  height: 12px;
  left: 10px;
  top: 15px;
  border: 3px solid var(--accent);
  border-top: 0;
}

.expertise-section,
.contact-section {
  background: var(--soft);
}

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

.product-card {
  display: flex;
  flex-direction: column;
}

.product-header {
  min-height: 94px;
  margin: -26px -26px 22px;
  padding: 22px 26px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.product-header span {
  display: block;
  margin-bottom: 6px;
  color: #8bd7e8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-header h3 {
  margin: 0;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.product-meta div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--success);
  border-radius: 6px;
  background: #ecfdf5;
  font-weight: 700;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.expertise-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.about-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.about-panel div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.about-panel div:last-child {
  border-bottom: 0;
}

.about-details {
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: 30px;
}

.approach-card,
.industries {
  padding: 28px;
  box-shadow: none;
}

.industries ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industries li {
  position: relative;
  padding-left: 18px;
}

.industries li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-2);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

label span {
  color: #b42318;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
  padding: 11px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 143, 179, 0.14);
}

.char-count {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.consent {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: 34px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 22px;
  align-items: start;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(7, 27, 53, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .primary-nav .button {
    margin-top: 8px;
  }

  .hero-grid,
  .home-content,
  .product-grid,
  .about-grid,
  .about-details,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .about-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-panel div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .about-panel div:last-child {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-tagline {
    font-size: 0.72rem;
  }

  .section {
    padding: 70px 0;
  }

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

  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .industries ul,
  .contact-form,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-meta div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero-panel,
  .highlight-card,
  .service-card,
  .product-card,
  .contact-form,
  .approach-card,
  .industries {
    padding: 20px;
  }

  .product-header {
    margin: -20px -20px 20px;
    padding: 20px;
  }
}

figure {
  margin: 0;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 55px rgba(7, 27, 53, 0.18);
}

.hero-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(7, 27, 53, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(7, 27, 53, 0.22), transparent 50%);
  pointer-events: none;
}

.hero-photo-card img,
.about-image img,
.card-accent-image,
.product-visual {
  display: block;
  width: 100%;
  height: auto;
}

.floating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 2px;
}

.floating-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(15, 143, 179, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(7, 27, 53, 0.07);
}

#services {
  background:
    linear-gradient(180deg, #ffffff, #f6fafe),
    radial-gradient(circle at 16% 18%, rgba(15, 143, 179, 0.08), transparent 30%);
}

.card-accent-image {
  height: 122px;
  object-fit: cover;
  margin: -26px -26px 20px;
  width: calc(100% + 52px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.product-card {
  position: relative;
}

.product-visual {
  height: 132px;
  object-fit: cover;
  margin: -26px -26px 0;
  width: calc(100% + 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
}

.product-card .product-header {
  margin-top: 0;
  border-radius: 0;
}

.product-meta div {
  padding: 12px 0;
}

.expertise-tags span {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.expertise-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 143, 179, 0.35);
  box-shadow: var(--shadow-soft);
}

.about-image {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.about-image img {
  background: var(--soft);
}

.about-panel div:nth-of-type(1) {
  background: linear-gradient(135deg, var(--navy), #123b67);
}

.about-panel div:nth-of-type(1) strong,
.about-panel div:nth-of-type(1) span {
  color: var(--white);
}

.industries li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 27, 53, 0.05);
}

.industries li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 53, 0.96), rgba(14, 42, 74, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(15, 143, 179, 0.28), transparent 34%);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(139, 215, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 215, 232, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.8;
  pointer-events: none;
}

.contact-section .section-inner {
  position: relative;
}

.contact-copy h2,
.contact-copy p:not(.eyebrow),
.contact-copy .reassurance {
  color: var(--white);
}

.contact-copy .eyebrow {
  color: #8bd7e8;
}

.reassurance {
  padding: 16px 18px;
  border: 1px solid rgba(139, 215, 232, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.contact-list a,
.contact-list span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.contact-form .button {
  min-height: 54px;
  font-size: 1rem;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #d92d20;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, #06172d, #071b35 52%, #08233f);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #8bd7e8;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.premium-panel,
.service-card,
.product-card,
.about-panel,
.contact-form {
  animation: liftIn 520ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .card-accent-image {
    height: 112px;
  }

  .product-visual {
    height: 150px;
  }

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

  .about-image {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero-photo-card {
    margin-bottom: 12px;
  }

  .floating-tags span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .card-accent-image {
    height: 132px;
    margin: -20px -20px 18px;
    width: calc(100% + 40px);
  }

  .section-cta .button {
    width: 100%;
  }

  .product-visual {
    height: 126px;
    margin: -20px -20px 0;
    width: calc(100% + 40px);
  }
}

/* Premium corporate refresh inspired by enterprise software websites, without copying layout or content. */
:root {
  --ink: #10243e;
  --soft-2: #edf5fb;
  --warning: #c68619;
  --shadow-soft: 0 12px 32px rgba(7, 27, 53, 0.08);
}

body {
  background: #fbfdff;
}

.site-header {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-mark {
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, var(--navy), var(--accent));
}

.button {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), #123b67);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.hero-section {
  padding-top: 94px;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 143, 179, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(7, 27, 53, 0.06), rgba(31, 111, 235, 0.06)),
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.hero-accent-bar {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--warning));
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
}

h1 {
  font-size: clamp(2.55rem, 5.5vw, 4.65rem);
  line-height: 1.02;
}

.hero-lead {
  max-width: 680px;
}

.outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.outcome-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(15, 143, 179, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-2);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(7, 27, 53, 0.06);
}

.premium-panel {
  position: relative;
  padding: 18px;
  border-color: rgba(15, 143, 179, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 252, 0.96)),
    var(--white);
}

.system-window {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), #163d66);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.window-toolbar {
  display: flex;
  gap: 7px;
  padding: 15px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.window-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.window-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.metric-card {
  min-height: 106px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-card small,
.metric-card strong {
  display: block;
}

.metric-card small {
  color: #8bd7e8;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  margin: 4px 0 16px;
  font-size: 1.12rem;
}

.metric-card i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8bd7e8 68%, rgba(255, 255, 255, 0.22) 68%);
}

.workflow-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.workflow-map span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(139, 215, 232, 0.32);
  border-radius: 8px;
  background: rgba(139, 215, 232, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.premium-panel .visual-chart {
  grid-column: 1 / -1;
  height: 112px;
  margin-top: 2px;
  padding: 16px 14px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid article,
.service-card,
.product-card,
.service-promise,
.software-band {
  box-shadow: var(--shadow-soft);
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.88);
}

.home-content {
  margin-top: 42px;
}

.procurement-card {
  position: relative;
  overflow: hidden;
}

.procurement-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 160px;
  content: "";
  background:
    linear-gradient(135deg, transparent 48%, rgba(15, 143, 179, 0.08) 48%),
    linear-gradient(45deg, transparent 52%, rgba(31, 111, 235, 0.06) 52%);
}

.highlights-list div {
  position: relative;
  padding-left: 42px;
}

.highlights-list div::before {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(15, 143, 179, 0.12);
  content: "";
}

.software-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.software-band span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: var(--navy-2);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.service-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  margin: -6px 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-promise div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-promise div:last-child {
  border-right: 0;
}

.service-promise strong,
.service-promise span {
  display: block;
}

.service-promise strong {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.08rem;
}

.service-promise span {
  color: var(--slate);
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -38px;
  top: -38px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(15, 143, 179, 0.16);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 179, 0.36);
  box-shadow: 0 24px 50px rgba(7, 27, 53, 0.13);
}

.expertise-section,
.contact-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.product-card {
  overflow: hidden;
}

.product-header {
  background:
    linear-gradient(135deg, rgba(15, 143, 179, 0.22), transparent),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.about-section {
  background:
    linear-gradient(90deg, rgba(15, 143, 179, 0.05), transparent 38%),
    #ffffff;
}

.about-panel {
  border-color: rgba(15, 143, 179, 0.22);
}

.about-panel div:first-child {
  background: linear-gradient(135deg, var(--navy), #123b67);
}

.about-panel div:first-child strong,
.about-panel div:first-child span {
  color: var(--white);
}

.methodology {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.methodology span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(15, 143, 179, 0.22);
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--navy-2);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.contact-form {
  border-top: 5px solid var(--accent);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .software-band,
  .service-promise {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-promise div:nth-child(2) {
    border-right: 0;
  }

  .service-promise div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .window-content,
  .workflow-map,
  .software-band,
  .service-promise,
  .methodology {
    grid-template-columns: 1fr;
  }

  .service-promise div,
  .service-promise div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-promise div:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }
}

/* Provided image asset integration. */
.hero-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.84)),
    url("assets/provided/03_hero_tech_background.jpg") center / cover no-repeat,
    radial-gradient(circle at 78% 18%, rgba(15, 143, 179, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.system-window {
  background:
    linear-gradient(145deg, rgba(7, 27, 53, 0.9), rgba(22, 61, 102, 0.92)),
    url("assets/provided/04_hero_dashboard_overlay.jpg") center / cover no-repeat;
}

.callout-image {
  display: block;
  width: calc(100% + 56px);
  height: 178px;
  object-fit: cover;
  margin: -28px -28px 22px;
  border-bottom: 1px solid var(--line);
}

#services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 254, 0.96)),
    url("assets/provided/08_cloud_technology.jpg") center / cover no-repeat;
}

.expertise-visual {
  overflow: hidden;
  margin: -10px 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.expertise-visual img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.about-image img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.secondary-about-image {
  border-top: 1px solid var(--line);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 53, 0.96), rgba(14, 42, 74, 0.96)),
    url("assets/provided/26_contact_background.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .secondary-about-image {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .callout-image {
    width: calc(100% + 40px);
    height: 150px;
    margin: -20px -20px 18px;
  }

  .expertise-visual img,
  .about-image img {
    height: 150px;
  }
}

/* Final visual alignment pass: consistent image proportions and card rhythm. */
.hero-photo-card,
.system-window,
.procurement-card,
.service-card,
.product-card,
.about-panel,
.expertise-visual,
.contact-form {
  border-radius: 10px;
}

.hero-photo-card,
.card-accent-image,
.product-visual,
.callout-image,
.expertise-visual,
.about-image {
  background: #eaf2f8;
}

.hero-photo-card {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.premium-panel {
  display: grid;
  gap: 14px;
}

.premium-panel .system-window {
  min-height: 0;
}

.trust-grid {
  margin-top: 0;
}

.trust-grid article {
  min-height: 112px;
}

.callout-image {
  width: calc(100% + 56px);
  height: auto;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  object-position: center;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3 {
  min-height: 2.8em;
}

.card-accent-image {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-grid {
  align-items: stretch;
}

.product-card {
  min-height: 100%;
}

.product-visual {
  height: auto;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  object-position: center;
}

.product-header {
  min-height: 112px;
  display: grid;
  align-content: center;
}

.expertise-visual {
  aspect-ratio: 16 / 5.2;
}

.expertise-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-panel {
  align-self: stretch;
}

.about-image {
  aspect-ratio: 16 / 9;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.secondary-about-image {
  display: none;
}

.industries ul {
  align-items: stretch;
}

.industries li {
  height: 100%;
}

@media (max-width: 980px) {
  .hero-photo-card {
    aspect-ratio: 16 / 8.5;
  }

  .service-card h3 {
    min-height: auto;
  }

  .product-visual {
    aspect-ratio: 16 / 7;
  }

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

  .about-image {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 6.5;
  }
}

@media (max-width: 680px) {
  .hero-photo-card,
  .callout-image,
  .card-accent-image,
  .product-visual,
  .expertise-visual,
  .about-image {
    aspect-ratio: 16 / 9;
  }

  .trust-grid article {
    min-height: auto;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }
}

/* Visual soundness pass: uniform media frames, crops, and card proportions. */
.hero-panel,
.highlight-card,
.service-card,
.product-card,
.about-panel,
.approach-card,
.industries,
.contact-form,
.service-promise,
.software-band,
.expertise-visual {
  border-radius: 10px;
}

.hero-photo-card,
.system-window,
.card-accent-image,
.product-visual,
.callout-image,
.expertise-visual,
.about-image {
  overflow: hidden;
}

.hero-photo-card img,
.card-accent-image,
.product-visual,
.callout-image,
.expertise-visual img,
.about-image img {
  display: block;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-photo-card {
  aspect-ratio: 16 / 9.6;
}

.hero-photo-card img {
  height: 100%;
  transform: scale(1.04);
}

.callout-image {
  height: auto;
  aspect-ratio: 16 / 7.2;
  transform: scale(1.04);
  transform-origin: center;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding-bottom: 28px;
}

.service-card h3 {
  min-height: 3.05em;
  display: flex;
  align-items: flex-end;
}

.service-card p {
  margin-bottom: 0;
}

.card-accent-image {
  width: calc(100% + 52px);
  height: auto;
  aspect-ratio: 16 / 7.75;
  margin: -26px -26px 20px;
  transform: scale(1.12);
  transform-origin: center;
}

.service-card:nth-child(1) .card-accent-image,
.service-card:nth-child(6) .card-accent-image {
  transform: scale(1.2);
}

.service-card:nth-child(3) .card-accent-image,
.service-card:nth-child(5) .card-accent-image {
  transform: scale(1.15);
}

.icon {
  flex: 0 0 auto;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-visual {
  width: calc(100% + 52px);
  height: auto;
  aspect-ratio: 16 / 6.9;
  margin: -26px -26px 0;
  transform: scale(1.08);
  transform-origin: center;
}

.product-header {
  min-height: 108px;
}

.product-meta {
  margin-bottom: 22px;
}

.expertise-visual {
  aspect-ratio: 16 / 4.8;
}

.expertise-visual img {
  height: 100%;
  transform: scale(1.04);
}

.about-panel {
  display: flex;
  flex-direction: column;
}

.about-image {
  aspect-ratio: 16 / 8.3;
}

.about-image img {
  height: 100%;
  transform: scale(1.05);
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.software-band span,
.service-promise div,
.industries li {
  min-width: 0;
}

@media (max-width: 980px) {
  .services-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 405px;
  }

  .service-card h3 {
    min-height: auto;
  }

  .card-accent-image,
  .product-visual {
    width: calc(100% + 52px);
  }

  .hero-photo-card {
    aspect-ratio: 16 / 8.4;
  }
}

@media (max-width: 680px) {
  .services-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-photo-card,
  .callout-image,
  .card-accent-image,
  .product-visual,
  .expertise-visual,
  .about-image {
    aspect-ratio: 16 / 9;
  }

  .card-accent-image,
  .product-visual {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .callout-image {
    width: calc(100% + 40px);
  }
}

/* Screenshot-driven refinements: professional icons, balanced Home panels, platform emphasis. */
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(237, 245, 251, 0.9)),
    url("assets/provided/03_hero_tech_background.jpg") center / cover no-repeat;
  opacity: 0.9;
}

.home-content {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: stretch;
}

.procurement-card {
  display: flex;
  flex-direction: column;
}

.callout-image {
  flex: 0 0 auto;
}

.highlights-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.highlights-panel h3 {
  margin: 0;
  padding: 0 2px;
  color: var(--navy);
  font-size: 1.1rem;
}

.highlights-list {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.highlights-list div {
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 50px;
  border-left: 4px solid transparent;
  box-shadow: 0 12px 28px rgba(7, 27, 53, 0.08);
}

.highlights-list div::before {
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
}

.software-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 251, 0.9)),
    url("assets/provided/07_home_dubai_skyline.jpg") center / cover no-repeat;
  border-color: rgba(15, 143, 179, 0.22);
}

.platforms-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 2px;
}

.platforms-heading .eyebrow {
  margin-bottom: 6px;
}

.platforms-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.14;
}

.software-band span {
  min-height: 86px;
  border-color: rgba(15, 143, 179, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 27, 53, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.software-band span:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 179, 0.48);
  box-shadow: 0 20px 42px rgba(7, 27, 53, 0.13);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid rgba(15, 143, 179, 0.24);
  background: linear-gradient(180deg, #f2fbfd, #e2f3f8);
  color: var(--accent);
}

.icon::before,
.icon::after {
  display: none;
}

.icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card {
  padding-top: 26px;
}

.service-card h3 {
  align-items: flex-start;
}

.expertise-visual {
  aspect-ratio: 1280 / 430;
  background: var(--navy);
}

.expertise-visual img {
  transform: none;
  object-fit: cover;
}

@media (max-width: 980px) {
  .home-content {
    grid-template-columns: 1fr;
  }

  .highlights-list {
    grid-template-rows: none;
  }

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

@media (max-width: 680px) {
  .software-band {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .highlights-list div {
    min-height: 68px;
  }
}

/* PowerPoint-guided content refinements. */
.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.credential-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(15, 143, 179, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(7, 27, 53, 0.07);
}

.additional-platforms {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 143, 179, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 251, 0.9)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.additional-platforms h3 {
  margin-bottom: 8px;
}

.additional-platforms p {
  margin-bottom: 0;
  color: var(--slate);
}

.contact-list {
  grid-template-columns: 1fr;
}

.contact-list a,
.contact-list span {
  overflow-wrap: anywhere;
}

.footer-inner {
  grid-template-columns: 1.05fr 1.25fr 1fr 1.15fr;
}

@media (max-width: 980px) {
  .credential-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .credential-strip span {
    min-height: auto;
  }

  .additional-platforms {
    padding: 20px;
  }
}

/* GSS logo and red-orange brand integration. */
:root {
  --brand-red: #c5231f;
  --brand-orange: #f39a21;
}

.brand {
  min-width: 330px;
}

.brand-logo {
  width: 76px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(197, 35, 31, 0.12);
}

.brand-mark {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
}

.hero-brand-logo {
  display: block;
  width: min(430px, 100%);
  height: auto;
  margin: 0 0 18px;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(197, 35, 31, 0.13);
}

.hero-company-name {
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-accent-bar,
.software-band span:hover {
  background-image: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--accent));
}

.button {
  background: linear-gradient(135deg, var(--brand-red), #9f1f1a 45%, var(--navy));
}

.button-secondary {
  background: var(--white);
}

.eyebrow {
  color: var(--brand-red);
}

.procurement-card {
  border-left-color: var(--brand-red);
}

.callout-image {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 6.6;
  margin: -28px -28px 22px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.icon {
  border-color: rgba(197, 35, 31, 0.22);
  background: linear-gradient(180deg, #fff7ed, #fdebd4);
  color: var(--brand-red);
}

.service-card {
  padding-top: 26px;
}

.service-card .icon {
  margin-top: 0;
}

.card-accent-image {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 16 / 8;
  margin: -26px -26px 22px;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.service-card h3 {
  min-height: 2.75em;
  margin-top: 0;
}

.product-visual {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 150px;
  margin: -26px -26px 0;
  padding: 28px 34px;
  object-fit: contain;
  object-position: center;
  transform: none;
  background:
    linear-gradient(135deg, #ffffff, #f8fbff),
    var(--white);
}

.product-card:nth-child(3) .product-visual {
  padding: 38px 46px;
}

.product-card:nth-child(4) .product-visual {
  padding: 30px 42px;
}

.product-header {
  background:
    linear-gradient(135deg, rgba(197, 35, 31, 0.22), rgba(243, 154, 33, 0.12)),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.software-band {
  border-top: 4px solid var(--brand-orange);
}

.platforms-heading .eyebrow,
.contact-copy .eyebrow {
  color: var(--brand-orange);
}

@media (max-width: 980px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 62px;
    height: 38px;
  }
}

@media (max-width: 680px) {
  .hero-brand-logo {
    width: 100%;
  }

  .hero-company-name {
    font-size: 1.35rem;
  }

  .callout-image,
  .card-accent-image,
  .product-visual {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .product-visual {
    height: 126px;
    padding: 24px 28px;
  }
}

/* Final red/orange visual unification. */
:root {
  --accent: #c5231f;
  --accent-2: #f39a21;
  --line: #ead7c9;
  --soft: #fff7ed;
}

body {
  background: #fffaf3;
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 247, 237, 0.9)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.96), rgba(255, 247, 237, 0.84)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat,
    radial-gradient(circle at 78% 18%, rgba(243, 154, 33, 0.28), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.system-window {
  background:
    linear-gradient(145deg, rgba(69, 26, 3, 0.94), rgba(197, 35, 31, 0.9)),
    url("assets/theme/hero-dashboard-red.svg") center / cover no-repeat;
}

#services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.95)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
}

.expertise-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.96), #ffffff),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(69, 26, 3, 0.97), rgba(127, 29, 29, 0.96)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
}

.software-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 237, 0.91)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
  border-color: rgba(197, 35, 31, 0.24);
}

.service-card,
.product-card,
.highlight-card,
.about-panel,
.approach-card,
.industries,
.customers-showcase,
.additional-platforms,
.contact-form,
.service-promise {
  border-color: rgba(197, 35, 31, 0.18);
}

.highlights-list div::before,
.check-list li::before,
.industries li::before {
  background: var(--brand-red);
}

.highlights-list div::before {
  box-shadow: 0 0 0 5px rgba(197, 35, 31, 0.12);
}

.expertise-tags span,
.software-band span {
  border-color: rgba(197, 35, 31, 0.18);
}

.expertise-tags span:hover {
  border-color: rgba(197, 35, 31, 0.42);
}

/* Mixed-style implementation polish: generated assets, chart context, tighter rhythm. */
.section {
  padding: 72px 0;
}

.hero-section {
  padding-top: 68px;
}

.hero-grid {
  gap: 28px;
}

.hero-copy h1 {
  margin-bottom: 16px;
}

.hero-lead {
  margin-bottom: 0;
}

.hero-brand-logo {
  width: min(330px, 100%);
  margin-bottom: 12px;
}

/* Official GSS logo and corrected expertise banner sizing. */
.brand-logo {
  width: 156px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  background: #ffffff;
}

.hero-brand-logo {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

.expertise-visual img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 118px;
    max-height: 34px;
  }

  .hero-brand-logo {
    width: min(300px, 100%);
  }
}

/* Hero dashboard readability refinement. */
.system-window {
  isolation: isolate;
}

.metric-card {
  min-height: 96px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 247, 237, 0.28);
}

.metric-card small {
  color: #ffe8c7;
  font-size: 0.72rem;
}

.metric-card strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.45);
}

.metric-card i {
  background: linear-gradient(90deg, #ffd58a 68%, rgba(255, 255, 255, 0.24) 68%);
}

.workflow-map span {
  min-height: 48px;
  padding: 9px 10px;
  border-color: rgba(255, 247, 237, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf3;
  font-size: 0.74rem;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.42);
}

.chart-context {
  background: rgba(69, 26, 3, 0.26);
  border-color: rgba(255, 247, 237, 0.22);
}

.chart-context strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.chart-context span {
  color: #fff2df;
  font-size: 0.73rem;
  line-height: 1.25;
}

.premium-panel .visual-chart {
  min-height: 142px;
  padding: 14px 12px 12px;
  background: rgba(69, 26, 3, 0.18);
}

.visual-chart div {
  grid-template-rows: minmax(62px, 1fr) 24px;
  gap: 7px;
}

.visual-chart i {
  align-self: end;
  background: linear-gradient(180deg, #ffb32f 0%, #f39a21 42%, #c5231f 100%);
}

.visual-chart span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  color: #fffaf3;
  font-size: 0.68rem;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.55);
}

@media (max-width: 520px) {
  .window-content {
    gap: 10px;
    padding: 14px;
  }

  .metric-card {
    padding: 12px;
  }

  .workflow-map {
    gap: 7px;
  }

  .workflow-map span,
  .chart-context span {
    font-size: 0.68rem;
  }

  .visual-chart span {
    font-size: 0.6rem;
  }
}

/* Owner feedback: single-column Home hero without the unclear chart panel. */
.hero-grid {
  grid-template-columns: 1fr;
  max-width: 1120px;
  gap: 24px;
}

.hero-copy {
  max-width: 1040px;
}

.hero-copy h1 {
  max-width: 930px;
}

.hero-lead {
  max-width: 900px;
}

.hero-solutions {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(197, 35, 31, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.9)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(69, 26, 3, 0.08);
}

.hero-solutions h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.hero-solutions div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.hero-solutions span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(197, 35, 31, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(69, 26, 3, 0.06);
}

.hero-solutions span::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 3px;
  content: "";
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
}

.hero-copy .trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-copy .trust-grid article {
  min-height: 100px;
}

@media (max-width: 1100px) {
  .hero-solutions div,
  .hero-copy .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-grid {
    gap: 18px;
  }

  .hero-solutions {
    padding: 18px;
  }

  .hero-solutions div,
  .hero-copy .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-solutions span {
    min-height: auto;
  }
}

/* Final service visual normalization: unique assets, same frame proportions. */
.services-grid {
  align-items: stretch;
}

.service-card {
  min-height: 410px;
}

.card-accent-image {
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: -26px -26px 22px;
  object-fit: cover;
  object-position: center;
  transform: none;
  background: #fff7ed;
}

.service-card:nth-child(1) .card-accent-image,
.service-card:nth-child(2) .card-accent-image,
.service-card:nth-child(3) .card-accent-image,
.service-card:nth-child(4) .card-accent-image,
.service-card:nth-child(5) .card-accent-image,
.service-card:nth-child(6) .card-accent-image {
  object-position: center;
  transform: none;
}

@media (max-width: 980px) {
  .service-card {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .service-card {
    min-height: auto;
  }

  .card-accent-image {
    width: calc(100% + 40px);
    margin: -20px -20px 18px;
  }
}

/* Landing page reduction and unified product-offerings visual. */
.hero-offerings-visual {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(197, 35, 31, 0.18);
  border-radius: 14px;
  background: #fff7ed;
  box-shadow: 0 24px 58px rgba(69, 26, 3, 0.13);
}

.hero-offerings-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.outcome-strip {
  margin-top: 20px;
}

.outcome-strip span {
  border-color: rgba(197, 35, 31, 0.2);
  background: rgba(255, 255, 255, 0.86);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credential-strip span {
  min-height: auto;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.15;
}

@media (max-width: 680px) {
  .hero-offerings-visual {
    margin-top: 22px;
    border-radius: 10px;
  }

  .hero-offerings-visual img {
    aspect-ratio: 16 / 10;
  }
}

/* Right-side informative product visual panel. */
.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  max-width: 1180px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 620px;
}

.hero-lead {
  max-width: 570px;
}

.hero-offerings-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 35, 31, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.94)),
    #fff7ed;
  box-shadow: 0 28px 70px rgba(69, 26, 3, 0.15);
}

.hero-offerings-panel .hero-offerings-visual {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-offerings-panel .hero-offerings-visual img {
  aspect-ratio: 4 / 3;
}

.hero-info-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 247, 237, 0.62);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.86)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(69, 26, 3, 0.18);
  backdrop-filter: blur(12px);
}

.hero-info-overlay h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.22;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-info-grid span {
  display: block;
  min-height: 78px;
  padding: 11px;
  border: 1px solid rgba(197, 35, 31, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-info-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-offerings-panel {
    order: 2;
  }

  .hero-info-overlay {
    position: static;
    border: 0;
    border-top: 1px solid rgba(197, 35, 31, 0.16);
    border-radius: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.9)),
      url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
    box-shadow: none;
    backdrop-filter: none;
  }
}

@media (max-width: 680px) {
  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-grid span {
    min-height: auto;
  }
}

/* Unified landing hero: one continuous left-to-right experience. */
.hero-shell {
  position: relative;
  max-width: 1180px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(197, 35, 31, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 237, 0.78)),
    url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(69, 26, 3, 0.12);
}

.hero-shell::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(243, 154, 33, 0.14);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.hero-shell .hero-grid {
  max-width: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.hero-shell .hero-copy {
  max-width: 590px;
}

.hero-shell .hero-brand-logo {
  width: min(320px, 100%);
  margin-bottom: 18px;
}

.hero-shell h1 {
  font-size: clamp(2.6rem, 5.3vw, 5rem);
}

.hero-shell .hero-lead {
  max-width: 540px;
}

.hero-shell .outcome-strip,
.hero-shell .credential-strip {
  max-width: 560px;
}

.hero-shell .hero-offerings-panel {
  min-height: clamp(500px, 48vw, 620px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-shell .hero-offerings-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 35, 31, 0.28);
  box-shadow: 0 34px 86px rgba(69, 26, 3, 0.2);
}

.hero-shell .hero-offerings-visual,
.hero-shell .hero-offerings-visual img {
  height: 100%;
}

.hero-shell .hero-offerings-visual img {
  aspect-ratio: auto;
}

.hero-shell .hero-info-overlay {
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: none;
}

.hero-solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-solution-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(197, 35, 31, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-solution-pills span:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 35, 31, 0.36);
  background: #fff7ed;
}

.hero-shell .hero-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.hero-shell .hero-info-grid span {
  min-height: 74px;
}

@media (max-width: 980px) {
  .hero-shell .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell .hero-copy,
  .hero-shell .hero-lead,
  .hero-shell .outcome-strip,
  .hero-shell .credential-strip {
    max-width: 100%;
  }

  .hero-shell .hero-offerings-panel {
    min-height: auto;
  }

  .hero-shell .hero-offerings-visual,
  .hero-shell .hero-offerings-visual img {
    height: auto;
  }

  .hero-shell .hero-offerings-visual img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .hero-shell {
    padding: 20px;
    border-radius: 16px;
  }

  .hero-shell::before {
    inset: 8px;
    border-radius: 12px;
  }

  .hero-shell .hero-info-grid {
    grid-template-columns: 1fr;
  }
}

.hero-photo-card {
  aspect-ratio: 16 / 10;
}

.hero-photo-card img {
  transform: none;
}

.window-content {
  gap: 12px;
  padding: 16px;
}

.chart-context {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.chart-context strong,
.chart-context span {
  display: block;
}

.chart-context strong {
  color: #fff7ed;
  font-size: 0.92rem;
  line-height: 1.25;
}

.chart-context span {
  margin-top: 4px;
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.76rem;
  line-height: 1.35;
}

.premium-panel .visual-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  height: 132px;
  padding: 12px 10px 10px;
}

.visual-chart div {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 8px;
  height: 100%;
  min-width: 0;
}

.visual-chart i {
  display: block;
  width: 100%;
  min-height: 22px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #f39a21, #c5231f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.visual-chart div:nth-child(1) i {
  height: 46%;
}

.visual-chart div:nth-child(2) i {
  height: 76%;
}

.visual-chart div:nth-child(3) i {
  height: 62%;
}

.visual-chart div:nth-child(4) i {
  height: 88%;
}

.visual-chart span {
  overflow-wrap: anywhere;
  color: rgba(255, 247, 237, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.home-content {
  gap: 26px;
  margin-top: 30px;
}

.software-band {
  margin-top: 30px;
}

.callout-image {
  aspect-ratio: 16 / 7.3;
  transform: none;
}

.service-promise {
  margin-bottom: 22px;
}

.services-grid {
  gap: 18px;
}

.service-card {
  min-height: 390px;
}

.card-accent-image {
  aspect-ratio: 16 / 7.1;
  transform: none;
}

.service-card:nth-child(2) .card-accent-image {
  object-position: 8% 18%;
}

.service-card:nth-child(3) .card-accent-image {
  object-position: 92% 16%;
}

.service-card:nth-child(4) .card-accent-image {
  object-position: 48% 18%;
}

.service-card:nth-child(5) .card-accent-image {
  object-position: 15% 84%;
}

.service-card:nth-child(6) .card-accent-image {
  object-position: 52% 50%;
}

.section-heading {
  margin-bottom: 24px;
}

.product-grid {
  gap: 18px;
}

.about-grid,
.about-details,
.contact-grid {
  gap: 26px;
}

.about-image {
  aspect-ratio: 16 / 8.4;
}

.about-image img {
  transform: none;
}

.customers-showcase {
  margin-top: 24px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(69, 26, 3, 0.91), rgba(127, 29, 29, 0.92)),
    url("assets/generated/contact-tech-background.png") center / cover no-repeat;
}

@media (max-width: 980px) {
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .home-content {
    gap: 24px;
  }

  .service-card {
    min-height: 365px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 54px 0;
  }

  .hero-section {
    padding-top: 52px;
  }

  .premium-panel .visual-chart {
    height: 150px;
  }

  .visual-chart span {
    font-size: 0.58rem;
  }

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

/* Customer credibility block from the supplied PowerPoint. */
.customers-showcase {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(15, 143, 179, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 251, 0.92)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.customers-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.customers-heading h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.customer-logo-grid figure {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 27, 53, 0.06);
}

.customer-logo-grid img {
  display: block;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.customer-logo-grid figure:nth-child(8) img {
  max-height: 44px;
}

@media (max-width: 980px) {
  .customer-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customers-heading {
    display: block;
  }
}

@media (max-width: 680px) {
  .customers-showcase {
    padding: 20px;
  }

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

  .customer-logo-grid figure {
    min-height: 96px;
    padding: 12px;
  }
}

/* Final hero dashboard legibility overrides. */
.system-window {
  isolation: isolate;
}

.metric-card {
  min-height: 96px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 247, 237, 0.28);
}

.metric-card small {
  color: #ffe8c7;
  font-size: 0.72rem;
}

.metric-card strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.45);
}

.metric-card i {
  background: linear-gradient(90deg, #ffd58a 68%, rgba(255, 255, 255, 0.24) 68%);
}

.workflow-map span {
  min-height: 48px;
  padding: 9px 10px;
  border-color: rgba(255, 247, 237, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf3;
  font-size: 0.74rem;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.42);
}

.chart-context {
  background: rgba(69, 26, 3, 0.26);
  border-color: rgba(255, 247, 237, 0.22);
}

.chart-context strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.chart-context span {
  color: #fff2df;
  font-size: 0.73rem;
  line-height: 1.25;
}

.premium-panel .visual-chart {
  min-height: 142px;
  padding: 14px 12px 12px;
  background: rgba(69, 26, 3, 0.18);
}

.visual-chart div {
  grid-template-rows: minmax(62px, 1fr) 24px;
  gap: 7px;
}

.visual-chart i {
  align-self: end;
  background: linear-gradient(180deg, #ffb32f 0%, #f39a21 42%, #c5231f 100%);
}

.visual-chart span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  color: #fffaf3;
  font-size: 0.68rem;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(43, 15, 8, 0.55);
}

@media (max-width: 520px) {
  .window-content {
    gap: 10px;
    padding: 14px;
  }

  .metric-card {
    padding: 12px;
  }

  .workflow-map {
    gap: 7px;
  }

  .workflow-map span,
  .chart-context span {
    font-size: 0.68rem;
  }

  .visual-chart span {
    font-size: 0.6rem;
  }
}

/* Desktop PC hero expansion: full-width left-to-right layout. */
@media (min-width: 1200px) {
  .hero-section {
    padding-top: 58px;
  }

  .hero-shell.section-inner {
    width: calc(100% - 72px);
    max-width: none;
    margin-left: 36px;
    margin-right: 36px;
    padding: clamp(36px, 3.2vw, 64px);
    border-radius: 28px;
    background:
      linear-gradient(100deg, rgba(255, 255, 255, 0.8), rgba(255, 247, 237, 0.7)),
      url("assets/theme/brand-tech-background.svg") center / cover no-repeat;
  }

  .hero-shell .hero-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(560px, 0.88fr) minmax(680px, 1.12fr);
    gap: clamp(64px, 6vw, 132px);
    align-items: center;
  }

  .hero-shell .hero-copy {
    max-width: 760px;
  }

  .hero-shell .hero-brand-logo {
    width: min(380px, 100%);
  }

  .hero-shell h1 {
    max-width: 820px;
    font-size: clamp(4.8rem, 5.2vw, 7.4rem);
    line-height: 0.95;
  }

  .hero-shell .hero-lead {
    max-width: 700px;
    font-size: 1.14rem;
    line-height: 1.7;
  }

  .hero-shell .outcome-strip,
  .hero-shell .credential-strip {
    max-width: 760px;
  }

  .hero-shell .hero-offerings-panel {
    min-height: clamp(620px, 40vw, 780px);
  }

  .hero-shell .hero-info-overlay {
    right: 30px;
    bottom: 30px;
    left: 30px;
    padding: clamp(22px, 1.6vw, 30px);
  }

  .hero-shell .hero-info-overlay h2 {
    max-width: 780px;
    font-size: clamp(1.8rem, 2vw, 2.55rem);
  }

  .hero-shell .hero-info-grid span {
    min-height: 90px;
  }
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #0f7a3b;
}

.form-status.is-error {
  color: #b91c1c;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-direct-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 237, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(243, 154, 33, 0.18), transparent 34%);
  box-shadow: 0 30px 70px rgba(43, 15, 8, 0.28);
  color: var(--navy);
}

.contact-direct-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(197, 35, 31, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 154, 33, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), transparent 64%);
}

.contact-direct-card > * {
  position: relative;
}

.contact-direct-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.contact-direct-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.direct-contact-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.direct-contact-details div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(197, 35, 31, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.direct-contact-details dt {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.direct-contact-details a {
  color: inherit;
  text-decoration: none;
}

.direct-contact-details a:hover {
  color: var(--brand-red);
}

@media (max-width: 620px) {
  .direct-contact-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .direct-contact-actions .button {
    width: 100%;
  }
}
