@font-face {
  font-family: "TavanaUI";
  src: local("Vazirmatn"), local("IRANSans"), local("Tahoma");
  font-display: swap;
}

:root {
  --bg: #f7f9fc;
  --paper: #ffffff;
  --ink: #18232d;
  --muted: #65727d;
  --soft: #eef4fb;
  --blue-soft: #e4eefb;
  --line: #dce5ef;
  --accent: #376fbd;
  --accent-2: #244f8f;
  --navy: #132b3d;
  --navy-2: #0e2230;
  --sand: #b89a62;
  --shadow: 0 24px 70px rgba(34, 80, 137, 0.10);
  --shadow-soft: 0 14px 40px rgba(19, 43, 61, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: TavanaUI, Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.92;
  background:
    radial-gradient(circle at 18% 8%, rgba(55, 111, 189, .10), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(184, 154, 98, .11), transparent 34%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 420px);
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

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

.brand img {
  width: 300px;
  max-height: 74px;
  object-fit: contain;
  object-position: right center;
  display: block;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a { transition: color .18s ease; }
.main-nav a:hover { color: var(--accent); }

.nav-action,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  font-weight: 850;
  font-size: 14px;
  transition: all .18s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.nav-action,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 22px rgba(55, 111, 189, .14);
}

.nav-action:hover,
.btn-primary:hover {
  filter: brightness(.94);
  transform: translateY(-1px);
}

.btn-outline { color: var(--accent-2); background: rgba(255, 255, 255, .72); }
.btn-outline:hover { background: var(--blue-soft); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--accent-2);
  margin: 5px 0;
}

.hero {
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.36fr .84fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .06em;
}

.hero h1 {
  margin: 0 0 26px;
  max-width: 805px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.23;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.lead {
  max-width: 835px;
  margin: 0 0 18px;
  font-size: 20px;
  color: #2c3a46;
}

.hero-note {
  max-width: 815px;
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92)), var(--paper);
  border: 1px solid var(--line);
  padding: 36px 34px;
  min-height: 430px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sand));
  margin-bottom: 28px;
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: 29px;
  line-height: 1.5;
}

.hero-card p { margin: 0; color: var(--muted); }
.hero-tags { display: grid; margin-top: 30px; }

.hero-tags span {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--accent-2);
  font-weight: 900;
}

.dark-statement {
  background: linear-gradient(135deg, rgba(55,111,189,.28), transparent 50%), var(--navy);
  color: #fff;
  padding: 58px 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.statement-grid h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.45;
}

.statement-grid p {
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 18px;
}

.section { padding: 76px 0; }

.section.soft {
  background: linear-gradient(180deg, var(--soft), #f8fbff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 74px;
}

.section-title h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.36;
  letter-spacing: -0.01em;
}

.section-heading { max-width: 900px; margin-bottom: 38px; }
.section-heading.compact { max-width: 760px; }

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.rich-text p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article,
.service-card,
.industry-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-grid article {
  padding: 28px;
  min-height: 245px;
}

.process-grid span {
  color: var(--accent);
  font-weight: 950;
  font-size: 14px;
}

.process-grid h3 {
  margin: 12px 0 12px;
  font-size: 20px;
  line-height: 1.55;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px;
  min-height: 250px;
}

.service-card.main-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(55, 111, 189, .09), rgba(184, 154, 98, .08)), var(--paper);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.45;
}

.service-card p { margin: 0; color: var(--muted); }

.service-card ul {
  margin: 18px 0 0;
  padding: 0 20px 0 0;
  color: var(--muted);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-grid article {
  padding: 26px;
  min-height: 190px;
}

.industry-grid h3 {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 21px;
}

.industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.chips,
.request-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chips span,
.request-list span {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--accent-2);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 850;
}

.request-section {
  background: radial-gradient(circle at 20% 20%, rgba(55,111,189,.30), transparent 32%), var(--navy-2);
  color: #fff;
  padding: 76px 0;
}

.request-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}

.request-grid h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.32;
}

.request-grid p {
  color: rgba(255,255,255,.77);
  max-width: 760px;
}

.contact-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 28px 30px;
  box-shadow: 0 18px 48px rgba(19, 43, 61, 0.11);
}

.contact-logo {
  width: 275px;
  max-height: 90px;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin-bottom: 14px;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.contact-card p { margin: 0; color: var(--muted); }

.contact-info {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-info a,
.contact-info span {
  display: block;
  direction: rtl;
  text-align: right;
  color: var(--accent-2);
  font-weight: 850;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.contact-info a:first-child {
  direction: ltr;
  text-align: left;
  color: var(--accent);
  font-size: 20px;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.copy-status {
  min-height: 20px;
  margin-top: 10px !important;
  color: var(--accent-2) !important;
  font-size: 13px;
  font-weight: 800;
}

.full { width: 100%; }

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand img {
  width: 240px;
  max-height: 70px;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin-bottom: 6px;
}

.footer-brand span { display: block; }
.footer-grid p,
.footer-grid span { margin: 0; }

.footer-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  direction: ltr;
  justify-content: center;
}

.footer-contact a,
.footer-contact span {
  color: var(--accent-2);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .main-nav,
  .nav-action { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    position: absolute;
    display: grid;
    top: 84px;
    left: 20px;
    right: 20px;
    background: var(--paper);
    padding: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 14px;
  }

  .hero-grid,
  .statement-grid,
  .split,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split,
  .request-grid,
  .statement-grid { gap: 36px; }

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

  .service-card.main-card { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { min-width: auto; }
  .brand img { width: 220px; }
  .hero { padding: 54px 0 56px; }
  .hero h1 { font-size: 34px; }
  .lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-card { min-height: auto; padding: 28px; }
  .section,
  .request-section { padding: 62px 0; }
  .process-grid,
  .service-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .service-card.main-card { grid-column: auto; }
  .footer-brand img { width: 220px; }
  .contact-logo { width: 235px; }
}

@media (max-width: 420px) {
  .brand img { width: 178px; }
}


/* RFQ Modal */
.rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.rfq-modal.is-open {
  display: block;
}

.rfq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 32, 0.72);
  backdrop-filter: blur(6px);
}

.rfq-dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .26);
  padding: 34px;
}

