@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --ink: #1a1a26;
  --muted: #5c5c6e;
  --paper: #fafafc;
  --surface: #ffffff;
  --line: #e8e8f0;
  --brand: #1a1a26;
  --brand-soft: #3a3a4d;
  --teal: #1a1a26;
  --teal-dark: #1a1a26;
  --accent: #ff4d2e;
  --accent-hover: #e84428;
  --accent-soft: #fff1ed;
  --accent-2: #7b5cff;
  --accent-2-soft: #f0ecff;
  --blue-electric: #7b5cff;
  --blue-soft: #f0ecff;
  --coral: #ff4d2e;
  --sage: #f4f4f8;
  --gold-soft: #fff1ed;
  --gold-bright: #ffb899;
  --gold-deep: #ff4d2e;
  --white: #ffffff;
  --shadow: 0 16px 48px rgba(21, 21, 31, 0.07);
  --shadow-lg: 0 28px 72px rgba(21, 21, 31, 0.11);
  --shadow-accent: 0 18px 44px rgba(255, 77, 46, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --font-sans: "Rubik", "Heebo", "Noto Sans Hebrew", system-ui, sans-serif;
  --text-base: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-lg: 1.125rem;
  --leading-tight: 1.14;
  --leading-snug: 1.32;
  --leading-body: 1.72;
  --leading-relaxed: 1.82;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(123, 92, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 77, 46, 0.06), transparent 50%),
    var(--paper);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

strong,
b {
  font-weight: var(--fw-semibold);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 40px rgba(21, 21, 31, 0.06);
}

img,
video {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

.brand,
.main-nav,
.hero-actions,
.contact-details {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 12px;
  font-weight: var(--fw-semibold);
  font-size: 1.08rem;
  line-height: 0;
  align-self: center;
}

.brand-logo {
  width: auto;
  max-width: clamp(108px, 14vw, 148px);
  height: clamp(52px, 7.5vw, 68px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.main-nav {
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.main-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border-bottom: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 76px) 84px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.98) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  color: var(--ink);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: var(--leading-snug);
  font-weight: var(--fw-semibold);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.35;
  font-weight: var(--fw-semibold);
}

p {
  line-height: var(--leading-body);
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: var(--leading-relaxed);
  font-weight: var(--fw-regular);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button:hover {
  transform: translateY(-4px);
}

.primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow-accent);
}

.primary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a5c 52%, var(--accent-2) 100%);
  box-shadow: 0 22px 50px rgba(255, 77, 46, 0.28);
}

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

.secondary:hover {
  border-color: rgba(255, 77, 46, 0.35);
  color: var(--accent);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.trust-strip div {
  padding: 28px 24px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
  transition: transform 0.22s ease, background 0.22s ease;
}

.trust-strip div:hover {
  background: var(--accent-soft);
  transform: translateY(-4px);
}

.trust-strip div:first-child {
  border-inline-start: 0;
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: var(--leading-tight);
  font-weight: var(--fw-bold);
}

.trust-strip span {
  color: var(--muted);
  font-weight: var(--fw-regular);
  line-height: var(--leading-snug);
}

.section,
.contact-section {
  padding: 92px clamp(20px, 6vw, 76px);
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 106px clamp(20px, 6vw, 76px) 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(123, 92, 255, 0.09), transparent 34%),
    radial-gradient(circle at 10% 22%, rgba(255, 77, 46, 0.08), transparent 30%),
    linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
}

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

.page-hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  animation: heroMediaFloat 7s ease-in-out infinite;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 77, 46, 0.1), transparent 45%),
    linear-gradient(0deg, rgba(21, 21, 31, 0.12), transparent 48%);
  pointer-events: none;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.digital-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 77, 46, 0.1), transparent 36%),
    radial-gradient(circle at 82% 16%, rgba(123, 92, 255, 0.1), transparent 34%),
    linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  color: var(--ink);
}

.digital-hero .eyebrow {
  color: var(--accent);
  background: var(--accent-soft);
}

.digital-hero .page-hero-copy p,
.digital-hero > p {
  color: var(--muted);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow),
.page-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 112px clamp(20px, 6vw, 76px) 78px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 77, 46, 0.08), transparent 30%),
    linear-gradient(135deg, var(--surface), var(--paper));
}

.about-hero-clean {
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 64px;
}

