/* ==========================================================================
   Homepage v2 — Section Styles
   Requires page.css (v2 page shell: layout resets, nav, footer).
   This file handles homepage-specific section layout and overrides.
   ========================================================================== */

/* Mobile CTA button — prevent multi-line wrapping */
@media (max-width: 767px) {
    .yael-v2 .gbp-button-cta-large {
        font-size: 15px;
        padding: 16px 28px;
        white-space: nowrap;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

/* Remove section padding — hero content handles its own spacing */
.yael-hero-section.gbp-section-warm {
    padding-top: 0;
    padding-bottom: 0;
}

.yael-hero {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0;
}

/* Design padding [80,80,32,120] — gbp-shell gives 80px horiz; override left + bottom */
.yael-hero-section .gbp-shell {
    padding-left: 120px;
    padding-top: 80px;
    padding-bottom: 32px;
}

.yael-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    min-width: 0;
}

/* Headline: "money." in gold with wavy underline */
.yael-hero__headline {
    font-family: "Outfit", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--yael-ink);
    margin: 0;
}

.yael-hero__gold {
    color: var(--yael-accent);
    position: relative;
    display: inline-block;
}

.yael-hero__underline {
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 110%;
    height: 16px;
}

/* Subtitle with pill badges */
.yael-hero__sub-line {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--yael-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.yael-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111111;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.yael-hero__pill svg {
    flex-shrink: 0;
}

.yael-hero__sub-copy {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--yael-ink-muted);
    margin: 0;
}

/* Photo with offset beige background rectangle */
.yael-hero__photo-wrap {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    height: 540px;
}

.yael-hero__photo-bg {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 400px;
    height: 500px;
    background: rgba(245, 188, 0, 0.15);
    border-radius: 24px;
}

.yael-hero__photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    z-index: 1;
}

/* Signature overlay on hero photo */
.yael-hero__signature {
    position: absolute;
    bottom: 28px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.yael-hero__signature-img {
    width: 150px;
    height: auto;
    display: block;
}

.yael-hero__signature-title {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--yael-ink-muted);
}

/* Trust strip — sits outside gbp-shell for full-width background */
.yael-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 16px 120px;
    background: var(--yael-bg-warm-alt);
    border-top: 1px solid var(--yael-border);
}

.yael-hero__trust-badge {
    width: 100px;
    height: 96px;
    border-radius: 6px;
    object-fit: contain;
}

.yael-hero__trust-badge-link {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.yael-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.yael-hero__trust-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.yael-hero__trust-item div {
    display: flex;
    flex-direction: column;
}

.yael-hero__trust-item strong {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--yael-ink);
    line-height: 1.18;
}

.yael-hero__trust-item span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.35;
}

.yael-hero__trust-divider {
    width: 1px;
    height: 32px;
    background: var(--yael-border);
}