.rfq-close {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-2);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.rfq-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.rfq-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
}

.rfq-head p {
  margin: 0;
  color: var(--muted);
}

.rfq-form {
  margin-top: 18px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 10px 12px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(55, 111, 189, .12);
}

.form-grid textarea {
  resize: vertical;
  min-height: 140px;
}

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

.human-check {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.human-check strong {
  color: var(--accent-2);
  font-size: 15px;
}

.human-check input {
  max-width: 180px;
}

.hp-field {
  display: none !important;
}

.rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body.rfq-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .rfq-dialog {
    padding: 26px 18px;
    margin: 12px auto;
    max-height: calc(100vh - 24px);
  }

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

  .rfq-actions {
    display: grid;
  }
}


/* v11 modal fallback */
#rfq-form { display: none; }
#rfq-form.is-open { display: block; }


/* v11 security checkbox */
.security-check {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 14px 16px;
  cursor: pointer;
}

.security-check input {
  width: 18px !important;
  height: 18px;
  margin-top: 7px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.security-check span {
  display: grid;
  gap: 3px;
  color: var(--accent-2);
  font-weight: 900;
}

.security-check small {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}


/* v12 double security */
.security-group {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.security-group .security-check {
  border: 0;
  background: transparent;
  padding: 0;
}

.security-math {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-weight: 850;
}

.security-math strong {
  color: var(--accent-2);
  font-size: 14px;
}

.security-math input {
  max-width: 180px;
  background: #fff;
}


/* v13 RFQ advanced fields */
.form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-2) 50%),
    linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-left: 12px;
}

.field-help {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
}

.form-grid input[type="file"] {
  padding: 9px;
  background: #fff;
  cursor: pointer;
}


/* v18 premium visual redesign */
:root {
  --navy-deep: #071726;
  --navy-soft: #0e2940;
  --blue-glow: rgba(55, 111, 189, .22);
  --gold-glow: rgba(184, 154, 98, .22);
}

body {
  background:
    radial-gradient(circle at 12% 9%, rgba(55,111,189,.10), transparent 28%),
    radial-gradient(circle at 86% 3%, rgba(184,154,98,.10), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #eef4f9 48%, #f8fafc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(55, 111, 189, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 111, 189, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 74%);
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 34px rgba(14, 41, 64, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(55,111,189,.16), transparent 32%),
    radial-gradient(circle at 16% 86%, rgba(184,154,98,.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fc 54%, #e9f1f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  top: -460px;
  right: -260px;
  background:
    radial-gradient(circle, rgba(255,255,255,.98) 0 32%, transparent 33%),
    repeating-radial-gradient(circle, rgba(55,111,189,.14) 0 1px, transparent 1px 38px);
  opacity: .9;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,98,.18), transparent 62%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 12px;
  width: 5px;
  height: 112px;
  background: linear-gradient(180deg, var(--accent), var(--sand));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(55,111,189,.22);
}

.hero h1 {
  letter-spacing: -1px;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

.premium-hero-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(55,111,189,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80)),
    radial-gradient(circle at 50% 18%, rgba(55,111,189,.18), transparent 38%);
  box-shadow: 0 30px 90px rgba(14,41,64,.16);
  position: relative;
  overflow: hidden;
}

.premium-hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(55,111,189,.10);
  pointer-events: none;
}

.supply-map {
  position: absolute;
  inset: 34px 34px auto 34px;
  height: 245px;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(55,111,189,.18);
  pointer-events: none;
}

.ring-one {
  width: 220px;
  height: 220px;
  top: 4px;
  right: calc(50% - 110px);
}

.ring-two {
  width: 150px;
  height: 150px;
  top: 39px;
  right: calc(50% - 75px);
  border-color: rgba(184,154,98,.22);
}

.map-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 7px 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(55,111,189,.20);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(14,41,64,.12);
}

.node-need { top: 0; right: calc(50% - 46px); }
.node-market { top: 88px; right: 0; }
.node-decision { top: 88px; left: 0; }
.node-delivery { top: 184px; right: calc(50% - 46px); background: #173d61; color: #fff; border-color: transparent; }

.map-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(55,111,189,.55), rgba(184,154,98,.60));
  transform-origin: center;
}

.map-line-a { width: 160px; top: 76px; right: calc(50% - 24px); transform: rotate(29deg); }
.map-line-b { width: 160px; top: 76px; left: calc(50% - 24px); transform: rotate(-29deg); }
.map-line-c { width: 132px; top: 165px; right: calc(50% - 66px); transform: rotate(90deg); }

.value-strip {
  margin-top: -32px;
  position: relative;
  z-index: 4;
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, #102b44, #071726);
  box-shadow: 0 22px 70px rgba(14,41,64,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.value-strip-grid > div {
  padding: 26px 28px;
  border-left: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}

.value-strip-grid > div:last-child {
  border-left: 0;
}

.value-strip-grid > div::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: -52px;
  bottom: -62px;
  border-radius: 50%;
  background: rgba(55,111,189,.18);
}

.value-strip span {
  display: inline-block;
  color: var(--sand);
  font-weight: 950;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.value-strip strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.value-strip p {
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.9;
}

.decorated-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.decorated-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--sand), var(--accent));
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,111,189,.16), transparent);
  pointer-events: none;
}

