:root {
  --ink: #071724;
  --ink-soft: #203548;
  --navy: #092238;
  --blue: #0d6ea8;
  --teal: #13a6a3;
  --gold: #f4b84a;
  --coral: #f26f4d;
  --mist: #f5f8fa;
  --line: rgba(7, 23, 36, 0.14);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 23, 36, 0.18);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.hero {
  position: relative;
  min-height: 84svh;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 23, 36, 0.93) 0%, rgba(7, 23, 36, 0.74) 38%, rgba(7, 23, 36, 0.22) 72%),
    linear-gradient(180deg, rgba(7, 23, 36, 0.72) 0%, rgba(7, 23, 36, 0.18) 42%, rgba(7, 23, 36, 0.55) 100%);
}

.site-nav {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  object-fit: contain;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 1px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(7, 23, 36, 0.22);
}

.brand span {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links .nav-action {
  margin-left: 8px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.nav-links .nav-action::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero-content {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 76px 0 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.25rem, 11vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(244, 184, 74, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.46);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 35px rgba(244, 184, 74, 0.32);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  padding: 18px;
  background: rgba(7, 23, 36, 0.44);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-stats div:hover {
  background: rgba(7, 23, 36, 0.58);
  transform: translateY(-2px);
}

.hero-stats dt {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.signal-band {
  min-height: 12svh;
  display: grid;
  place-items: center;
  padding: 26px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), #0b4362 58%, #0d756f);
}

.signal-band p {
  width: min(980px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 750;
  text-align: center;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 72px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  background: var(--mist);
}

.section-split,
.section-head,
.contact-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
}

.intro-copy p,
.section-head p,
.contact-copy p {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 23, 36, 0.07);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(19, 166, 163, 0.45);
  box-shadow: 0 22px 48px rgba(7, 23, 36, 0.12);
  transform: translateY(-4px);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.card-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.model-section h2 {
  max-width: none;
  white-space: nowrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.timeline article {
  position: relative;
  padding-top: 42px;
  border-top: 2px solid var(--line);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.timeline article:hover {
  border-color: rgba(13, 110, 168, 0.46);
  transform: translateY(-3px);
}

.timeline span {
  position: absolute;
  top: -18px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.timeline article:hover span {
  background: var(--teal);
  transform: scale(1.06);
}

.timeline p {
  margin: 12px 0 0;
}

.israel-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.israel-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
}

.israel-panel h2,
.israel-panel h3 {
  color: var(--white);
}

.advantage-list {
  display: grid;
  gap: 18px;
}

.advantage-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.advantage-list article:hover {
  border-color: rgba(244, 184, 74, 0.44);
  transform: translateX(4px);
}

.advantage-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.proof-grid article {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #eef7f7;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.proof-grid article:hover {
  background: #e4f4f3;
  box-shadow: 0 14px 34px rgba(7, 23, 36, 0.08);
  transform: translateY(-3px);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--ink-soft);
}

.contact-section {
  align-items: stretch;
  padding-bottom: 82px;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 4px;
}

.contact-points article {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-points article:hover {
  border-color: rgba(13, 110, 168, 0.32);
  background: #f1f8fb;
  transform: translateX(4px);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points strong {
  font-size: 0.95rem;
}

.contact-points span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.email-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.inquiry-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.form-head span,
.form-head strong {
  display: block;
}

.form-head span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--ink);
  font-size: 1.15rem;
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 110, 168, 0.14);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.form-status.is-success {
  color: #0b6f52;
  font-weight: 800;
}

.form-status.is-error {
  color: #9c2f1c;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(19, 166, 163, 0.16), transparent 36%),
    var(--navy);
}

.footer-inner,
.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  padding: 54px 0 34px;
}

.footer-main p {
  max-width: 470px;
  margin: 18px 0;
}

.footer-email {
  color: var(--gold);
  font-weight: 850;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.84rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-notes p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  padding: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

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

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

  .section-split,
  .section-head,
  .contact-section,
  .proof-section,
  .israel-panel {
    grid-template-columns: 1fr;
  }

  .model-section h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 86svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .site-nav {
    width: min(calc(100% - 28px), var(--max));
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    background: rgba(7, 23, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links .nav-action {
    margin-left: 0;
    text-align: center;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding: 58px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .section,
  .section-muted,
  .israel-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-grid,
  .timeline,
  .proof-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .card-index {
    margin-bottom: 28px;
  }

  .inquiry-form {
    padding: 20px;
  }

  .form-head {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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