@media (max-width: 1024px) {
    .yael-hero-section .gbp-shell {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 48px;
        padding-bottom: 24px;
    }
    .yael-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .yael-hero__headline {
        font-size: 48px;
    }
    .yael-hero__photo-wrap {
        width: 280px;
        height: 320px;
        align-self: center;
    }
    .yael-hero__photo-bg {
        width: 240px;
        height: 280px;
        top: 24px;
        left: 24px;
    }
    .yael-hero__photo {
        width: 260px;
        height: 300px;
    }
    .yael-hero__trust {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .yael-hero-section .gbp-shell {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 32px;
        padding-bottom: 16px;
    }
    .yael-hero {
        gap: 24px;
    }
    .yael-hero__content {
        align-items: stretch;
        gap: 20px;
    }
    .yael-hero__content .gbp-button-cta-large {
        justify-content: center;
    }
    .yael-hero__headline {
        font-size: 36px;
        letter-spacing: 0;
    }
    .yael-hero__sub-line {
        font-size: 16px;
    }
    .yael-hero__pill {
        font-size: 14px;
        padding: 4px 10px;
    }
    .yael-hero__pill svg {
        width: 12px;
        height: 12px;
    }
    .yael-hero__sub-copy {
        font-size: 16px;
    }
    .yael-hero__photo-wrap {
        width: 240px;
        height: 290px;
    }
    .yael-hero__photo-bg {
        width: 210px;
        height: 255px;
        top: 20px;
        left: 20px;
    }
    .yael-hero__photo {
        width: 230px;
        height: 270px;
    }
    .yael-hero__trust {
        flex-direction: column;
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .yael-hero__trust-divider {
        width: 40px;
        height: 1px;
    }
}

/* ==========================================================================
   Pain Points
   ========================================================================== */

/* Override section padding for pain points (design: 56px top/bottom) */
.gbp-section-primary:has(.yael-pain) {
    padding-top: 56px;
    padding-bottom: 56px;
}

.yael-pain .gbp-heading-section {
    font-size: 36px;
}

.yael-pain__sub {
    color: var(--yael-ink-muted);
    max-width: 1080px;
}

.yael-pain__lead {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.yael-pain__lead::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 26px;
    border-radius: 999px;
    background: var(--yael-accent);
}

.yael-pain__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    margin: 32px 0;
    width: 100%;
}

.yael-pain__card {
    border: none;
    border-radius: 20px;
    padding: 12px 18px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.yael-pain__card:nth-child(1),
.yael-pain__card:nth-child(4) {
    transform: rotate(-1.5deg);
}

.yael-pain__card:nth-child(2),
.yael-pain__card:nth-child(3) {
    transform: rotate(1.5deg);
}

.yael-pain__card--muted {
    background: #f7f6f1;
}

.yael-pain__card--accent {
    background: #fef7e0;
}

.yael-pain__quote {
    font-family: "Bradley Hand", "Segoe Print", "Segoe Script", cursive;
    font-size: clamp(17px, 1.5vw, 21px);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
    color: var(--yael-ink);
    margin: 0;
}

.yael-pain__close {
    color: var(--yael-ink-muted);
}

@media (max-width: 767px) {
    .yael-pain__grid {
        grid-template-columns: 1fr;
    }
    .yael-pain__card,
    .yael-pain__card:nth-child(1),
    .yael-pain__card:nth-child(2),
    .yael-pain__card:nth-child(3),
    .yael-pain__card:nth-child(4) {
        transform: none;
        padding: 16px 18px;
    }
    .yael-pain__quote {
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 650;
        letter-spacing: 0;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.yael-compare {
    max-width: 1200px;
    margin: 48px auto 0;
    border: 1px solid var(--yael-border-strong);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.gbp-eyebrow.yael-compare__eyebrow {
    display: none;
}

.yael-compare__header {
    background: #111111;
}

.yael-compare__row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--yael-border);
}

.yael-compare__row:last-child {
    border-bottom: none;
}

.yael-compare__col {
    padding: 22px 32px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.48;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yael-compare__label {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--yael-ink);
    white-space: nowrap;
}

.yael-compare__header .yael-compare__col {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #dedbd2;
    line-height: 1.2;
    padding-top: 26px;
    padding-bottom: 26px;
}

.yael-compare__header .yael-compare__us {
    font-weight: 700;
    color: var(--yael-accent);
}

.yael-compare__them {
    color: var(--yael-ink-muted);
}

.yael-compare__us {
    font-weight: 600;
}

.yael-compare__row:nth-child(even):not(.yael-compare__header) {
    background: #f7f6f1;
}

.yael-compare__col svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .yael-compare {
        border: none;
        border-radius: 0;
        background: transparent;
    }
    /* Hide header — higher specificity needed because .yael-compare__row sets display:flex below */
    .yael-compare__row.yael-compare__header {
        display: none;
    }
    .yael-compare__row {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-radius: var(--yael-radius-lg);
        margin-bottom: 12px;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }
    .yael-compare__label {
        padding: 12px 16px;
        background: #111111;
        color: #ffffff;
        font-weight: 600;
    }
    .yael-compare__col {
        padding: 14px 16px;
        font-size: 15px;
    }
    .yael-compare__them {
        background: #edeae4;
        flex-wrap: wrap;
    }
    .yael-compare__us {
        background: #ffffff;
        flex-wrap: wrap;
    }
    /* Inline labels so each row is self-explanatory */
    .yael-compare__them::before,
    .yael-compare__us::before {
        width: 100%;
        font-family: "Inter", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 2px;
    }
    .yael-compare__them::before {
        content: "Most agencies";
        color: #999999;
    }
    .yael-compare__us::before {
        content: "Yael Consulting";
        color: var(--yael-accent-dark);
    }
}

/* ==========================================================================
   Audit Preview
   ========================================================================== */

.yael-audit {
    align-items: center;
    gap: 64px;
}

.yael-audit__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.yael-audit__content .gbp-button-dark {
    align-self: flex-start;
}

.yael-audit__list-label {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.yael-audit__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.yael-audit__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.yael-audit__checklist svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.yael-audit__how {
    margin-top: 8px;
}

.yael-audit__how-label {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}

.yael-audit__how-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.yael-audit__screenshot {
    position: relative;
    border-radius: var(--yael-radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(17, 17, 17, 0.1);
}

.yael-audit__screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.yael-audit__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 17, 17, 0.8);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
}

.yael-audit__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease;
}

.yael-audit__play:hover {
    background: rgba(17, 17, 17, 1);
}

@media (max-width: 1024px) {
    .yael-audit {
        flex-direction: column;
    }
}

/* ==========================================================================
   Results Grid
   ========================================================================== */

span.yael-results__eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto 16px;
}