.about-hero-copy {
  max-width: 860px;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.about-hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.9;
  object-fit: cover;
  object-position: center 14%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.about-stats div {
  padding: 30px clamp(18px, 4vw, 42px);
  background: var(--white);
  text-align: center;
}

.about-stats strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: var(--leading-tight);
  font-weight: var(--fw-semibold);
}

.about-stats span {
  color: var(--muted);
  font-weight: var(--fw-semibold);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.about-story p {
  color: var(--muted);
  font-size: 1.12rem;
}

.values-grid,
.people-grid {
  display: grid;
  gap: 18px;
}

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

.solutions-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(123, 92, 255, 0.06), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(255, 77, 46, 0.07), transparent 30%),
    linear-gradient(180deg, var(--surface), var(--paper));
}

.solutions-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solutions-values article {
  border-radius: var(--radius-lg);
  min-height: 250px;
}

.values-grid article,
.person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.values-grid article:hover,
.person-card:hover {
  border-color: rgba(255, 77, 46, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.values-grid span,
.person-card span {
  color: var(--accent);
  font-weight: var(--fw-bold);
}

.values-grid p,
.person-card p {
  color: var(--muted);
}

.person-role {
  display: block;
  margin: -2px 0 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
}

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

.team-bottom {
  background: #ffffff;
}

.full-team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.person-card {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  padding: 16px;
}

.person-card img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center 17%;
  border-radius: 18px 8px 18px 8px;
}

.featured-person {
  padding: 16px;
  overflow: hidden;
}

.featured-person div {
  padding: 0;
}

.full-team-grid .person-card:not(.featured-person) img {
  padding: 12px;
  background: var(--paper);
}

.full-team-grid .person-card img[src$=".jpeg"],
.full-team-grid .person-card img[src$=".png"] {
  padding: 0;
  background: transparent;
}

.full-team-grid .person-card:not(.featured-person) div {
  padding-top: 2px;
}

.person-card h3 {
  margin: 0 0 4px;
  font-size: 1.16rem;
}

.person-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: var(--leading-snug);
}

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

.services-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.article-card {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-card span {
  color: var(--coral);
  font-weight: var(--fw-semibold);
}

.article-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.article-card p {
  color: var(--muted);
}

.article-card a {
  align-self: end;
  color: var(--accent);
  font-weight: var(--fw-semibold);
}

.link-grid,
.roles-grid,
.logo-grid {
  display: grid;
  gap: 18px;
}

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

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

.role-card {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.role-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 1.25rem;
}

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

.careers-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 77, 46, 0.08), transparent 30%),
    linear-gradient(135deg, var(--surface), var(--paper));
}

.career-roles {
  align-items: stretch;
}

.career-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: 126px clamp(20px, 6vw, 76px) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(123, 92, 255, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(255, 77, 46, 0.12), transparent 30%),
    linear-gradient(135deg, var(--surface) 0%, var(--paper) 100%);
}

.career-hero::before {
  content: "";
  position: absolute;
  inset: auto 7% 12% auto;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(255, 77, 46, 0.14);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.career-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 78px;
  background: var(--white);
  clip-path: polygon(0 46%, 18% 70%, 38% 44%, 62% 68%, 84% 42%, 100% 62%, 100% 100%, 0 100%);
}

.career-hero-copy,
.career-visual {
  position: relative;
  z-index: 1;
}

.career-hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 93, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(13, 17, 56, 0.16);
  transform: rotate(-1.5deg);
  animation: imageFloat 6.5s ease-in-out infinite;
}

.career-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  object-position: center;
}

.career-hero-copy {
  max-width: 780px;
  animation: copySlideIn 0.9s ease both;
}

.career-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.22rem;
}

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

.career-visual {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 32, 93, 0.1);
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(13, 17, 56, 0.13);
}

.career-badge {
  justify-self: start;
  padding: 10px 16px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-weight: var(--fw-bold);
}

.career-panel {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.career-panel span,
.job-cube span,
.career-steps span {
  color: var(--gold-deep);
  font-weight: var(--fw-bold);
}

.career-panel strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.career-panel.accent {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-2-soft));
  color: var(--ink);
}

.career-panel.accent span,
.career-panel.accent strong {
  color: var(--ink);
}

.career-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(20px, 6vw, 76px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--surface) 100%);
  border-block: 1px solid var(--line);
}

