/* ==========================================================================
   Matzpen Theme - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #398BE6;
  --color-primary-dark: #2B6CB0;
  --color-secondary: #FA7114;
  --color-secondary-hover: #E5600A;
  --color-dark: #1B1A22;
  --color-text: #1B1A22;
  --color-text-light: #6E6C71;
  --color-text-muted: rgba(0, 0, 0, 0.6);
  --color-white: #FFFFFF;
  --color-bg-light: #F1F7FF;
  --color-bg-section: #F1F8FF;
  --color-peach: #FDDCCC;
  --color-peach-light: #FFD0BB;
  --color-border: #E5E7EB;

  /* Typography */
  --font-body: 'Heebo', sans-serif;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 7.5rem;

  /* Layout */
  --container-max: 75rem;
  --container-padding: 2.0625rem;
  --header-height: 5rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.08);
  --shadow-md: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.12);
  --shadow-card: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
}

/* --------------------------------------------------------------------------
   WordPress Admin Bar
   -------------------------------------------------------------------------- */
body.admin-bar {
  padding-top: calc(var(--header-height) + 2rem);
}

body.admin-bar .site-header {
  top: 2rem;
}

@media (max-width: 782px) {
  body.admin-bar {
    padding-top: calc(var(--header-height) + 2.875rem);
  }

  body.admin-bar .site-header {
    top: 2.875rem;
  }
}

/* --------------------------------------------------------------------------
   Base Elements
   -------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

/* Email links underlined */
a[href^="mailto:"] {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 0.125rem solid transparent;
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.9375rem rgba(250, 113, 20, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
}

.btn--lg {
  padding: 0.875rem 2.5rem;
  font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 37.5rem;
  margin: var(--space-md) auto 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  transition: box-shadow var(--transition-base);
  height: var(--header-height);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: unset;
}

/* ── Header Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo__icon {
  flex-shrink: 0;
}

.site-logo__icon img {
  height: 3.4375rem;
  width: auto;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__title {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.3;
}

.site-logo__subtitle {
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  line-height: 1.4;
}

/* ── Header Actions ── */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-header__cta .btn {
  font-size: 1rem;
  padding: 0.625rem 1.5rem;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: var(--space-4xl) 0;
}

.section--light {
  background-color: var(--color-bg-light);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg-light);
  padding: var(--space-3xl) 0 0;
}

/* ── Footer Logo ── */
.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-bottom: 1rem;
}

.site-footer__logo-icon {
  flex-shrink: 0;
}

.site-footer__logo-icon img {
  width: 20rem;
  height: auto;
}

.site-footer__logo-text {
  display: flex;
  flex-direction: column;
}

.site-footer__logo-title {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.3;
}

.site-footer__logo-subtitle {
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  line-height: 1.5;
}

/* ── Footer Bottom Bar ── */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  border-top: 0.0625rem solid var(--color-border);
  gap: var(--space-lg);
}

.site-footer__copyright {
  font-size: 0.875rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  opacity: 1;
  color: var(--color-primary);
}