.section.soft {
  background:
    radial-gradient(circle at 16% 18%, rgba(55,111,189,.09), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(184,154,98,.11), transparent 34%),
    #f2f6fa;
}

.process-grid article,
.service-card,
.industry-grid article,
.why-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(55,111,189,.13);
  box-shadow: 0 10px 34px rgba(14,41,64,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-grid article::before,
.service-card::before,
.industry-grid article::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55,111,189,.055), transparent 38%, rgba(184,154,98,.05));
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.process-grid article:hover,
.service-card:hover,
.industry-grid article:hover,
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(14,41,64,.13);
  border-color: rgba(55,111,189,.30);
}

.process-grid article:hover::before,
.service-card:hover::before,
.industry-grid article:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.process-grid article span {
  color: rgba(55,111,189,.20);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.premium-icon,
.industry-premium-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(55,111,189,.13), rgba(184,154,98,.12)),
    #fff;
  border: 1px solid rgba(55,111,189,.15);
  box-shadow: 0 12px 28px rgba(14,41,64,.08);
}

.premium-icon svg,
.industry-premium-icon svg {
  width: 27px;
  height: 27px;
  fill: var(--accent-2);
}

.industry-premium-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
}

.industry-premium-icon svg {
  width: 24px;
  height: 24px;
}

.service-card.main-card {
  background:
    linear-gradient(135deg, rgba(16,43,68,.97), rgba(28,76,118,.92)),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.16), transparent 30%);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

.service-card.main-card h3,
.service-card.main-card p,
.service-card.main-card li {
  color: #fff;
}

.service-card.main-card .premium-icon {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.service-card.main-card .premium-icon svg {
  fill: #fff;
}

.dark-statement {
  background:
    linear-gradient(135deg, rgba(7,23,38,.97), rgba(15,43,68,.96)),
    radial-gradient(circle at 15% 10%, rgba(55,111,189,.24), transparent 30%);
  position: relative;
  overflow: hidden;
}

.dark-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .36;
}

.request-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(55,111,189,.22), transparent 36%),
    radial-gradient(circle at 90% 85%, rgba(184,154,98,.18), transparent 30%),
    linear-gradient(135deg, #071726, #102b44);
  position: relative;
  overflow: hidden;
}

.request-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  left: -250px;
  bottom: -330px;
}

.contact-card {
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.16);
}

.rfq-dialog {
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
}

@media (max-width: 900px) {
  .value-strip {
    margin-top: 0;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
  }

  .value-strip-grid > div {
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .supply-map {
    opacity: .72;
  }
}

@media (max-width: 720px) {
  .premium-hero-card {
    min-height: 360px;
  }

  .supply-map {
    transform: scale(.86);
    transform-origin: top center;
    inset-inline: 12px;
  }

  .hero-copy::before {
    display: none;
  }

  .process-grid article:hover,
  .service-card:hover,
  .industry-grid article:hover,
  .why-card:hover {
    transform: none;
  }
}


/* v19 deeper industrial premium layer */
.hero-copy .rfq-quick-card {
  margin-top: 22px;
  max-width: 680px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(55,111,189,.16);
  border-right: 4px solid var(--sand);
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(14,41,64,.08);
  backdrop-filter: blur(10px);
}

.rfq-quick-card span {
  display: block;
  color: var(--accent-2);
  font-weight: 950;
  margin-bottom: 5px;
}

.rfq-quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.hero h1 {
  position: relative;
}

.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--sand), var(--accent));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(55,111,189,.24);
}

.product-spectrum {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 34px 0 28px;
}

.product-tile {
  min-height: 238px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #0a1d30, #143c60);
  box-shadow: 0 22px 55px rgba(14,41,64,.16);
  border: 1px solid rgba(255,255,255,.12);
  isolation: isolate;
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.product-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  left: -78px;
  bottom: -96px;
  background: radial-gradient(circle, rgba(184,154,98,.34), transparent 65%);
}

.product-tile h3 {
  color: #fff;
  margin: 52px 0 12px;
  font-size: 20px;
}

.product-tile p {
  color: rgba(255,255,255,.78);
  line-height: 2;
  margin: 0;
}

.tile-code {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  color: rgba(255,255,255,.18);
}