.career-strip div {
  padding: 24px clamp(18px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.career-strip div:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.career-strip strong {
  display: block;
  color: var(--accent);
  font-size: 1.45rem;
}

.career-strip span {
  color: var(--muted);
  font-weight: var(--fw-semibold);
}

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

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

.job-cube {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.job-cube h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
}

.job-cube p {
  color: var(--muted);
}

.job-cube a {
  align-self: end;
  justify-self: start;
  color: var(--accent);
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--accent);
}

.career-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 77, 46, 0.08), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(123, 92, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--surface), var(--paper));
}

.career-flow .section-heading,
.career-steps {
  position: relative;
  z-index: 1;
}

.career-steps {
  display: grid;
  grid-template-columns: minmax(280px, 760px);
  justify-content: center;
  gap: 10px;
  align-items: stretch;
  padding-top: 24px;
  list-style: none;
  margin: 0;
  padding-inline: 0;
}

.career-steps--vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  margin-inline: auto;
  padding-top: 8px;
}

.career-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 0 0 28px;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: right;
}

.career-step:last-child {
  padding-bottom: 0;
}

.career-step-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.career-step-marker::after {
  content: "";
  position: absolute;
  top: 36px;
  bottom: -28px;
  right: 50%;
  width: 2px;
  transform: translateX(50%);
  background: linear-gradient(180deg, var(--accent), var(--accent-2) 70%, rgba(123, 92, 255, 0.15));
  opacity: 0.55;
}

.career-step:last-child .career-step-marker::after {
  display: none;
}

.career-step-marker span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(255, 77, 46, 0.22);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.career-step-body h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: var(--fw-semibold);
}

.career-step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: var(--leading-snug);
}

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

.services-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(123, 92, 255, 0.07), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(255, 77, 46, 0.08), transparent 32%),
    linear-gradient(180deg, var(--surface), var(--paper));
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 70px auto auto 8%;
  width: clamp(160px, 18vw, 260px);
  height: clamp(160px, 18vw, 260px);
  border: 28px solid rgba(255, 77, 46, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.services-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-modern-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-modern-card::before {
  content: "";
  position: absolute;
  inset: auto -42px -50px auto;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.14), rgba(255, 77, 46, 0.18));
  border-radius: 50%;
}

.service-modern-card:nth-child(even) {
  margin-top: 34px;
}

.service-modern-card:hover {
  border-color: rgba(255, 77, 46, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.service-number {
  position: absolute;
  inset: 20px auto auto 22px;
  color: rgba(21, 21, 31, 0.06);
  font-size: 4.2rem;
  line-height: 1;
  font-weight: var(--fw-light);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-accent);
}

.service-modern-card h2 {
  position: relative;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

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

.service-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.service-tags span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
}

.service-modern-card a {
  position: relative;
  justify-self: start;
  color: var(--accent);
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--accent);
}

.wide-service {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wide-service span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-weight: var(--fw-bold);
}

.wide-service h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.wide-service p {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.12rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--surface);
}

.sellzoll-feature {
  margin-inline: clamp(20px, 6vw, 76px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(123, 92, 255, 0.08), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255, 77, 46, 0.08), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow-lg);
}

.sellzoll-feature .split-feature-copy a:not(.button) {
  color: var(--accent);
  font-weight: var(--fw-semibold);
  border-bottom: 1px solid rgba(255, 77, 46, 0.35);
}

.split-feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  object-position: center;
}

.split-feature-copy {
  max-width: 760px;
}

.split-feature-copy p {
  color: var(--muted);
  font-size: 1.12rem;
}

.feature-checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.feature-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: var(--fw-bold);
}

.feature-checks li::before {
  content: "✔";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--teal-dark);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.92rem;
}

.cta-band {
  display: grid;
  justify-items: start;
  gap: 16px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 77, 46, 0.1), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(123, 92, 255, 0.1), transparent 32%),
    linear-gradient(135deg, var(--surface) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band .hero-actions {
  margin-top: 4px;
}

.contact-details-stack {
  display: grid;
  align-items: stretch;
}

.contact-details-stack span {
  padding: 10px 14px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 32, 93, 0.12);
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
}

.career-step:hover .career-step-marker span {
  transform: scale(1.06);
}

.career-step-marker span {
  transition: transform 0.2s ease;
}

.career-hr-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  max-width: 920px;
  margin: 34px auto 0;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 32, 93, 0.08);
  border-radius: 34px 14px 34px 14px !important;
  box-shadow: 0 24px 70px rgba(13, 17, 56, 0.13);
  text-align: right !important;
}