.site-footer__credit {
  font-size: 0.875rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.site-footer__credit a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.site-footer__credit a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {
  :root {
    --container-padding: 1.5rem;
    --header-height: 4.375rem;
  }

  .site-logo__icon img {
    height: 2.75rem;
  }
}

/* Mobile */
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
    --container-padding: 1rem;
  }

  /* Header Mobile - no hamburger, just shrink */
  .site-logo__icon img {
    height: 2.5rem;
  }

  .site-logo__title {
    font-size: 0.9375rem;
  }

  .site-logo__subtitle {
    font-size: 0.6875rem;
  }

  .site-header__cta .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: var(--space-2xl) 0 0;
  }

  .site-footer__logo-icon img {
    width: 3rem;
  }

  .site-footer__logo-title {
    font-size: 0.875rem;
  }

  .site-footer__logo-subtitle {
    font-size: 0.75rem;
  }

  .site-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: unset;
  }

  .site-footer__copyright,
  .site-footer__nav,
  .site-footer__credit {
    width: auto;
    order: 2;
  }

  .site-footer__nav {
    gap: var(--space-md);
    order: 1;
    flex: 0 0 100%;
    margin-bottom: 1rem;
    justify-content: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
*:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

section .container {
  max-width: unset;
}

.section--steps .container {
  max-width: var(--container-max);
}

/* ==========================================================================
   Section: Hero Banner
   ========================================================================== */
.section--hero-banner {
  padding: 0;
  background: transparent;
}

.hero-banner__content {
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Heading ── */
.hero-banner__heading {
  font-size: 2.875rem;
  /* 70px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.2;
  color: var(--color-white);
  /* margin-bottom: var(--space-xl); */
}

/* ── Description ── */
.hero-banner__description {
  font-size: 1.125rem;
  /* 22px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.5;
  color: var(--color-white);
  max-width: 69rem;
  margin-bottom: 1.5rem;
}

.hero-banner__description p {
  margin: 0;
}

/* ── CTA area ── */
.hero-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-banner__small-text {
  font-size: 1rem;
  /* 18px */
  font-weight: 400;
  /* 500 */
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.hero-banner__cta .btn--primary {
  min-width: 6.5rem;
  font-size: 1rem;
  /* 20px */
  font-weight: var(--fw-medium);
  /* 500 */
  padding: 0.75rem 2.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {
  .hero-banner__content {
    padding: var(--space-4xl) var(--space-2xl) var(--space-2xl);
  }

  .hero-banner__heading {
    font-size: 3.25rem;
    /* ~52px */
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .hero-banner__content {
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  }

  .hero-banner__heading {
    font-size: 2rem;
    /* 40px */
    margin-bottom: 0.5rem;
  }

  .hero-banner__description {
    font-size: 1.125rem;
    /* 18px */
    margin-bottom: var(--space-xl);
  }

  .hero-banner__small-text {
    font-size: 1.0625rem;
    /* 17px */
    font-weight: var(--fw-bold);
  }

  .hero-banner__cta .btn--primary {
    width: 100%;
    max-width: 18.75rem;
    font-size: 1.25rem;
    /* 20px */
    padding: 0.875rem 2rem;
  }
}

/* ==========================================================================
   Section: Logos Strip
   ========================================================================== */
.section--logos-strip {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
}

.logos-strip__heading {
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ── Swiper wrapper ── */
.logos-strip__slider {
  position: relative;
  overflow: hidden;
}

/* ── Gradient fades ── */
.logos-strip__slider::before,
.logos-strip__slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12.5rem;
  z-index: 2;
  pointer-events: none;
}

.logos-strip__slider::before {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-strip__slider::after {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* ── Slides ── */
.logos-strip__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.logos-strip__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0 var(--space-xl);
}

.logos-strip__slide img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-base), opacity var(--transition-base);
}

.logos-strip__slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {

  .logos-strip__slider::before,
  .logos-strip__slider::after {
    width: 6.25rem;
  }

  .logos-strip__slide img {
    height: 2rem;
  }

  .logos-strip__slide {
    padding: 0 var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .section--logos-strip {
    padding: var(--space-lg) 0;
  }

  .logos-strip__slider::before,
  .logos-strip__slider::after {
    width: 3.75rem;
  }

  .logos-strip__slide img {
    height: 1.625rem;
  }

  .logos-strip__slide {
    padding: 0 var(--space-md);
  }
}

.section--logos-strip .container {
  max-width: var(--container-max);

}

/* ==========================================================================
   Section: Steps
   ========================================================================== */
.section--steps {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.section--steps .container {
  max-width: var(--container-max);
}

/* ── Heading ── */
.steps__heading {
  font-size: 3.5rem;
  /* 56px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ── Description ── */
.steps__description {
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1em;
}

/* ── Items grid ── */
.steps__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  margin-bottom: 1rem;
  /* padding: 0 2rem; */
}

/* ── Single step ── */
.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ── Timeline lines ── */

/* ::before — goes RIGHT from circle center */
.steps__item::before {
  content: '';
  position: absolute;
  top: 2rem;
  height: 0.0625rem;
  /* 1px */
  background: rgba(179, 179, 179, 0.84);
  left: 50%;
  right: calc(-1 * var(--space-xl) / 2);
  z-index: 1;
}

/* ::after — goes LEFT from circle center */
.steps__item::after {
  content: '';
  position: absolute;
  top: 2rem;
  height: 0.0625rem;
  /* 1px */
  background: rgba(179, 179, 179, 0.84);
  right: 50%;
  left: calc(-1 * var(--space-xl) / 2);
  z-index: 1;
}

/* First item (step 1, rightmost in RTL) — NO ::before, ::after is ORANGE */
.steps__item:first-child::before {
  display: none;
}

.steps__item:first-child::after {
  height: 0.125rem;
  /* 2px */
  background: #FD6F17;
  z-index: 2;
}

/* Last item (step 3, leftmost in RTL) — no ::after */
.steps__item:last-child::after {
  display: none;
}

/* ── Number circle — double ring ── */
.steps__number {
  position: relative;
  z-index: 3;
  margin-bottom: -0.9rem;
}

.steps__number-outer {
  width: 4rem;
  /* 64px */
  height: 4rem;
  /* 64px */
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__number-inner {
  width: 3.125rem;
  /* 50px */
  height: 3.125rem;
  /* 50px */
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__number-inner span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  /* 24px */
  font-weight: var(--fw-regular);
  /* 400 */
  color: var(--color-text);
  line-height: 1;
}

/* ── Card ── */
.steps__card {
  border-radius: 2rem;
  /* 32px */
  background-color: #F1F8FF;
  /* padding-top: 2rem; */
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Card image ── */
.steps__image {
  padding: 0 var(--space-lg);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__image img {
  width: 89%;
  height: auto;
  /* object-fit: contain; */
  margin: auto;
}

/* ── Card text area ── */
.steps__text-area {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  text-align: center;
}

.steps__title {
  font-size: 1.5rem;
  /* 24px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.steps__text {
  font-size: 1.125rem;
  /* 18px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ── CTA area ── */
.steps__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.steps__small-text {
  font-size: 1.125rem;
  /* 18px */
  font-weight: var(--fw-regular);
  /* 400 */
  color: var(--color-text);
}

.steps__cta .btn--primary {
  min-width: 12.5rem;
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--fw-medium);
  /* 500 */
  padding: 0.75rem 2.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {
  .steps__heading {
    font-size: 2.75rem;
  }

  .steps__number {
    margin-bottom: -1.75rem;
  }

  .steps__card {
    padding-top: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .steps__heading {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
  }

  .steps__description {
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
  }

  .steps__items {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
  }

  /* Hide timeline on mobile */
  .steps__item::before,
  .steps__item::after {
    display: none;
  }

  .steps__number-outer {
    width: 3.5rem;
    height: 3.5rem;
  }

  .steps__number-inner {
    width: 2.75rem;
    height: 2.75rem;
  }

  .steps__number-inner span {
    font-size: 1.25rem;
  }

  .steps__number {
    margin-bottom: -1.5rem;
  }

  .steps__card {
    padding-top: 1.5rem;
    border-radius: 1.5rem;
  }

  .steps__title {
    font-size: 1.25rem;
  }

  .steps__text {
    font-size: 1rem;
  }

  .steps__cta .btn--primary {
    width: 100%;
    max-width: 18.75rem;
  }
}

/* ==========================================================================
   Section: Team
   ========================================================================== */
.section--team {
  padding: var(--space-4xl) 0;
  background-color: var(--color-white);
  text-align: center;
}

.section--team .container {
  max-width: 80rem;
}

/* ── Heading ── */
.team__heading {
  font-size: 3.5rem;
  /* 56px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ── Description ── */
.team__description {
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* Replace the existing .team__members rule */
.team__members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  justify-content: center;
}

/* Remove the width override from .team__member (it's now grid-controlled) */
.team__member {
  width: 100%;
  /* was 19.125rem */
  aspect-ratio: 62 / 77;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* ── Image — full cover ── */
.team__member-image {
  position: absolute;
  inset: 0;
}

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

/* ── Info overlay at bottom ── */
.team__member-info {
  position: absolute;
  bottom: 0.625rem;
  right: 0.5rem;
  display: flex;
  width: 95%;
  padding: 0.625rem 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-radius: 0.875rem;
  background: #FCDCCB;

  .link {
    border-bottom: 1px solid #000;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.25;

    i {
      display: inline-block;
      width: 1rem;
      height: 1rem;
      background-size: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.83301 10.1663V3.83301H10.1663M11.9997 11.9997L4.26623 4.26623' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
  }
}

.team__member-info-head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.team__member-name {
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.3;
  color: var(--color-text);
  text-align: right;
}

.team__member-role {
  font-size: 1rem;
  /* 16px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.5;
  color: var(--color-text);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.team__member-info-link {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transition: opacity .3s;
  margin-top: 2px;
  flex-shrink: 0;

  .icon__web {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2.0127 11.5004H7.50522C7.55569 8.88797 7.99979 6.51353 8.70774 4.74367C9.08361 3.80399 9.54369 3.00999 10.0801 2.44273C10.1882 2.32848 10.3007 2.22209 10.4176 2.125C5.80734 2.85814 2.24701 6.742 2.0127 11.5004Z' fill='black'/%3E%3Cpath d='M2.0127 12.5004C2.24701 17.2589 5.80734 21.1427 10.4176 21.8759C10.3007 21.7788 10.1882 21.6724 10.0801 21.5581C9.54369 20.9909 9.08361 20.1969 8.70774 19.2572C7.99979 17.4873 7.55569 15.1129 7.50522 12.5004H2.0127Z' fill='black'/%3E%3Cpath d='M13.5832 21.8759C18.1935 21.1427 21.7538 17.2589 21.9881 12.5004H16.4956C16.4451 15.1129 16.001 17.4873 15.2931 19.2572C14.9172 20.1969 14.4571 20.9909 13.9207 21.5581C13.8126 21.6724 13.7001 21.7788 13.5832 21.8759Z' fill='black'/%3E%3Cpath d='M21.9881 11.5004C21.7538 6.74199 18.1935 2.85813 13.5832 2.125C13.7001 2.22208 13.8126 2.32848 13.9207 2.44273C14.4571 3.00999 14.9172 3.80399 15.2931 4.74367C16.001 6.51353 16.4451 8.88797 16.4956 11.5004H21.9881Z' fill='black'/%3E%3Cpath d='M13.1941 3.12984C12.7745 2.68609 12.3709 2.50043 12.0004 2.50043C11.6299 2.50043 11.2264 2.68609 10.8067 3.12984C10.3861 3.57464 9.9842 4.2451 9.63622 5.11506C8.98431 6.74483 8.55589 8.98807 8.50541 11.5004H15.4954C15.4449 8.98807 15.0165 6.74483 14.3646 5.11506C14.0166 4.2451 13.6148 3.57464 13.1941 3.12984Z' fill='black'/%3E%3Cpath d='M14.3646 18.8858C15.0165 17.256 15.4449 15.0128 15.4954 12.5004H8.50541C8.55589 15.0128 8.98431 17.256 9.63622 18.8858C9.9842 19.7558 10.3861 20.4262 10.8067 20.871C11.2264 21.3148 11.6299 21.5004 12.0004 21.5004C12.3709 21.5004 12.7745 21.3148 13.1941 20.871C13.6148 20.4262 14.0166 19.7558 14.3646 18.8858Z' fill='black'/%3E%3C/svg%3E");
  }

  &:hover {
    opacity: 0.75;
  }
}

.team__slider {
  overflow: hidden;

  .default-slider {
    width: calc(100% + 2rem);
    margin-inline: -1rem;
  }

  .swiper-slide {
    width: 25%;
    padding-inline: 1rem
  }

  .btns {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;

    &:has(.swiper-button-lock) {
      display: none;
    }

    button {
      width: 3rem;
      height: 3rem;
      background-color: #FA7114;
      border: 1px solid #FA7114;
      border-radius: .625rem;
      background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1714 12.0003L8.22168 7.05055L9.63589 5.63635L15.9999 12.0003L9.63589 18.3643L8.22168 16.95L13.1714 12.0003Z' fill='white'/%3E%3C/svg%3E%0A");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 1.5rem;
      transition: background-color .3s ease;

      &:hover {
        background-color: #E5600A;
      }
    }

    .swiper-btn-next {
      transform: scaleX(-1);
    }

    .swiper-button-disabled {
      opacity: 0.5;
      pointer-events: none;
    }
  }
}

.team-member-modal {
  display: none;
  flex-direction: row;
  gap: 1.25rem;
  max-width: 40.75rem;
  padding: 0.75rem .75rem .75rem 3.375rem;
  border-radius: 1.5rem;
  direction: rtl;
  width: calc(100% - 1.5rem);

  .carousel__button.is-close {
    inset: auto !important;
    top: 1rem !important;
    inset-inline-end: 1rem !important;
    color: #000 !important;
  }
}

.team-member-modal__image {
  width: 12.25rem;

  img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.team-member-modal__content {
  padding-top: 1.125rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.team-member-modal__name {
  font-size: 1.75rem;
  line-height: 1;
  color: #000000;
}

.team-member-modal__text {
  font-size: 1.125rem;
  color: #050505;
  margin-bottom: auto;
}

.team-member-modal__url {
  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .625rem;
    background: #FFD0BC;

    svg {
      width: 1.5rem;
      height: 1.5rem;
    }
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 48rem) {
  .section--team {
    overflow: hidden;
  }

  .team__members {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .team__member-info-link {
    margin-top: 6px;
  }

  .team__slider {
    overflow: visible;

    .default-slider {
      width: calc(100% + 1.25rem);
      margin-inline: -.625rem;
    }

    .swiper-slide {
      width: 100%;
      padding-inline: .625rem;
    }

    .btns {
      margin-top: 2.5rem;
    }
  }

  .team-member-modal {
    flex-direction: column;
    padding: 2rem .625rem .625rem .625rem;

    .carousel__button.is-close {
      top: .5rem !important;
      inset-inline-end: .5rem !important;
    }
  }

  .team-member-modal__content {
    padding-top: 0;
    padding-inline: .625rem;
  }

  .team-member-modal__name {
    font-size: 1.5rem;
  }

  .team-member-modal__text {
    font-size: 1rem;
  }

  .team-member-modal__image {
    width: 100%;
    order: 2;
  }
}

/* Tablet */
@media (max-width: 64rem) {
  .team__heading {
    font-size: 2.75rem;
  }

  .team__members {
    gap: var(--space-lg);
  }

  .team__member {
    width: calc(50% - var(--space-lg));
  }

  .team__member-info {
    width: calc(100% - 1rem);
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .team__heading {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
  }

  .team__description {
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
  }

  .team__members {
    gap: var(--space-md);
  }

  .team__member {
    width: calc(50% - var(--space-md) / 2);
  }

  .team__member-info {
    width: calc(100% - 1rem);
    right: 0.475rem;
    bottom: 0.675rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.625rem;
    border-radius: 14px;
  }

  .team__member-name {
    font-size: 1rem;
  }

  .team__member-role {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Section: FAQ
   ========================================================================== */
.section--faq {
  padding: var(--space-4xl) 0;
  background-color: var(--color-bg-light);
  text-align: center;
}

.section--faq .container {
  max-width: var(--container-max);
}

/* ── Heading ── */
.faq__heading {
  font-size: 3.5rem;
  /* 56px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ── Description ── */
.faq__description {
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ── Items wrapper ── */
.faq__items {
  max-width: 50rem;
  margin: 0 auto;
  text-align: right;
}

/* ── Bottom text (centered) ── */
.faq__text-bottom {
  max-width: 50rem;
  margin: var(--space-2xl) auto 0;
  text-align: center;
}

.faq__text-bottom :last-child {
  margin-bottom: 0;
}

.faq__item:not(:last-child) {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.12);
}

/* No top border on first item */

/* ── Question button ── */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font-body);
}

.faq__question:hover .faq__toggle {
  transform: scale(1.05);
}

/* ── Question text ── */
.faq__question-text {
  font-size: 1.5rem;
  /* 24px */
  font-weight: var(--fw-medium);
  /* 500 */
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.60);
  flex: 1;
  text-align: right;
}

/* Active state — black text, bold */
.faq__item.is-active .faq__question-text {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

/* ── Toggle circle — sits on LEFT in RTL (second flex child) ── */
.faq__toggle {
  width: 2.6875rem;
  /* 43px */
  height: 2.6875rem;
  /* 43px */
  min-width: 2.6875rem;
  border-radius: 50%;
  background: #FDDCCC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq__toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Icon visibility */
.faq__icon-plus,
.faq__icon-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.faq__icon-minus {
  display: none;
}

.faq__item.is-active .faq__icon-plus {
  display: none;
}

.faq__item.is-active .faq__icon-minus {
  display: flex;
}

/* ── Answer ── */
.faq__answer {
  overflow: hidden;
}

.faq__answer-inner {
  padding: 0 0 var(--space-xl);
  font-size: 1.125rem;
  /* 18px */
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: right;
}

.faq__answer-inner p {
  margin: 0 0 var(--space-md);
}

.faq__answer-inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {
  .section--team .container {
    /* max-width: var(--container-max); */
    max-width: 89%;
  }

  .team__member-name {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .faq__heading {
    font-size: 2.75rem;
  }

  .team__member {
    width: 100% !important;
  }

  .team__members {
    gap: 2rem !important;
  }

  .site-footer__logo-icon img {
    width: 18rem !important;
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .hero-banner__tt-heading {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0rem 0 1.25rem;
    line-height: 1;
  }

  .newhr {
    width: 96% !important;
    height: 1px;
    background: rgba(255, 255, 255, 0.30);
    stroke-width: 1.5px;
    stroke: rgba(255, 255, 255, 0.30);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
  }

  .site-footer__nav a {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    white-space: nowrap;
  }

  .faq__heading {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
  }

  .faq__description {
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
  }

  .faq__question {
    gap: var(--space-md);
    padding: var(--space-lg) 0;
  }

  .faq__toggle {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
  }

  .faq__toggle svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .faq__question-text {
    font-size: 1.125rem;
  }

  .faq__answer-inner {
    font-size: 1rem;
  }
}

.site-footer .container {
  max-width: 95% !important;
}

.survey-popup__p {


  padding: 0 3rem 0.25rem;
  margin: 0;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
  flex-shrink: 0;
}

/* ==========================================================================
   Section: About
   ========================================================================== */
.section--about {
  padding: var(--space-4xl) 0;
  background-color: var(--color-white);
}

.section--about .container {
  max-width: 87%;
}

/* ── 2-column layout ── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  /* align-items: center; */
}

/* ── RIGHT: content ── */
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__heading {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-text);
}

.about__description {
  font-size: 1.1rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  font-weight: 600;
}

.about__description p {
  margin: 0;
}

/* ── Buttons row ── */
.about__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Secondary button = blue outlined style */
.btn--secondary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
  border: 0.125rem solid var(--color-primary);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.9375rem rgba(57, 139, 230, 0.35);
}

/* ── LEFT: logos box ── */
.about__logos-box {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
}

.about__logos-label {
  font-size: 1.338rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  width: 78%;
  margin: auto;
}

/* ── Logos grid ── */
.about__logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about__logo-item {
  background-color: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  transition: box-shadow var(--transition-base);
  border-radius: 27.768px;
  border: 0.896px solid #FA7114;
  background: #FFF;
  width: 295.595px;
  height: 115.57px;
  /* padding: 29px !important; */
  justify-content: center;
  align-items: center;
}

a.about__logo-item:hover {
  box-shadow: var(--shadow-md);
}

.about__logo-item img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 64rem) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* On tablet/mobile: content first, logos box below */
  .about__logos-box {
    order: 2;
  }

  .about__content {
    order: 1;
  }

  .about__heading {
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 48rem) {

  .section--about .container {
    max-width: 99%;
  }

  .section--about {
    padding: 1.5rem 0;
    background-color: var(--color-white);
  }

  .about__heading {
    font-size: 1.5rem;
  }

  .about__description {
    font-size: 1.0625rem;
  }

  .about__buttons {
    flex-direction: row;
  }

  .about__buttons .btn,
  .about__buttons .btn--secondary {
    width: 47%;
    text-align: center;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    display: flex;
    flex-direction: column;
  }

  .about__logo-item {
    background-color: var(--color-white);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6rem;
    transition: box-shadow var(--transition-base);
    border-radius: 27.768px;
    border: 0.896px solid #FA7114;
    background: #FFF;
    width: 295.595px;
    height: 132.57px;
    padding: 36.726px 39.695px 36.648px 39.412px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 162.819px;
    height: 73.022px;
    padding: 20.229px 21.865px 20.187px 21.709px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .about__logos-label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
    width: 100%;
    margin: auto;
  }

  .about__logos-box {
    order: 2;
    padding: 1rem;
  }
}

a.about__logo-item:hover {
  border-radius: 27.768px;
  border: 0.896px solid #FA7114;
  background: #FDDBCC;
  cursor: pointer;
}

/* New Hero Section Styles */
.hero-section {
  padding-block: 0;
  padding-inline: 2.5rem;
}

.hero-section__inner {
  max-width: 101.25rem;
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 9.75%;
  grid-template-columns: 1fr 37.3%;
}

.hero-section__content {
  padding-bottom: 2.08vw;

  h1 {
    font-size: clamp(1.125rem, 1.85vw, 2.1875rem);
    line-height: calc(78/68);
  }

  h2 {
    font-weight: 500;
    font-size: clamp(1.625rem, 1.75vw, 2.125rem);
    line-height: calc(51/34);
  }

  h3 {
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.5625vw, 1.875rem);
    line-height: calc(44/30);
  }

  .text {
    max-width: 36.84em;
    font-weight: 500;
    font-size: clamp(.875rem, 0.9375vw, 1.125rem);

    &:not(:last-child) {
      margin-bottom: .88em;
    }
  }

  p {
    &:not(:last-child) {
      margin-bottom: 1.78em;
    }
  }

  .btn--primary {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }
}

.hero-section__content-head {
  display: flex;
  align-items: center;
  gap: 2rem;

  &:not(:last-child) {
    margin-bottom: 2.375rem;
  }

  >div:not(.logo) {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .logo {
    width: 10rem;

    img {
      width: 100%;
    }
  }
}

.marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-wrap {
  gap: .75rem;
  height: 47.5vw;

  &::before,
  &::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    z-index: 3;
    height: 21.3125rem;
  }

  &::before {
    top: -8rem;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 62.68%);
  }

  &::after {
    bottom: -8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 62.68%);
  }
}

.marquee-column {
  width: 50%;
  overflow: hidden;

  img {
    border-radius: clamp(.75rem, 1.25vw, 1.25rem);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding-inline: .625rem;
  }

  .hero-section__inner {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .hero-section__content {
    /* padding-top: 3.375rem; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    .text {
      &:not(:last-child) {
        margin-bottom: .5rem;
      }
    }

    p {
      &:not(:last-child) {
        margin-bottom: 1.5rem;
      }
    }

    .btn--primary {
      max-width: 17.375rem;
      width: 100%;
    }
  }

  .hero-section__media {
    max-width: 31.25rem;
    width: 87.2%;
    margin-inline: auto;
  }

  .marquee-wrap {
    gap: .375rem;
    height: 32.1rem;

    &::before,
    &::after {
      height: 10rem;
    }

    &::before {
      top: -1rem;
    }

    &::after {
      bottom: -1rem;
    }
  }

  .marquee-column {
    img {
      margin-bottom: 0.375rem;
    }
  }

  .hero-section__content-head {
    flex-direction: column;
    gap: 0.5rem;

    &:not(:last-child) {
      margin-bottom: 0.75rem;
    }
  }

  .hero-section__content-head .logo {
    width: 5rem;
  }
}