:root {
  --navy: #152238;
  --navy-light: #1e3354;
  --gold: #c4a35a;
  --gold-hover: #d4b76e;
  --cream: #f7f5f0;
  --white: #ffffff;
  --text: #2c3440;
  --text-muted: #5c6672;
  --shadow: 0 18px 50px rgba(21, 34, 56, 0.14);
  --radius: 14px;
  --transition: 0.25s ease;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-hebrew: "Segoe UI", "Arial Hebrew", "David", sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 3.5rem);
  --content-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

html[lang="he"] body {
  font-family: var(--font-hebrew);
}

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

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

.container,
.header-inner,
.footer-inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Header */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(21, 34, 56, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header-email {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color var(--transition);
}

.header-email:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  padding-block: 7rem 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(21, 34, 56, 0.88) 0%, rgba(21, 34, 56, 0.55) 55%, rgba(21, 34, 56, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: 0;
  text-align: start;
}

html[dir="rtl"] .hero-media {
  transform: scaleX(-1);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.2);
  border: 1px solid rgba(196, 163, 90, 0.45);
  color: #f0e2bc;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
}

.hero p {
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
}

/* Sections */
section {
  padding-block: 5rem;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Stats */
.why-section {
  background: var(--navy);
  color: var(--white);
}

.why-section .section-head h2,
.why-section .section-head p {
  color: var(--white);
}

.why-section .section-head {
  max-width: none;
}

.why-section .section-head p {
  opacity: 0.82;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.stat-card span {
  font-size: 0.95rem;
  opacity: 0.88;
}

/* Interview */
.interview-section {
  background: linear-gradient(180deg, #eef2f7 0%, var(--cream) 100%);
}

.interview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--white);
  background:
    linear-gradient(rgba(21, 34, 56, 0.75), rgba(21, 34, 56, 0.85)),
    url("../images/Ofer.jpg") center / cover no-repeat;
}

.play-icon {
  width: 4rem;
  height: 4rem;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 163, 90, 0.92);
  color: var(--navy);
  font-size: 1.4rem;
}

.highlights {
  display: grid;
  gap: 0.9rem;
}

.highlight {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(21, 34, 56, 0.06);
}

.highlight q {
  display: block;
  font-style: italic;
  color: var(--navy);
}

.highlight cite {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* CTA */
.cta-section {
  padding-block: 4.5rem;
}

.cta-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-card h2 {
  margin: 0 0 0.5rem;
  color: var(--navy);
}

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

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-card .cta-email {
  border-color: var(--navy);
  color: var(--navy);
}

.cta-card .cta-email:hover {
  background: rgba(21, 34, 56, 0.08);
}

.linkedin-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-block: 1.4rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .interview-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    padding-block: 5.5rem 2.5rem;
  }

  .hero-media img {
    object-position: 58% top;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(21, 34, 56, 0.92) 0%, rgba(21, 34, 56, 0.45) 42%, rgba(21, 34, 56, 0.1) 100%);
  }

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

  .header-inner .btn-outline {
    display: none;
  }
}

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

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 70% top;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(21, 34, 56, 0.93) 0%, rgba(21, 34, 56, 0.5) 38%, rgba(21, 34, 56, 0.05) 100%);
  }

  section {
    padding-block: 3.5rem;
  }
}