.career-hr-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.career-hr-card div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.career-hr-card span {
  margin-inline: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) rotate(0.4deg);
  transition: opacity 0.72s ease var(--reveal-delay, 0s), transform 0.72s ease var(--reveal-delay, 0s);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.is-visible:is(
    .service-card,
    .service-modern-card,
    .values-grid article,
    .person-card,
    .review-card,
    .article-card,
    .client-logo,
    .manager-card,
    .employee-float-card,
    .employee-media-block
  ) {
  animation: softContentFloat 7s ease-in-out var(--float-delay, 0s) infinite;
}

@keyframes floatStep {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0);
  }
  50% {
    transform: rotate(-0.4deg) translateY(-12px);
  }
}

@keyframes copySlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroMediaFloat {
  0%,
  100% {
    transform: rotate(-1.6deg) translateY(0);
    border-radius: 34% 66% 32% 68% / 54% 34% 66% 46%;
  }
  50% {
    transform: rotate(-0.4deg) translateY(-12px);
    border-radius: 62% 38% 58% 42% / 38% 58% 42% 62%;
  }
}

@keyframes softContentFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

.employee-intro-floats {
  padding-top: 48px;
  padding-bottom: 24px;
}

.employee-float-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  padding-inline: clamp(20px, 6vw, 76px);
}

.employee-float-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.employee-float-grid--four .employee-float-card--lift {
  transform: translateY(-14px) rotate(0.35deg);
}

.employee-float-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 26px) clamp(26px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-0.8deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.employee-float-card:nth-child(1) {
  --float-delay: 0s;
}

.employee-float-card:nth-child(3) {
  --float-delay: 1.1s;
  transform: rotate(0.65deg);
}

.employee-float-card--lift {
  --float-delay: 0.55s;
  transform: translateY(-22px) rotate(0.35deg);
}

.employee-float-card:hover {
  border-color: rgba(255, 77, 46, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px) rotate(0deg);
}

.employee-float-card--lift:hover {
  transform: translateY(-30px) rotate(0deg);
}

.employee-float-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
}

.employee-float-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
}

.employee-float-card p {
  margin: 0;
  color: var(--muted);
  line-height: var(--leading-relaxed);
}

.employee-media-feed {
  padding-top: 36px;
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--white) 0%, #f7fbff 42%, var(--paper) 100%);
}

.employee-gallery {
  padding: 84px 0 0;
  background: var(--white);
}

.employee-gallery-heading {
  max-width: 860px;
  padding: 0 clamp(20px, 6vw, 76px) 30px;
}

.employee-media-hint {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.employee-media-hint code {
  padding: 2px 7px;
  color: var(--teal-dark);
  background: rgba(232, 242, 255, 0.9);
  border-radius: 6px;
  font-size: 0.86em;
}

.employee-media-stack {
  display: grid;
  gap: clamp(28px, 4.5vw, 52px);
  max-width: 960px;
  margin: 0 auto;
  padding: 8px clamp(20px, 6vw, 76px) clamp(72px, 8vw, 104px);
}

.employee-media-block {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(151, 127, 10, 0.2);
  border-radius: 22px;
  box-shadow: 0 28px 76px rgba(13, 17, 56, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.employee-media-block:nth-child(odd) {
  --float-delay: 0.2s;
  margin-inline: 0 auto 0;
  max-width: min(100%, 920px);
  transform: rotate(-0.45deg);
}

.employee-media-block:nth-child(even) {
  --float-delay: 0.75s;
  margin-inline: auto 0 0;
  max-width: min(100%, 880px);
  transform: rotate(0.4deg);
}

.employee-media-block:hover {
  box-shadow: 0 34px 90px rgba(13, 17, 56, 0.16);
  transform: translateY(-6px) rotate(0deg);
}

.employee-media-block img,
.employee-media-block video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--line);
}

.employee-media-block.is-video video {
  min-height: 220px;
}

.employee-media-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 16px 20px 20px;
}

.employee-media-tag {
  padding: 6px 12px;
  color: var(--teal-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
}

.employee-media-meta p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.employee-slider {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 64vw, 760px);
  overflow: hidden;
  background: var(--line);
}

.employee-slide-track,
.employee-slide {
  position: absolute;
  inset: 0;
}

.employee-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.employee-slide.is-active {
  opacity: 1;
}

.employee-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(13, 17, 56, 0.92);
  transform: translateY(-50%) scale(1.05);
}