.tile-instrument {
  background: linear-gradient(145deg, #092033, #18517e);
}

.tile-electrical {
  background: linear-gradient(145deg, #10233a, #3b5d92);
}

.tile-mechanical {
  background: linear-gradient(145deg, #13242f, #496170);
}

.tile-project {
  background: linear-gradient(145deg, #1b241f, #7a6438);
}

.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(14,41,64,.22);
}

.services-grid {
  margin-top: 18px;
}

.service-card.main-card {
  position: relative;
}

.service-card.main-card::after {
  content: "PRODUCTS + SERVICES";
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: rgba(255,255,255,.10);
  font-weight: 950;
  letter-spacing: 1.5px;
  font-size: 22px;
  pointer-events: none;
}

.industry-grid article {
  min-height: 178px;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  left: -52px;
  top: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(55,111,189,.13);
  pointer-events: none;
}

.capability-ribbon {
  background: #f7f9fc;
  padding: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateY(36px);
  position: relative;
  z-index: 3;
  box-shadow: 0 24px 70px rgba(14,41,64,.14);
}

.capability-grid > div {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(55,111,189,.14);
  border-left: 0;
  padding: 24px 20px;
  min-height: 122px;
}

.capability-grid > div:last-child {
  border-left: 1px solid rgba(55,111,189,.14);
}

.capability-grid span {
  display: block;
  direction: ltr;
  text-align: right;
  color: var(--sand);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .7px;
  margin-bottom: 8px;
}

.capability-grid strong {
  display: block;
  color: var(--accent-2);
  font-size: 16px;
  line-height: 1.8;
}

.request-section {
  padding-top: 100px;
}

.nav a {
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .product-spectrum {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .capability-grid {
    transform: none;
    margin-bottom: 0;
  }

  .request-section {
    padding-top: 72px;
  }

  .product-tile {
    min-height: 210px;
  }
}


/* v21 EPC solutions and procurement engineering section */
.solution-spectrum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 26px;
}

.solution-tile {
  min-height: 360px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #071726, #143c60);
  box-shadow: 0 24px 65px rgba(14,41,64,.17);
  border: 1px solid rgba(255,255,255,.13);
  isolation: isolate;
}

.solution-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 31px 31px;
}

.solution-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  left: -105px;
  bottom: -128px;
  background: radial-gradient(circle, rgba(184,154,98,.36), transparent 65%);
}

.solution-tile h3 {
  color: #fff;
  margin: 58px 0 14px;
  font-size: 21px;
  line-height: 1.65;
}

.solution-tile p,
.solution-tile li {
  color: rgba(255,255,255,.80);
  line-height: 2;
}

.solution-tile ul {
  margin: 18px 0 0;
  padding: 0 18px 0 0;
}

.solution-epc {
  background: linear-gradient(145deg, #071726, #18517e);
}

.solution-plant {
  background: linear-gradient(145deg, #10233a, #3b5d92);
}

.solution-replace {
  background: linear-gradient(145deg, #1b241f, #7a6438);
}

.capability-panel {
  margin-top: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(55,111,189,.14);
  box-shadow: 0 22px 65px rgba(14,41,64,.08);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.capability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(55,111,189,.08), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(184,154,98,.10), transparent 34%);
  pointer-events: none;
}

.capability-panel-head,
.product-matrix,
.solution-workflow {
  position: relative;
  z-index: 1;
}

.capability-panel-head {
  max-width: 900px;
  margin-bottom: 26px;
}

.capability-panel-head h3 {
  color: var(--accent-2);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.55;
  margin: 0 0 12px;
}

.capability-panel-head p {
  color: var(--muted);
  line-height: 2.05;
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-matrix article {
  background: #fff;
  border: 1px solid rgba(55,111,189,.12);
  padding: 22px;
  min-height: 190px;
  box-shadow: 0 12px 34px rgba(14,41,64,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-matrix article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(14,41,64,.11);
  border-color: rgba(55,111,189,.28);
}

.product-matrix h4 {
  color: var(--accent-2);
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.8;
}

.product-matrix p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 14px;
}

.solution-workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  background: linear-gradient(135deg, #102b44, #071726);
  box-shadow: 0 20px 58px rgba(14,41,64,.16);
}

.solution-workflow > div {
  padding: 24px 22px;
  border-left: 1px solid rgba(255,255,255,.10);
}

.solution-workflow > div:last-child {
  border-left: 0;
}

.solution-workflow span {
  color: var(--sand);
  font-weight: 950;
  display: block;
  margin-bottom: 9px;
}

.solution-workflow strong {
  color: #fff;
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.solution-workflow p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .solution-spectrum,
  .product-matrix {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .capability-panel {
    padding: 24px;
  }

  .solution-tile {
    min-height: auto;
  }
}

/* v23 executive Persian-first refinement */
:root {
  --ink: #16222d;
  --muted: #5f6e7b;
  --accent: #315f9f;
  --accent-2: #173f70;
  --navy: #102538;
  --navy-2: #081826;
  --sand: #b09255;
  --line: #e0e8f1;
}

body {
  background:
    radial-gradient(circle at 82% 6%, rgba(49,95,159,.09), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8fb 470px, #f7f9fc 100%);
}

.site-header {
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 0 rgba(16,37,56,.04);
}

.header-inner { min-height: 72px; }
.brand { min-width: 280px; }
.brand img { width: 270px; }
.main-nav { gap: 22px; font-size: 13px; }
.nav-action, .btn { border-radius: 0; min-height: 42px; }

.hero {
  padding: 72px 0 58px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(239,246,253,.74)),
    radial-gradient(circle at 18% 40%, rgba(176,146,85,.10), transparent 34%);
}

.hero-grid {
  grid-template-columns: 1.22fr .78fr;
  gap: 48px;
}

.eyebrow, .kicker {
  color: var(--sand);
  letter-spacing: 0;
  font-size: 13px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.28;
  letter-spacing: -.015em;
}

.hero h1::after {
  width: 76px;
  height: 4px;
  margin-top: 16px;
  box-shadow: none;
}

.lead {
  max-width: 780px;
  font-size: 18px;
  line-height: 2.05;
  color: #2b3945;
}

.hero-note {
  max-width: 730px;
  font-size: 15px;
  line-height: 2;
}

.hero-card {
  min-height: 360px;
  padding: 34px 32px;
  box-shadow: 0 22px 62px rgba(16,37,56,.09);
}

.hero-card h2 {
  font-size: 25px;
  line-height: 1.65;
}

.hero-card p {
  font-size: 15px;
  line-height: 2;
}

.hero-tags span {
  font-size: 14px;
  color: var(--accent-2);
}

.value-strip { margin-top: 0; background: #fff; }
.value-strip-grid {
  box-shadow: none;
  border: 0;
  background: var(--navy);
}
.value-strip-grid > div { padding: 24px 28px; }
.value-strip strong { font-size: 16px; }
.value-strip p { font-size: 14px; line-height: 1.95; }

.dark-statement { padding: 52px 0; }
.dark-statement::before { opacity: .18; }
.statement-grid { gap: 54px; }
.statement-grid h2 { font-size: clamp(25px, 2.6vw, 34px); }
.statement-grid p { font-size: 16px; line-height: 2.05; }

.section { padding: 70px 0; }
.section-heading { max-width: 780px; }
.section-heading.compact { max-width: 820px; }
.section-title h2, .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
}
.section-heading p { font-size: 16px; line-height: 2; }

.process-grid { gap: 14px; }
.process-grid article {
  min-height: 225px;
  padding: 26px;
  box-shadow: none;
}
.process-grid article span { font-size: 36px; }
.process-grid h3 { font-size: 18px; }
.process-grid p { font-size: 14px; line-height: 2; }

.service-grid { gap: 16px; }
.service-card {
  min-height: 230px;
  padding: 26px;
  box-shadow: none;
}
.service-card:hover, .process-grid article:hover, .industry-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(16,37,56,.10);
}
.service-card.main-card {
  background: linear-gradient(135deg, #102538, #173f70);
}
.service-card.main-card::after { content: ""; }
.service-card h3 { font-size: 20px; }
.service-card p, .service-card li { font-size: 14px; line-height: 2; }
.service-card ul { margin-top: 16px; }

.premium-icon, .industry-premium-icon {
  width: 46px;
  height: 46px;
  box-shadow: none;
}
.premium-icon svg, .industry-premium-icon svg { width: 24px; height: 24px; }

.industry-grid { gap: 16px; }
.industry-grid article { min-height: 170px; padding: 24px; box-shadow: none; }
.industry-grid h3 { font-size: 19px; }
.industry-grid p { line-height: 2; }

.request-section { padding: 70px 0; }
.request-grid h2 { font-size: clamp(30px, 3.5vw, 46px); }
.contact-card { box-shadow: 0 20px 66px rgba(0,0,0,.16); }
.footer-brand img { width: 220px; }

@media (max-width: 1080px) {
  .brand { min-width: auto; }
}

@media (max-width: 900px) {
  .hero-grid, .statement-grid, .split, .request-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 48px; }
  .hero-card { min-height: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero h1 { font-size: 34px; }
  .lead { font-size: 16px; }
  .service-card.main-card { grid-column: auto; }
}

/* v24 class-one visual refinement */
:root {
  --card-radius: 0px;
  --icon-surface: rgba(255,255,255,.92);
  --premium-border: rgba(49, 95, 159, .18);
}

.service-card,
.industry-grid article,
.process-grid article,
.contact-card,
.hero-card {
  border-radius: var(--card-radius);
}

.service-grid,
.industry-grid {
  gap: 20px;
}

.service-card {
  padding: 34px 32px 32px;
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,255,.96));
  border: 1px solid var(--premium-border);
}

.service-card.main-card {
  padding: 38px 38px 34px;
  min-height: 315px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(135deg, #081826 0%, #113657 52%, #173f70 100%);
  box-shadow: 0 26px 78px rgba(8,24,38,.16);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p,
.service-card li {
  font-size: 14.5px;
}

.premium-icon,
.industry-premium-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(236,244,252,.92));
  border: 1px solid rgba(49,95,159,.20);
  box-shadow:
    0 18px 44px rgba(16,37,56,.10),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.premium-icon::after,
.industry-premium-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(176,146,85,.20);
  pointer-events: none;
}

.premium-icon svg,
.industry-premium-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-icon svg path,
.industry-premium-icon svg path {
  fill: none;
  stroke: currentColor;
}

.premium-icon svg,
.industry-premium-icon svg { color: var(--accent-2); }

.service-card.main-card .premium-icon {
  width: 82px;
  height: 82px;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.service-card.main-card .premium-icon::after {
  border-color: rgba(176,146,85,.28);
}

.service-card.main-card .premium-icon svg {
  width: 46px;
  height: 46px;
  color: #fff;
  fill: none;
}

.industry-grid article {
  padding: 32px 30px;
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,254,.96));
  border: 1px solid rgba(49,95,159,.16);
}

.industry-grid article::after {
  width: 170px;
  height: 170px;
  left: -72px;
  top: -72px;
  border-color: rgba(49,95,159,.12);
}

.industry-premium-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.98), rgba(241,247,252,.94) 60%, rgba(232,240,249,.92) 100%);
  border-color: rgba(49,95,159,.22);
  box-shadow:
    0 20px 48px rgba(10,32,56,.11),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.industry-premium-icon::after {
  inset: 11px;
  border-color: rgba(176,146,85,.24);
}