.yael-results__sub {
    color: var(--yael-text-on-dark-secondary);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.yael-results__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.yael-results__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yael-results__card p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--yael-ink-muted);
    margin: 0;
}

.yael-results__card--featured {
    grid-column: span 1;
}

.yael-results__card:nth-child(n + 3) {
    /* Smaller cards in bottom row — override to 3-col */
}

.yael-results__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--yael-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--yael-accent);
    border-radius: var(--yael-radius-pill);
    padding: 4px 12px;
    line-height: 1.2;
}

.yael-results__card .gbp-heading-card {
    color: var(--yael-ink);
    font-weight: 800;
}

.yael-results__stat {
    font-weight: 600;
    color: var(--yael-accent) !important;
    font-size: 15px !important;
}

.yael-results__quote {
    font-style: italic;
}

.yael-results__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--yael-border);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--yael-ink-muted);
}

.yael-results__avatar {
    display: block;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(245, 188, 0, 0.14);
}

.yael-results__byline {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.yael-results__byline strong {
    color: var(--yael-ink);
}

.yael-results__logo {
    display: block;
    max-width: 92px;
    max-height: 34px;
    margin-left: auto;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.76;
}

.yael-results__cta {
    text-align: center;
    margin-top: 8px;
}

.yael-results__more-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #f5bc00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yael-results__more-link:hover {
    text-decoration: underline;
    color:#f5bc00;
}

@media (min-width: 768px) {
    .yael-results__grid {
        grid-template-columns: repeat(6, 1fr);
    }
    /* Top row: 2 featured cards spanning 3 cols each */
    .yael-results__card:nth-child(1),
    .yael-results__card:nth-child(2) {
        grid-column: span 3;
    }
    /* Bottom row: 3 cards spanning 2 cols each */
    .yael-results__card:nth-child(n + 3) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .yael-results__grid {
        grid-template-columns: 1fr;
    }

    .yael-results__logo {
        max-width: 82px;
        max-height: 30px;
    }
}

/* ==========================================================================
   Process
   ========================================================================== */

.yael-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.yael-process__sub {
    color: var(--yael-ink-muted);
}

.yael-process__steps {
    display: flex;
    gap: 32px;
    margin: 40px 0 48px;
    width: 100%;
    justify-content: center;
    padding: 0 40px;
}

.yael-process__step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.yael-process__icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--yael-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px 4px rgba(245, 188, 0, 0.19);
}

.yael-process__connector {
    position: absolute;
    top: 44px;
    left: calc(50% + 52px);
    width: calc(100% - 48px);
    height: 3px;
    background: var(--yael-accent);
}

.yael-process__connector::before,
.yael-process__connector::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yael-accent);
    top: 50%;
    transform: translateY(-50%);
}
.yael-process__connector::before {
    left: -6px;
}
.yael-process__connector::after {
    right: -6px;
}

.yael-process__step:last-child .yael-process__connector {
    display: none;
}

.yael-process__step p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--yael-ink-muted);
    margin: 0;
}

.yael-process__expect-title {
    margin-top: 0;
}