.slider-next {
  right: 22px;
}

.slider-prev {
  left: 22px;
}

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

.link-card,
.logo-grid div,
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.logo-grid div:hover {
  border-color: rgba(255, 77, 46, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.link-card {
  display: grid;
  gap: 8px;
}

.link-card strong,
.logo-grid div {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
}

.link-card span,
.info-panel,
.check-list {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.check-list li::before {
  content: "✓";
  margin-left: 8px;
  color: var(--teal);
  font-weight: var(--fw-semibold);
}

.service-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.service-card:hover,
.review-card:hover,
.manager-card:hover,
.job-cube:hover {
  border-color: rgba(255, 77, 46, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.executive-card {
  overflow: hidden;
  padding: 0;
}

.executive-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center 16%;
}

.executive-card .icon,
.executive-card h3,
.executive-card p {
  margin-inline: 26px;
}

.executive-card .icon {
  margin-top: 22px;
}

.executive-card p {
  margin-bottom: 26px;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 13px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.service-card h3,
.process-list h3,
.process-bubble h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.service-card p,
.process-list p,
.review-card figcaption,
.contact-copy p {
  color: var(--muted);
  line-height: var(--leading-relaxed);
}

.process-band {
  background: linear-gradient(180deg, var(--surface) 0%, var(--sage) 100%);
}

.process-list,
.process-bubbles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 16px;
  min-height: 170px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.process-list span {
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-weight: var(--fw-semibold);
}

.process-bubble {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px) clamp(20px, 2.8vw, 28px) clamp(26px, 3.2vw, 32px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(123, 92, 255, 0.12);
  border-radius: 999px 999px var(--radius-xl) var(--radius-xl);
  box-shadow:
    0 18px 40px rgba(21, 21, 31, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-bubble:hover {
  transform: translateY(-8px);
  box-shadow:
    0 26px 52px rgba(255, 77, 46, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.process-bubble-visual {
  display: grid;
  place-items: center;
  width: clamp(132px, 18vw, 168px);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 77, 46, 0.08), rgba(123, 92, 255, 0.1));
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(123, 92, 255, 0.14);
}

.process-bubble-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.process-bubble-body {
  display: grid;
  gap: 10px;
}

.process-bubble-step {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
}

.process-bubble h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.process-bubble p {
  margin: 0;
  color: var(--muted);
  line-height: var(--leading-relaxed);
  font-size: 0.98rem;
}

.leadership-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #ffffff;
}

.leader-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.leader-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center 15%;
}

.leader-copy {
  max-width: 760px;
}

.leader-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.review-card {
  margin: 0;
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: var(--leading-relaxed);
  font-weight: var(--fw-regular);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 77, 46, 0.09), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(123, 92, 255, 0.08), transparent 30%),
    linear-gradient(135deg, var(--surface) 0%, var(--paper) 100%);
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: auto clamp(24px, 8vw, 120px) 36px auto;
  width: clamp(180px, 24vw, 360px);
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-pill);
  opacity: 0.85;
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy .eyebrow,
.contact-copy p {
  color: var(--muted);
}

.contact-copy h2 {
  max-width: 720px;
  color: var(--ink);
}

.contact-copy {
  padding: clamp(14px, 2vw, 22px);
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-highlights span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-highlights span:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-4px);
}

.contact-details {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  padding: 10px 14px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 32, 93, 0.12);
  border-radius: 999px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 30px);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

#apply {
  scroll-margin-top: 96px;
}

.apply-form-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 48px);
  background:
    radial-gradient(circle at 8% 12%, rgba(123, 92, 255, 0.06), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(255, 77, 46, 0.08), transparent 32%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.apply-form-shell {
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

.apply-form-intro {
  text-align: center;
}

.apply-form-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  color: var(--ink);
  line-height: 1.15;
}

.apply-form-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.apply-field {
  display: grid;
  gap: 8px;
  margin: 0;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

.apply-field span {
  font-size: 0.95rem;
}

.apply-field em {
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--muted);
  font-size: 0.88rem;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.apply-field select {
  appearance: none;
  padding-inline-start: 16px;
  padding-inline-end: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    left 18px center,
    left 12px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.apply-field textarea {
  resize: vertical;
  min-height: 88px;
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.12);
}

.apply-field--optional textarea {
  background: rgba(255, 255, 255, 0.9);
}

.apply-form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border-radius: var(--radius-pill);
}

.apply-form .form-note {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--teal-dark);
  font-weight: var(--fw-semibold);
}

