/* ==========================================================================
   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);
}

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: var(--space-2xl);
}

.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: var(--space-md);
    }

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

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

    .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: var(--space-5xl) var(--space-3xl) var(--space-3xl);
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Heading ── */
.hero-banner__heading {
    font-size: 4.375rem; /* 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.375rem; /* 22px */
    font-weight: var(--fw-regular); /* 400 */
    line-height: 1.7;
    color: var(--color-white);
    max-width: 69rem;
    margin-bottom: var(--space-2xl);
}

.hero-banner__description p {
    margin: 0;
}

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

.hero-banner__small-text {
    font-size: 1.125rem; /* 18px */
    font-weight: var(--fw-medium); /* 500 */
    color: var(--color-white);
}

.hero-banner__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) {
    .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: 2.5rem; /* 40px */
        margin-bottom: var(--space-lg);
    }

    .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: var(--space-3xl);
}

/* ── Items grid ── */
.steps__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    margin-bottom: var(--space-3xl);
    /* 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: 100%;
    height: auto;
    /* object-fit: contain; */
}

/* ── 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: var(--container-max); */
}

/* ── 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);
}

/* ── Members grid ── */
.team__members {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

/* ── Single member card ── */
.team__member {
    width: 19.125rem; /* 306px */
    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: 18.1875rem; /* 291px */
    padding: 0.625rem 1.1875rem; /* 10px 19px */
    flex-direction: column;
    /* align-items: flex-end; */
    gap: 0.25rem;
    border-radius: 0.875rem; /* 14px */
    background: #FCDCCB;
}

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

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

/* 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% - 0.75rem);
        right: 0.375rem;
        bottom: 0.375rem;
        padding: 0.5rem 0.75rem;
        border-radius: 0.625rem;
    }

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

    .team__member-role {
        font-size: 0.8125rem;
    }
}
/* ==========================================================================
   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;
}

/* ── Single item ── */
.faq__item {
    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) {
    .faq__heading {
        font-size: 2.75rem;
    }
}

/* Mobile */
@media (max-width: 48rem) {
    .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;
    }
}