.yael-process__expect {
    display: flex;
    gap: 32px;
    text-align: left;
    margin-bottom: 32px;
}

.yael-process__expect-item {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.yael-process__expect-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.yael-process__expect-item p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.yael-process__cta {
    text-align: center;
}

@media (max-width: 767px) {
    .yael-process__steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .yael-process__connector {
        display: none;
    }
    .yael-process__expect {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   Fit / Not Fit
   ========================================================================== */

.yael-fit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yael-fit__sub {
    color: var(--yael-ink-muted);
}

.yael-fit__note {
    color: var(--yael-ink-muted);
    font-size: 15px;
}

.yael-fit__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0;
    width: 100%;
}

.yael-fit__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.yael-fit__card-header svg {
    flex-shrink: 0;
}

.yael-fit__card-header h3 {
    margin: 0;
}

.yael-fit__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yael-fit__list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    padding-left: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.yael-fit__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.yael-fit__picky {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fef7e0;
    border: 1px solid #f5bc00;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    max-width: none;
    width: 100%;
}

.yael-fit__picky svg {
    flex-shrink: 0;
}

.yael-fit__picky p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.yael-fit__picky p strong {
    color: var(--yael-ink);
}

@media (max-width: 767px) {
    .yael-fit__cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Founder + Team
   ========================================================================== */

.yael-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: clamp(24px, 8vw, 120px);
    padding-right: clamp(24px, 8vw, 120px);
}

.yael-founder .gbp-text-body {
    max-width: 800px;
    text-align: left;
}

.yael-founder__intro {
    margin-top: 8px;
}

.yael-founder__quote {
    margin: 24px 0;
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.yael-founder__close {
    color: var(--yael-ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    max-width: 800px;
    text-align: left;
}

.yael-founder__signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
}

.yael-founder__signature-img {
    width: 150px;
    height: auto;
}

.yael-founder__signature-name {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--yael-ink);
}

.yael-founder__signature-role {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--yael-ink-muted);
}

.yael-founder__team-photo {
    margin-top: 32px;
    width: 100%;
}

.gbp-section-primary:has(.yael-founder) {
    padding-bottom: 0;
}

.yael-founder__team-img {
    display: block;
    width: 100%;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

@media (max-width: 767px) {
    .yael-founder__close {
        font-size: 20px;
        text-align: center;
    }
    .yael-founder__team-photo {
        overflow: hidden;
    }
    .yael-founder__team-img {
        object-fit: cover;
        object-position: center bottom;
    }
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */

.yael-responsive {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.yael-responsive__sub {
    color: var(--yael-text-on-dark-secondary);
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
}

.yael-responsive__callout {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 32px;
    margin: 28px 0;
    text-align: left;
}

.yael-responsive__callout svg {
    flex-shrink: 0;
}
.yael-responsive__callout h3 {
    margin: 0 0 4px;
}

.yael-responsive__callout p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.yael-responsive__quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
    text-align: left;
}

.yael-responsive .yael-quote:has(.yael-quote__logo) {
    flex-direction: column;
    padding-bottom: 18px;
}

.yael-responsive .yael-quote > div {
    order: 1;
}

.yael-responsive .yael-quote__logo {
    position: static;
    order: 2;
    align-self: flex-end;
    margin-top: 8px;
    max-width: 124px;
    max-height: 48px;
    border-radius: 6px;
}

.yael-responsive__why {
    color: var(--yael-text-on-dark-secondary);
    max-width: 720px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .yael-responsive__quotes {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   IBEX Technology
   ========================================================================== */

.yael-ibex {
    align-items: flex-start;
    gap: 64px;
}

.yael-ibex__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.yael-ibex__sub {
    color: var(--yael-text-on-dark-secondary);
}

.yael-ibex__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 32px 0;
}

.yael-ibex__feature {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.yael-ibex__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yael-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.yael-ibex__feature div {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--yael-text-on-dark-secondary);
}

.yael-ibex__feature strong {
    color: #ffffff;
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.yael-ibex__explain {
    color: var(--yael-text-on-dark-secondary);
}

.yael-ibex__cta {
    margin-top: 8px;
}

.yael-ibex__more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.yael-ibex__more-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: var(--yael-accent);
}

.yael-ibex__screenshot img,
.yael-ibex__screenshot video {
    width: 100%;
    height: auto;
    border-radius: var(--yael-radius-lg);
    border: 1px solid #2a2a2a;
    display: block;
    background: #000000;
}

@media (max-width: 1024px) {
    .yael-ibex {
        flex-direction: column;
    }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.yael-faq span.gbp-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto 16px;
    background: #fef7e0;
}

.yael-faq .gbp-heading-section {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0;
}

.yael-faq {
    text-align: center;
}

.yael-faq > .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yael-faq__list {
    width: 100%;
    max-width: 720px;
    margin-top: 48px;
    text-align: left;
}

.yael-faq__sub {
    max-width: 420px;
    margin: 0;
    color: var(--yael-ink-muted);
}

.yael-faq__item {
    border-bottom: 1px solid var(--yael-border);
}

.yael-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--yael-ink);
    cursor: pointer;
    list-style: none;
}

.yael-faq__question::-webkit-details-marker {
    display: none;
}

.yael-faq__question::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: var(--yael-ink-muted);
    transition: transform 200ms ease;
}

.yael-faq__item[open] .yael-faq__question::after {
    content: "−";
    color: var(--yael-accent);
}

.yael-faq__answer {
    padding: 0 0 20px;
}

.yael-faq__answer p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--yael-ink-muted);
    margin: 0 0 12px;
}

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