.compact-contact {
  padding-block: clamp(52px, 7vw, 78px);
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.52fr);
}

.compact-contact .contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.compact-contact .contact-form {
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
}

.compact-contact textarea,
.compact-contact .contact-highlights {
  display: none;
}

.services-contact {
  background:
    radial-gradient(circle at 14% 20%, rgba(123, 92, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(255, 77, 46, 0.09), transparent 30%),
    linear-gradient(135deg, var(--surface) 0%, var(--paper) 100%);
}

.services-contact .contact-copy {
  color: var(--ink);
}

.services-contact .contact-copy .eyebrow {
  color: var(--accent);
}

.services-contact .contact-copy p {
  color: var(--muted);
}

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

.services-contact .contact-form {
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.services-contact .contact-form .primary {
  min-height: 56px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a5c 55%, var(--accent-2) 100%);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.form-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(151, 127, 10, 0.2);
}

.form-heading span {
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
}

.form-heading strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.1;
}

label {
  display: grid;
  gap: 8px;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 1px 2px rgba(21, 21, 31, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    left 18px center,
    left 12px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 77, 46, 0.14), var(--shadow);
  transform: translateY(-2px);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: var(--fw-semibold);
}

.client-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  letter-spacing: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
}

.brand-pelephone {
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 132, 196, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #f3f9ff);
}

.brand-yes {
  background:
    radial-gradient(circle at 76% 24%, rgba(77, 195, 233, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f2fcff);
}

.brand-bezeq {
  background:
    radial-gradient(circle at 20% 76%, rgba(21, 88, 181, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f6ff);
}

.client-logo img {
  width: 100%;
  max-width: 190px;
  height: 58px;
  object-fit: contain;
  display: block;
}

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

.client-logo--text {
  padding: 18px 14px;
}

.client-name {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: var(--fw-bold);
  color: var(--ink);
  line-height: 1.25;
}

.brand-pai {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 46, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff, #fff6f3);
}

.brand-betito {
  background:
    radial-gradient(circle at 18% 78%, rgba(123, 92, 255, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff, #f6f3ff);
}

.center-setup {
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 92, 255, 0.06), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(255, 77, 46, 0.07), transparent 30%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.center-setup-copy {
  max-width: 820px;
}

.center-setup-copy h2 {
  margin-bottom: 18px;
}

.center-setup-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: var(--leading-relaxed);
}

.center-setup-copy p:last-child {
  margin-bottom: 0;
}

.center-flow-section {
  background: var(--surface);
}

.center-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.center-flow-step {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px 18px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.center-flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.center-flow-step:not(:last-child)::after {
  content: "←";
  position: absolute;
  top: 42px;
  left: -14px;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  pointer-events: none;
}

.center-flow-bubble {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-2-soft));
  box-shadow: 0 10px 24px rgba(123, 92, 255, 0.14);
}

.center-flow-bubble span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
}

.center-flow-step h3 {
  margin: 0;
  font-size: 1.08rem;
}

.center-flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: var(--leading-snug);
}

.center-partner-apply {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 77, 46, 0.06), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--surface));
  border-block: 1px solid var(--line);
}

.center-partner-shell {
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  gap: clamp(22px, 4vw, 32px);
}

.center-partner-intro {
  text-align: center;
}

.center-partner-intro h2 {
  margin-bottom: 10px;
}

.center-partner-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.center-partner-form {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

#center-partner {
  scroll-margin-top: 96px;
}

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

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

.manager-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.manager-photo {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--paper), var(--accent-soft));
}

.manager-photo img,
.manager-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 2.6;
}

.manager-photo img {
  display: block;
  object-fit: cover;
}

.manager-photo-placeholder {
  display: grid;
  place-items: center;
}

.manager-photo-placeholder span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--teal-dark);
  background: var(--coral);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
}

.manager-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.manager-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: var(--fw-semibold);
}

.site-footer--rich {
  display: block;
  padding: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(123, 92, 255, 0.06), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(255, 77, 46, 0.06), transparent 32%),
    linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
}