.industry-premium-icon svg {
  width: 50px;
  height: 50px;
  color: #1f4e85;
  stroke-width: 1.9;
}

.industry-grid h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading.compact h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-heading.compact h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--accent));
}

.contact-info a[href^="tel"],
.contact-info .phone-number,
.footer-contact span {
  direction: ltr;
  unicode-bidi: embed;
  text-align: left;
  display: block;
}

.contact-info a[href^="tel"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.footer-contact {
  direction: ltr;
  justify-content: flex-start;
  text-align: left;
}

.value-strip strong,
.service-card h3,
.industry-grid h3 {
  letter-spacing: -.01em;
}

@media (max-width: 1080px) {
  .premium-icon,
  .industry-premium-icon { width: 72px; height: 72px; }
  .premium-icon svg,
  .industry-premium-icon svg { width: 38px; height: 38px; }
}

@media (max-width: 720px) {
  .service-card,
  .industry-grid article { padding: 28px 24px; }
  .premium-icon,
  .industry-premium-icon { width: 68px; height: 68px; }
  .premium-icon svg,
  .industry-premium-icon svg { width: 36px; height: 36px; }
}


/* ===========================
   Version 26 — Executive Industrial Design Upgrade
   =========================== */

:root {
  --ink-deep: #061321;
  --navy-1: #081b2e;
  --navy-2: #0d3356;
  --navy-3: #164f86;
  --steel-1: #e8eef5;
  --steel-2: #f7fafc;
  --gold-1: #b89a62;
  --gold-2: #d8bd82;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(49,95,159,.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(184,154,98,.12), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, #eef4f9 48%, #f9fbfd 100%);
}

body::before {
  opacity: .66;
  background-size: 46px 46px;
  background-image:
    linear-gradient(rgba(49,95,159,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,95,159,.055) 1px, transparent 1px);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(49,95,159,.14);
  box-shadow: 0 14px 44px rgba(6,19,33,.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.92) 0%, rgba(244,249,253,.88) 47%, rgba(227,238,247,.80) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: -210px;
  top: -230px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.72) 0 24%, rgba(49,95,159,.09) 25% 25.5%, transparent 26% 100%);
  box-shadow:
    0 0 0 88px rgba(49,95,159,.045),
    0 0 0 176px rgba(49,95,159,.032),
    0 0 0 264px rgba(49,95,159,.022);
  pointer-events: none;
}