/* ==========================================================================
   Testimonials
   ========================================================================== */

.yael-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yael-testimonials span.gbp-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto 16px;
}

.yael-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

/* Bottom row: 2 wider cards, centered using 6-col subgrid trick */
@media (min-width: 1024px) {
    .yael-testimonials__grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .yael-testimonials__card:nth-child(-n + 3) {
        grid-column: span 2;
    }
    .yael-testimonials__card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .yael-testimonials__card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.yael-testimonials__card {
    position: relative;
}

.yael-testimonials__sticker {
    position: absolute;
    top: -12px;
    right: -16px;
    width: 56px;
    height: 56px;
    background: #ffe7a3;
    border: 1px solid #e8c65a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

/* Per-card sticker rotations */
.yael-testimonials__card:nth-child(1) .yael-testimonials__sticker {
    transform: rotate(-8deg);
}
.yael-testimonials__card:nth-child(2) .yael-testimonials__sticker {
    transform: rotate(6deg);
}
.yael-testimonials__card:nth-child(3) .yael-testimonials__sticker {
    transform: rotate(0deg);
}
.yael-testimonials__card:nth-child(4) .yael-testimonials__sticker {
    transform: rotate(0deg);
}
.yael-testimonials__card:nth-child(5) .yael-testimonials__sticker {
    transform: rotate(0deg);
}

.yael-testimonials__quote {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 16px;
}

.yael-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yael-testimonials__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.yael-testimonials__author strong {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}

.yael-testimonials__author span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--yael-ink-muted);
}

@media (max-width: 1023px) {
    .yael-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .yael-testimonials__grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Hero Entrance Animation
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
    .yael-js .yael-hero__content .gbp-heading-hero,
    .yael-js .yael-hero__content .yael-hero__sub,
    .yael-js .yael-hero__content .yael-hero__cta-row,
    .yael-js .yael-hero__photo {
        opacity: 0;
        transform: translateY(20px);
        animation: yael-fade-up 600ms ease forwards;
    }
    .yael-js .yael-hero__content .gbp-heading-hero {
        animation-delay: 0ms;
    }
    .yael-js .yael-hero__content .yael-hero__sub {
        animation-delay: 200ms;
    }
    .yael-js .yael-hero__content .yael-hero__cta-row {
        animation-delay: 400ms;
    }
    .yael-js .yael-hero__photo {
        animation-delay: 400ms;
        transform: scale(0.95) translateY(20px);
    }

    @keyframes yael-fade-up {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* ==========================================================================
   Button hover transitions (all v2 buttons)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
    .yael-v2 .gbp-button-primary,
    .yael-v2 .gbp-button-dark,
    .yael-v2 .gbp-button-cta-large {
        transition:
            background-color 150ms ease,
            transform 150ms ease,
            box-shadow 150ms ease;
    }
}