.footer-shell {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 72px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(160px, 0.75fr) minmax(160px, 0.75fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-link {
  display: inline-flex;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 148px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list a {
  color: var(--ink);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: var(--fw-bold);
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: var(--muted);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
  transform: translateX(-3px);
}

.footer-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.footer-field {
  display: grid;
  gap: 6px;
  margin: 0;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

.footer-field span {
  font-size: 0.9rem;
}

.footer-field input,
.footer-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.footer-field select {
  appearance: none;
  padding-inline-end: 28px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    left 4px center,
    left 0 center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.footer-field input::placeholder {
  color: var(--muted);
}

.footer-field input:focus,
.footer-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: none;
  transform: none;
  background: transparent;
}

.footer-form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a5c 100%);
  box-shadow: 0 12px 28px rgba(255, 77, 46, 0.28);
}

.footer-form .form-note {
  margin: 0;
  text-align: start;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(36px, 5vw, 52px);
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: #ffffff;
  background: #25d366;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  left: 74px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .employee-float-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .main-nav {
    position: fixed;
    top: 73px;
    inset-inline: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
  }

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

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

  .hero {
    min-height: 86vh;
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: var(--leading-tight);
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .trust-strip strong {
    font-size: 1.25rem;
  }

  .trust-strip span {
    font-size: 0.92rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.76) 45%, rgba(251, 250, 247, 0.98));
  }

  .trust-strip,
  .career-hero,
  .career-strip,
  .page-hero,
  .sellzoll-feature {
    margin-inline: 18px;
    padding: 24px 18px;
  }

  .page-hero,
  .about-hero,
  .career-hero,
  .split-feature,
  .leadership-section,
  .contact-section,
  .career-hero-photo {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 0 18px;
  }

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

  .split-feature,
  .about-stats,
  .about-story,
  .values-grid,
  .people-grid,
  .process-list,
  .process-bubbles,
  .review-grid,
  .article-grid,
  .contact-highlights,
  .link-grid,
  .roles-grid,
  .clients-logo-grid,
  .services-grid,
  .footer-grid,
  .full-team-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .whatsapp-float {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-width: 3px;
    transform: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.04);
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }

  .whatsapp-float span {
    display: none;
  }

  .center-flow {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .center-flow-step:not(:last-child)::after {
    content: "↓";
    top: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .job-cube-grid,
  .career-steps,
  .wide-service,
  .services-orbit,
  .manager-grid {
    grid-template-columns: 1fr;
  }

  .career-steps--vertical {
    max-width: 100%;
    padding-inline: 4px;
  }

  .career-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .career-step-marker span {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }

  .career-hr-card {
    grid-template-columns: 1fr;
  }

  .career-hr-card img {
    min-height: 260px;
  }

  .career-hero-image {
    transform: none;
    animation: none;
  }

  .page-hero-media {
    min-height: 260px;
    transform: none;
    animation: none;
    border-radius: 22px;
  }

  .service-modern-card:nth-child(even) {
    margin-top: 0;
  }

  .services-contact {
    background:
      radial-gradient(circle at 14% 14%, rgba(255, 77, 46, 0.12), transparent 30%),
      linear-gradient(180deg, var(--brand) 0%, var(--brand-soft) 34%, var(--paper) 34%, var(--surface) 100%);
  }

  .site-header {
    align-items: center;
  }

  .trust-strip div {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    max-width: 120px;
    height: 56px;
  }

  .hero,
  .section,
  .contact-section {
    padding-inline: 18px;
  }

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

  .split-feature,
  .about-stats,
  .about-story,
  .values-grid,
  .people-grid,
  .process-bubbles,
  .review-grid,
  .article-grid,
  .roles-grid,
  .link-grid,
  .clients-logo-grid,
  .career-strip,
  .contact-highlights,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    border-radius: 30px 12px 30px 12px;
  }

  .wide-service {
    gap: 14px;
  }

  .service-modern-card {
    min-height: auto;
    border-radius: 24px;
  }

  .full-team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-form-col {
    grid-column: 1 / -1;
  }

  .employee-gallery {
    padding-top: 58px;
  }

  .employee-float-grid,
  .employee-float-grid--four {
    grid-template-columns: 1fr;
  }

  .employee-float-card--lift {
    transform: rotate(0.35deg);
  }

  .employee-float-card--lift:hover {
    transform: translateY(-8px) rotate(0deg);
  }

  .employee-media-block:nth-child(odd),
  .employee-media-block:nth-child(even) {
    margin-inline: 0;
    max-width: 100%;
    transform: none;
  }

  .employee-slider {
    min-height: 430px;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .slider-next {
    right: 12px;
  }

  .slider-prev {
    left: 12px;
  }
}