.hero h1 {
  max-width: 870px;
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: 1.17;
  letter-spacing: -.04em;
  color: var(--ink-deep);
}

.lead {
  max-width: 850px;
  font-size: 21px;
  line-height: 2.02;
}

.hero-note {
  max-width: 820px;
  font-size: 16px;
  line-height: 2;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 44px 38px;
  min-height: 466px;
  border: 1px solid rgba(49,95,159,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,254,.94)),
    linear-gradient(135deg, rgba(49,95,159,.08), rgba(184,154,98,.08));
  box-shadow:
    0 44px 100px rgba(6,19,33,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(49,95,159,.13);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -145px;
  top: -145px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,98,.18);
  box-shadow: 0 0 0 42px rgba(49,95,159,.045);
  pointer-events: none;
}

.hero-card h2 {
  font-size: 30px;
  line-height: 1.42;
  letter-spacing: -.035em;
}

.hero-list span {
  padding: 16px 0;
  font-size: 14.5px;
  border-color: rgba(49,95,159,.15);
}

.value-strip {
  transform: translateY(-28px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 36px 92px rgba(6,19,33,.22);
}

.value-strip article {
  min-height: 136px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.04), transparent),
    linear-gradient(135deg, #071725, #0d2e4e 62%, #123d68);
}

.section {
  padding: 104px 0;
}

.section.soft {
  background:
    radial-gradient(circle at 100% 30%, rgba(184,154,98,.09), transparent 28%),
    radial-gradient(circle at 0% 72%, rgba(49,95,159,.10), transparent 34%),
    linear-gradient(180deg, rgba(236,244,250,.78), rgba(247,250,253,.92));
}

.section-heading {
  max-width: 980px;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.28;
  letter-spacing: -.035em;
  color: var(--ink-deep);
}

.section-heading p {
  max-width: 860px;
  line-height: 2;
}

.service-grid,
.industry-grid,
.process-grid {
  gap: 24px;
}

.service-card,
.industry-grid article,
.process-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(49,95,159,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,254,.96));
  box-shadow:
    0 28px 80px rgba(6,19,33,.085),
    inset 0 1px 0 rgba(255,255,255,.94);
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease;
}

.service-card:hover,
.industry-grid article:hover,
.process-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(49,95,159,.30);
  box-shadow:
    0 42px 110px rgba(6,19,33,.14),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.service-card::before,
.industry-grid article::before,
.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  background:
    linear-gradient(90deg, var(--gold-1), var(--navy-3)) top right / 128px 4px no-repeat;
  opacity: .9;
  pointer-events: none;
}

.service-card::after,
.industry-grid article::after,
.process-grid article::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -120px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(49,95,159,.105);
  box-shadow:
    0 0 0 36px rgba(49,95,159,.030),
    0 0 0 72px rgba(184,154,98,.020);
  pointer-events: none;
}

.service-card {
  padding: 40px 38px;
  min-height: 302px;
}

