:root {
  --blue: #1f5aa6;
  --blue-dark: #092b5a;
  --red: #ef1b33;
  --ink: #101828;
  --muted: #667085;
  --line: #d8e0ec;
  --paper: #f6f8fc;
  --paper-strong: #edf2f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
  --soft-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 820px),
    var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 224, 236, 0.7);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(16px);
}

.brand img,
.brand-logo {
  display: block;
  width: 112px;
  max-width: 112px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--blue-dark);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
}

.header-cta {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 90, 166, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(590px, 74vh);
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.hero::before {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 1;
  width: 42%;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  content: "";
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.9) 67%, #ffffff),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-inline-start: auto;
  padding: 72px clamp(20px, 6vw, 76px) 88px;
  text-align: right;
  direction: rtl;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 900;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

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

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.26rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.button {
  padding: 13px 24px;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #c91025);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(239, 27, 51, 0.2);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.07);
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: -28px auto 0;
  border: 1px solid rgba(216, 224, 236, 0.72);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.signal-strip div {
  padding: 22px 22px;
  border-inline-start: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(31, 90, 166, 0.035), transparent),
    var(--white);
}

.signal-strip div:last-child {
  border-inline-start: 0;
}

.signal-strip strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 4vw, 34px);
}

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

.section-heading p,
.service-card p,
.why-list p,
.process-grid p,
.profile-copy p,
.trust-copy p,
.employee-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  min-height: 238px;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  content: "";
}

.service-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
}

.why-band {
  background:
    linear-gradient(180deg, #ffffff, #f8fafd);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 4vw, 34px);
  align-items: center;
}

.profile-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.profile-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list div {
  padding: 26px;
  border-right: 5px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

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

.process-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.05);
}

.process-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 900;
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

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

.trust-grid div {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.22rem;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1120px;
  margin: -48px auto 0;
  padding: 0 clamp(20px, 4vw, 34px) clamp(60px, 7vw, 86px);
}

.client-strip span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
}

.employee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(135deg, var(--blue-dark), #061a36);
  color: var(--white);
}

.employee-copy h2 {
  color: var(--white);
}

.employee-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.employee-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.employee-panel span,
.employee-panel a {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
}

.employee-panel a {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 6vw, 72px);
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 27, 51, 0.16), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #041023);
  color: var(--white);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--soft-shadow);
}

.contact-panel span,
.contact-panel a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.contact-panel a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #c91025);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 72px);
  background: #041023;
  color: rgba(255, 255, 255, 0.74);
}

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

  .site-nav {
    display: none;
  }

  .signal-strip,
  .service-grid,
  .profile-section,
  .why-layout,
  .process-grid,
  .trust-layout,
  .trust-grid,
  .employee-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .signal-strip div {
    border-inline-start: 0;
    border-block-end: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    min-height: 68px;
  }

  .brand img,
  .brand-logo {
    width: 110px;
    max-width: 110px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.98)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.9));
  }

  .hero-content {
    padding-block: 48px 64px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