.service-card.main-card {
  padding: 46px 44px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.13), transparent 32%),
    radial-gradient(circle at 100% 80%, rgba(184,154,98,.16), transparent 34%),
    linear-gradient(135deg, #061321 0%, #0b2b49 54%, #174f85 100%);
  box-shadow:
    0 42px 110px rgba(6,19,33,.24),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.service-card.main-card h3,
.service-card.main-card p,
.service-card.main-card li {
  color: #fff;
}

.service-card h3,
.industry-grid h3,
.process-grid h3 {
  font-size: 23px;
  line-height: 1.55;
  color: var(--ink-deep);
}

.service-card.main-card h3 {
  font-size: 26px;
}

.service-card p,
.service-card li,
.industry-grid p,
.process-grid p {
  font-size: 15.5px;
  line-height: 2.05;
}

.premium-icon,
.industry-premium-icon {
  width: 102px;
  height: 102px;
  margin-bottom: 30px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, #ffffff, #eef5fb 62%, #dfeaf4 100%);
  border: 1px solid rgba(49,95,159,.22);
  box-shadow:
    0 24px 58px rgba(6,19,33,.13),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.premium-icon::before,
.industry-premium-icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184,154,98,.78), rgba(49,95,159,.36), rgba(255,255,255,.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.premium-icon::after,
.industry-premium-icon::after {
  inset: 14px;
  border: 1px solid rgba(184,154,98,.28);
  border-radius: 10px;
}

.premium-icon svg,
.industry-premium-icon svg {
  width: 60px;
  height: 60px;
  color: #174f85;
  stroke-width: 1.85;
  filter: drop-shadow(0 10px 20px rgba(23,79,133,.16));
}

.service-card.main-card .premium-icon {
  width: 108px;
  height: 108px;
  border-color: rgba(255,255,255,.22);
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.22), rgba(255,255,255,.08) 62%, rgba(255,255,255,.04) 100%);
  box-shadow:
    0 24px 58px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.service-card.main-card .premium-icon svg {
  width: 64px;
  height: 64px;
}

.industry-grid article {
  min-height: 292px;
  padding: 42px 38px 40px;
  background:
    radial-gradient(circle at 14% 16%, rgba(49,95,159,.045), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(246,250,253,.98));
}

.industry-grid article:nth-child(1)::before { background: linear-gradient(90deg, #b89a62, #0d3356) top right / 142px 4px no-repeat; }
.industry-grid article:nth-child(2)::before { background: linear-gradient(90deg, #9aa8b7, #123d68) top right / 142px 4px no-repeat; }
.industry-grid article:nth-child(3)::before { background: linear-gradient(90deg, #5ea7d8, #164f86) top right / 142px 4px no-repeat; }
.industry-grid article:nth-child(4)::before { background: linear-gradient(90deg, #b89a62, #2e6d74) top right / 142px 4px no-repeat; }
.industry-grid article:nth-child(5)::before { background: linear-gradient(90deg, #8d7a62, #123d68) top right / 142px 4px no-repeat; }
.industry-grid article:nth-child(6)::before { background: linear-gradient(90deg, #d8bd82, #164f86) top right / 142px 4px no-repeat; }

.industry-grid h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.industry-grid p {
  color: #405160;
}

.btn {
  min-height: 48px;
  padding: 14px 24px;
  box-shadow: 0 14px 34px rgba(49,95,159,.16);
}

.btn.primary {
  background: linear-gradient(135deg, #174f85, #0d3356);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(49,95,159,.24);
}

@media (max-width: 1080px) {
  .hero { padding: 82px 0 78px; }
  .service-card,
  .industry-grid article { padding: 34px 28px; }
  .premium-icon,
  .industry-premium-icon { width: 86px; height: 86px; }
  .premium-icon svg,
  .industry-premium-icon svg { width: 50px; height: 50px; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .premium-icon,
  .industry-premium-icon { width: 76px; height: 76px; }
  .premium-icon svg,
  .industry-premium-icon svg { width: 44px; height: 44px; }
  .service-card,
  .industry-grid article { min-height: auto; }
}


/* ===========================
   Version 27 — Header/Nav baseline fix
   =========================== */
.site-header { z-index: 1000; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  line-height: 1;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  line-height: 44px;
  padding: 0 2px;
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #53616d;
  text-decoration: none;
  vertical-align: middle;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 2px;
  margin: auto;
  background: linear-gradient(90deg, var(--gold-1), var(--navy-3));
  transition: width .22s ease;
  display: block;
}

.main-nav a:hover { color: var(--navy-3); }
.main-nav a:hover::after { width: 100%; }

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .main-nav,
  .nav-action { display: none; }

  .main-nav.open {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .main-nav.open a {
    height: auto;
    line-height: 1.8;
    justify-content: flex-start;
    padding: 14px 0;
  }

  .main-nav.open a::after { display: none; }
}


/* ===========================
   Version 28 — Header Alignment Hotfix
   A hard override to keep every navigation item on the exact same baseline.
   =========================== */
.site-header .header-inner {
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.site-header .main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  height: 78px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.site-header .main-nav a,
.site-header .main-nav a:link,
.site-header .main-nav a:visited {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 78px !important;
  line-height: 78px !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  top: 0 !important;
  transform: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #53616d !important;
  text-decoration: none !important;
  vertical-align: baseline !important;
}

.site-header .main-nav a::before,
.site-header .main-nav a::after {
  content: none !important;
  display: none !important;
}

.site-header .main-nav a:hover {
  color: var(--navy-3) !important;
}

.site-header .nav-action {
  align-self: center !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .site-header .main-nav,
  .site-header .nav-action { display: none !important; }

  .site-header .main-nav.open {
    display: flex !important;
    height: auto !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .site-header .main-nav.open a {
    height: auto !important;
    line-height: 1.9 !important;
    padding: 14px 0 !important;
    justify-content: flex-start !important;
  }
}


/* ===========================
   Version 29 — Process icons upgrade
   =========================== */
.process-grid article {
  padding: 40px 34px 36px;
}

.process-grid .process-icon {
  width: 92px;
  height: 92px;
  margin: 0 0 26px auto;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 22%, #ffffff, #edf4fb 62%, #dce7f1 100%);
  border: 1px solid rgba(49,95,159,.22);
  box-shadow:
    0 22px 54px rgba(6,19,33,.11),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.process-grid .process-icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184,154,98,.75), rgba(49,95,159,.34), rgba(255,255,255,.24));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.process-grid .process-icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(184,154,98,.24);
  border-radius: 10px;
  pointer-events: none;
}

.process-grid .process-icon svg {
  width: 54px;
  height: 54px;
  color: #174f85;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 20px rgba(23,79,133,.14));
}

.process-grid article span { display: none !important; }

@media (max-width: 1080px) {
  .process-grid .process-icon {
    width: 82px;
    height: 82px;
  }
  .process-grid .process-icon svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 720px) {
  .process-grid .process-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
  }
  .process-grid .process-icon svg {
    width: 42px;
    height: 42px;
  }
}


/* ===========================
   Version 32 — Contact labels
   =========================== */
.contact-label {
  font-weight: 700;
  color: var(--navy-3, #164f86);
  letter-spacing: .01em;
  margin-inline-end: 6px;
}

.contact-info a,
.footer-contact span {
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-info a .contact-label,
.footer-contact .contact-label {
  direction: ltr;
  unicode-bidi: isolate;
}


/* ===========================
   Version 33 — Contact row alignment fix
   =========================== */
.contact-info a[href^="tel"] {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  direction: ltr !important;
  unicode-bidi: isolate;
  text-align: left !important;
  white-space: nowrap;
}

.contact-info a[href^="tel"] .contact-label,
.contact-info a[href^="tel"] span[dir="ltr"] {
  display: inline-block;
  line-height: 1.4;
}

.contact-info a[href^="tel"] .contact-label {
  min-width: 56px;
  margin: 0;
  text-align: left;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  text-align: left;
}

.footer-contact span {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  direction: ltr !important;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.footer-contact .contact-label {
  min-width: 56px;
  margin: 0;
  text-align: left;
}


/* ===========================
   Version 34 — Contact lines cleanup + footer single-row fix
   =========================== */
.contact-info {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-info > a,
.contact-info > span {
  width: 100% !important;
  box-sizing: border-box;
  border-top: 0 !important;
  padding-top: 0 !important;
}

.contact-info > a[href^="mailto"] {
  display: block;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.contact-info > a[href^="tel"] {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 8px 0;
  border-bottom: none;
  white-space: nowrap;
}

.contact-info > a[href^="tel"] .contact-label {
  min-width: 56px;
  margin: 0;
  text-align: left;
}

.contact-info > span:last-child {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line) !important;
  color: var(--accent-2);
  text-align: right;
  direction: rtl;
  font-weight: 850;
}

.footer-grid {
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.footer-contact {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
  text-align: left;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer-contact .contact-label {
  min-width: 56px;
  margin: 0;
  text-align: left;
}

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

  .footer-contact {
    flex-wrap: wrap !important;
    justify-content: flex-start;
  }
}


/* ===========================
   Version 35 — Contact card final alignment cleanup
   =========================== */
.clean-contact-info {
  display: block !important;
  margin: 24px 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--line) !important;
}

.clean-contact-info .contact-row {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.clean-contact-info .email-row {
  padding-bottom: 14px !important;
  margin-bottom: 12px !important;
  border-bottom: 1px solid var(--line) !important;
}

.clean-contact-info .email-row a {
  display: block !important;
  direction: ltr !important;
  text-align: left !important;
  color: var(--accent) !important;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.clean-contact-info .phone-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  direction: ltr !important;
  text-align: left !important;
  white-space: nowrap !important;
  padding: 8px 0 !important;
  border: 0 !important;
}

.clean-contact-info .phone-row + .phone-row {
  margin-top: 2px !important;
}

.clean-contact-info .contact-label {
  min-width: 56px;
  margin: 0 !important;
  text-align: left !important;
  color: var(--navy-3, #164f86);
  font-weight: 700;
  direction: ltr !important;
}

.clean-contact-info .phone-link {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--accent-2) !important;
  font-weight: 850;
  text-decoration: none;
  direction: ltr !important;
}

.clean-contact-info .phone-value {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}

.clean-contact-info .address-row {
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--line) !important;
}

.clean-contact-info .address-row span {
  display: block;
  color: var(--accent-2);
  font-weight: 850;
  text-align: right !important;
  direction: rtl !important;
  line-height: 2;
}

.clean-footer-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  direction: ltr !important;
}

.clean-footer-contact a,
.clean-footer-contact span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.clean-footer-contact .contact-label {
  min-width: 56px;
  margin: 0 !important;
  text-align: left !important;
  direction: ltr !important;
}

.clean-footer-contact .phone-value {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  font-variant-numeric: tabular-nums;
}

.site-footer .footer-grid {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.site-footer .footer-brand,
.site-footer .footer-grid > p {
  flex: 0 0 auto;
}

.site-footer .clean-footer-contact {
  flex: 1 1 auto;
}

@media (max-width: 1080px) {
  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .clean-footer-contact {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}


/* ===========================
   Version 36 — Contact separator cleanup + tighter footer spacing
   =========================== */
/* Hard reset for nested elements inside the rebuilt contact block so old generic rules
   on .contact-info a / span do not create stray separator lines anymore. */
.clean-contact-info a,
.clean-contact-info span,
.clean-contact-info bdi {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.clean-contact-info {
  display: block !important;
  margin: 24px 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--line) !important;
}

.clean-contact-info .contact-row {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.clean-contact-info .email-row {
  padding-bottom: 14px !important;
  margin-bottom: 12px !important;
  border-bottom: 1px solid var(--line) !important;
}

.clean-contact-info .phone-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  direction: ltr !important;
  text-align: left !important;
  white-space: nowrap !important;
  padding: 8px 0 !important;
}

.clean-contact-info .phone-row + .phone-row {
  margin-top: 2px !important;
}

.clean-contact-info .phone-row .contact-label {
  display: inline-block !important;
  min-width: 52px !important;
  flex: 0 0 52px !important;
  text-align: left !important;
  color: var(--navy-3, #164f86) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}

.clean-contact-info .phone-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  color: var(--accent-2) !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

.clean-contact-info .phone-value {
  display: inline-block !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0 !important;
}

.clean-contact-info .address-row {
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--line) !important;
}

.clean-contact-info .address-row span {
  display: block !important;
  color: var(--accent-2) !important;
  font-weight: 850 !important;
  text-align: right !important;
  direction: rtl !important;
  line-height: 2 !important;
}

/* Footer: reduce distance between labels and numbers and keep compact one-line layout */
.clean-footer-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  direction: ltr !important;
}

.clean-footer-contact a,
.clean-footer-contact > span,
.clean-footer-contact .contact-label,
.clean-footer-contact .phone-value {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.clean-footer-contact a,
.clean-footer-contact > span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

.clean-footer-contact .contact-label {
  min-width: auto !important;
  flex: 0 0 auto !important;
  text-align: left !important;
  direction: ltr !important;
  font-weight: 700 !important;
}

.clean-footer-contact .phone-value {
  display: inline-block !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  font-variant-numeric: tabular-nums;
}

.site-footer .footer-grid {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.site-footer .footer-brand,
.site-footer .footer-grid > p {
  flex: 0 0 auto;
}

.site-footer .clean-footer-contact {
  flex: 1 1 auto;
}

@media (max-width: 1080px) {
  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .clean-footer-contact {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}
