/* =============================================================================
   REMOTIR WWW - PMF FAILURE PAGE STYLES
   =============================================================================
   Styles specific to the PMF Failure page sections.
   ============================================================================= */

/* =============================================================================
   PMF PAGE HERO (Main Hero)
   ============================================================================= */
.pmf-page-hero {
    padding: var(--section-padding) 0;
}

.pmf-page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.pmf-page-hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.pmf-page-hero__title {
    font-size: 4.5rem;
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    max-width: 950px;
}

.pmf-page-hero__subtitle {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
    max-width: 800px;
}

/* Hero Form */
.pmf-page-hero__form {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

.pmf-page-hero__input {
    width: 400px;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-xl);
    font-weight: var(--font-regular);
    line-height: 1.5;
    color: #181d27;
    background-color: white;
    border: 1px solid #d5d7da;
    border-radius: var(--radius-md);
}

.pmf-page-hero__input::placeholder {
    color: #535862;
}

.pmf-page-hero__input:focus {
    outline: none;
    border-color: #2970ff;
    box-shadow: 0 0 0 3px rgba(41, 112, 255, 0.15);
}

/* =============================================================================
   PMF STATS HERO SECTION
   ============================================================================= */
.pmf-hero {
    padding: var(--section-padding) 0;
}

.pmf-hero__content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.pmf-hero__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.pmf-hero__title {
    font-size: 2.25rem;
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.pmf-hero__description {
    font-size: var(--text-xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* Stat Cards */
.pmf-hero__stats {
    display: flex;
    gap: var(--space-3);
    width: 600px;
    flex-shrink: 0;
}

.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    color: white;
    min-height: 300px;
}

.stat-card--positive {
    background: radial-gradient(circle at center, #0b9959 0%, #097c48 50%, #075f37 100%);
}

.stat-card--negative {
    background: radial-gradient(circle at center, #941d14 0%, #751710 100%);
}

.stat-card__header {
    display: flex;
    flex-direction: column;
}

.stat-card__label {
    font-size: 15px;
    font-weight: var(--font-regular);
    line-height: 1.3;
}

.stat-card__value {
    font-size: 110px;
    font-weight: var(--font-bold);
    line-height: 1;
}

.stat-card__description {
    font-size: 22px;
    font-weight: var(--font-regular);
    line-height: 1.3;
}

/* =============================================================================
   PMF INDICATORS SECTION
   ============================================================================= */
.pmf-indicators {
    padding: var(--section-padding) 0;
}

.pmf-indicators__header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.pmf-indicators__title {
    flex: 1;
    font-size: 4.25rem;
    font-weight: var(--font-semibold);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.pmf-indicators__subtitle {
    flex: 1;
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* =============================================================================
   INDICATOR CARDS
   ============================================================================= */
.pmf-indicators__cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.indicator-card {
    display: flex;
    background-color: #090952;
    border-radius: 18px;
    overflow: hidden;
}

.indicator-card__header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-6);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 280px;
}

.indicator-card__icon {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.indicator-card__icon--tall {
    width: 130px;
}

.indicator-card__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: 1.3;
    color: var(--color-text-primary);
}

.indicator-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-6);
}

.indicator-card__content-header {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    line-height: 1.3;
    color: var(--color-text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.indicator-card__content-text {
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

.indicator-card__content-text p + p {
    margin-top: var(--space-4);
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.pmf-indicators__cta {
    display: flex;
}

.pmf-indicators__cta .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-lg);
    line-height: 28px;
}

/* =============================================================================
   PMF HARDEST PROBLEM SECTION
   ============================================================================= */
.pmf-hardest {
    padding: var(--section-padding) 0;
}

.pmf-hardest__header {
    text-align: center;
    margin-bottom: 92px;
}

.pmf-hardest__title {
    font-size: 4.25rem;
    font-weight: var(--font-semibold);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.pmf-hardest__subtitle {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* Feature Blocks */
.pmf-hardest__blocks {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: 92px;
}

.pmf-block {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.pmf-block--reverse {
    flex-direction: row-reverse;
}

.pmf-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.pmf-block__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.pmf-block__text {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

.pmf-block__image {
    width: 390px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.pmf-block__image--cream {
    background-color: #eeefcd;
}

.pmf-block__image--navy {
    background-color: #18215e;
    align-items: flex-start;
    justify-content: flex-start;
}

.pmf-block__image img {
    max-width: 100%;
    height: auto;
}

.pmf-block__image--navy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Card */
.pmf-hardest__cta-card {
    background: linear-gradient(180deg, #0e0e7c 0%, #090952 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-12) var(--space-16);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-12);
}

.pmf-hardest__cta-text {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
    max-width: 800px;
}

/* =============================================================================
   PMF SPRINT SECTION
   ============================================================================= */
.pmf-sprint {
    padding: var(--section-padding) 0;
}

.pmf-sprint__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-12);
}

.pmf-sprint__header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.pmf-sprint__label {
    font-size: var(--text-md);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: #84adff;
    text-transform: uppercase;
}

.pmf-sprint__title {
    font-size: 4.25rem;
    font-weight: var(--font-semibold);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.pmf-sprint__subtitle {
    flex: 1;
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* Phase Cards */
.pmf-sprint__phases {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.phase-card {
    background-color: #090952;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05),
                inset 0 0 0 1px rgba(10, 13, 18, 0.18),
                inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.phase-card__header {
    margin-bottom: var(--space-12);
}

.phase-card__title {
    font-size: 3rem;
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.phase-card__description {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
    max-width: 694px;
}

/* Phase Features Grid */
.phase-card__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12) var(--space-6);
}

.phase-feature {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.phase-feature__icon {
    width: 32px;
    height: 32px;
}

.phase-feature__icon img {
    width: 100%;
    height: 100%;
}

.phase-feature__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.phase-feature__title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    line-height: 1.3;
    color: var(--color-text-primary);
}

.phase-feature__text {
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* Phase Divider */
.pmf-sprint__divider {
    padding: var(--space-6) 0;
    text-align: center;
}

.pmf-sprint__divider-text {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* =============================================================================
   PMF DELIVERABLE SECTION
   ============================================================================= */
.pmf-deliverable {
    padding: var(--section-padding) 0;
}

.pmf-deliverable__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
}

.pmf-deliverable__title {
    font-size: 4.25rem;
    font-weight: var(--font-semibold);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.pmf-deliverable__subtitle {
    font-size: var(--text-2xl);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

.pmf-deliverable__tagline {
    font-size: var(--text-md);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: #84adff;
    margin-bottom: var(--space-8);
}

/* Deliverable Cards */
.pmf-deliverable__cards {
    display: flex;
    gap: var(--space-3);
}

.deliverable-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding: var(--space-6);
    background-color: #090952;
    border-radius: var(--radius-lg);
    min-height: 280px;
}

.deliverable-card__icon {
    width: 64px;
    height: 64px;
}

.deliverable-card__icon img {
    width: 100%;
    height: 100%;
}

.deliverable-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.deliverable-card__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: var(--color-text-primary);
}

.deliverable-card__text {
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    line-height: 1.3;
    color: var(--color-text-secondary);
}

/* =============================================================================
   RESPONSIVE STYLES
   ============================================================================= */
@media (max-width: 968px) {
    .pmf-indicators__header {
        flex-direction: column;
        gap: var(--space-6);
        text-align: center;
    }
    
    .pmf-indicators__title {
        font-size: 3rem;
    }
    
    .pmf-indicators__subtitle {
        font-size: var(--text-xl);
    }
    
    .indicator-card {
        flex-direction: column;
    }
    
    .indicator-card__header {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        min-height: auto;
        flex-direction: row;
        align-items: center;
        gap: var(--space-6);
    }
    
    .indicator-card__icon {
        width: 80px;
    }
    
    .indicator-card__icon--tall {
        width: 90px;
    }
    
    .indicator-card__title {
        font-size: var(--text-2xl);
    }
    
    /* PMF Hardest Section */
    .pmf-hardest__header {
        margin-bottom: var(--space-12);
    }
    
    .pmf-hardest__title {
        font-size: 3rem;
    }
    
    .pmf-hardest__blocks {
        margin-bottom: var(--space-12);
    }
    
    .pmf-block,
    .pmf-block--reverse {
        flex-direction: column;
    }
    
    .pmf-block__image {
        width: 100%;
        height: 280px;
    }
    
    .pmf-block__title {
        font-size: var(--text-3xl);
    }
    
    .pmf-block__text {
        font-size: var(--text-xl);
    }
    
    .pmf-hardest__cta-card {
        padding: var(--space-8) var(--space-6);
    }
    
    .pmf-hardest__cta-text {
        font-size: var(--text-lg);
    }
    
    /* PMF Page Hero */
    .pmf-page-hero__title {
        font-size: 2.5rem;
    }
    
    .pmf-page-hero__subtitle {
        font-size: var(--text-lg);
    }
    
    .pmf-page-hero__form {
        flex-direction: column;
        width: 100%;
    }
    
    .pmf-page-hero__input {
        width: 100%;
    }
    
    /* PMF Stats Hero Section */
    .pmf-hero__content {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .pmf-hero__title {
        font-size: 1.75rem;
    }
    
    .pmf-hero__stats {
        width: 100%;
        flex-direction: column;
    }
    
    .stat-card {
        min-height: 200px;
    }
    
    .stat-card__value {
        font-size: 72px;
    }
    
    .stat-card__description {
        font-size: var(--text-lg);
    }
    
    /* PMF Sprint Section */
    .pmf-sprint__header {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .pmf-sprint__title {
        font-size: 3rem;
    }
    
    .pmf-sprint__subtitle {
        font-size: var(--text-xl);
    }
    
    .phase-card__title {
        font-size: 2rem;
    }
    
    .phase-card__description {
        font-size: var(--text-lg);
    }
    
    .phase-card__features {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    /* PMF Deliverable Section */
    .pmf-deliverable__title {
        font-size: 3rem;
    }
    
    .pmf-deliverable__subtitle {
        font-size: var(--text-xl);
    }
    
    .pmf-deliverable__cards {
        flex-direction: column;
    }
    
    .deliverable-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .pmf-indicators__title {
        font-size: 2.25rem;
    }
    
    .indicator-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .indicator-card__content {
        padding: var(--space-5);
    }
    
    .indicator-card__content-text {
        font-size: var(--text-md);
    }
    
    .pmf-indicators__cta {
        justify-content: center;
    }
}

/* =============================================================================
   BUSINESS CASE SECTION
   ============================================================================= */
.section--business-case {
    background-color: var(--color-bg);
    padding: 96px 0;
}

.business-case__header {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    padding: 0 18px;
}

.business-case__title {
    flex: 0 0 auto;
    width: 470px;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.36px;
    color: white;
}

.business-case__subtitle {
    flex: 1;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    padding-top: 40px;
}

.business-case__table {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 18px 48px;
}

.business-case__row {
    display: flex;
}

.business-case__row--header .business-case__cell {
    background-color: #090952;
    font-weight: 700;
    color: white;
}

.business-case__cell {
    flex: 1;
    padding: 18px;
    font-size: 18px;
    line-height: 1.3;
    color: #d5d7da;
    background-color: #070740;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.business-case__cell--label {
    background-color: #090952;
    font-weight: 700;
    color: white;
}

.business-case__cell--last {
    border-right: none;
}

.business-case__row--last .business-case__cell {
    border-bottom: none;
}

.business-case__footnote {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    margin: 0 18px 48px;
}

.business-case__cta {
    margin-left: 18px;
}

/* =============================================================================
   FORCE MULTIPLIER PERSONAS SECTION
   ============================================================================= */
.section--multiplier-personas {
    background-color: var(--color-bg);
    padding: 96px 0;
}

.multiplier-personas__header {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    padding: 0 18px;
    align-items: center;
}

.multiplier-personas__title {
    flex: 0 0 auto;
    width: 480px;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.36px;
    color: white;
}

.multiplier-personas__subtitle {
    flex: 1;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.multiplier-personas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 18px;
}

.multiplier-persona {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 12px;
    min-height: 330px;
}

.multiplier-persona--blue {
    background: radial-gradient(ellipse at center 35%, rgba(9, 40, 92, 1) 0%, rgba(8, 32, 69, 1) 100%), 
                linear-gradient(90deg, rgb(24, 33, 94) 0%, rgb(24, 33, 94) 100%);
}

.multiplier-persona--teal {
    background: radial-gradient(ellipse at center 35%, rgba(11, 58, 61, 1) 0%, rgba(11, 37, 41, 1) 100%);
}

.multiplier-persona--purple {
    background: radial-gradient(ellipse at center 35%, rgba(54, 33, 94, 1) 0%, rgba(31, 21, 54, 1) 100%), 
                linear-gradient(90deg, rgb(38, 25, 66) 0%, rgb(38, 25, 66) 100%);
}

.multiplier-persona--gray {
    background: radial-gradient(ellipse at center 35%, rgba(58, 67, 72, 1) 0%, rgba(32, 39, 45, 1) 100%);
}

.multiplier-persona__header {
    display: flex;
    flex-direction: column;
}

.multiplier-persona__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.multiplier-persona--blue .multiplier-persona__label {
    color: #84adff;
}

.multiplier-persona--teal .multiplier-persona__label {
    color: #099250;
}

.multiplier-persona--purple .multiplier-persona__label {
    color: #7a5af8;
}

.multiplier-persona--gray .multiplier-persona__label {
    color: #a4a7ae;
}

.multiplier-persona__role {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.multiplier-persona__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}

/* Business Case & Multiplier Personas Responsive */
@media (max-width: 992px) {
    .business-case__header {
        flex-direction: column;
        gap: 16px;
    }
    
    .business-case__title {
        width: 100%;
        font-size: 48px;
    }
    
    .business-case__subtitle {
        padding-top: 0;
        font-size: 20px;
    }
    
    .multiplier-personas__header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .multiplier-personas__title {
        width: 100%;
        font-size: 48px;
    }
    
    .multiplier-personas__subtitle {
        font-size: 20px;
    }
    
    .multiplier-persona__role {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .section--business-case,
    .section--multiplier-personas {
        padding: 64px 0;
    }
    
    .business-case__title,
    .multiplier-personas__title {
        font-size: 36px;
    }
    
    .business-case__subtitle,
    .multiplier-personas__subtitle {
        font-size: 18px;
    }
    
    .business-case__table {
        overflow-x: auto;
        margin: 0 0 32px;
    }
    
    .business-case__row {
        min-width: 600px;
    }
    
    .business-case__cell {
        font-size: 14px;
        padding: 12px;
    }
    
    .business-case__footnote {
        font-size: 16px;
        margin: 0 18px 32px;
    }
    
    .business-case__cta {
        margin-left: 18px;
    }
    
    .multiplier-personas__grid {
        grid-template-columns: 1fr;
    }
    
    .multiplier-persona {
        min-height: 280px;
    }
    
    .multiplier-persona__role {
        font-size: 48px;
    }
    
    .multiplier-persona__text {
        font-size: 18px;
    }
}

/* =============================================================================
   PRICING CARDS SECTION
   ============================================================================= */
.section--pricing-cards {
    background: transparent;
    padding: 96px 0;
}

.pricing-cards__header {
    margin-bottom: 32px;
}

.pricing-cards__title {
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.36px;
    color: white;
    margin-bottom: 8px;
}

.pricing-cards__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.pricing-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pricing-card {
    background-color: #090952;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.pricing-card__top {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card__icon {
    width: 110px;
    height: 122px;
    object-fit: contain;
}

.pricing-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 150px;
}

.pricing-card__name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.pricing-card__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
}

.pricing-card__amount {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.pricing-card__period {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.pricing-card__features {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.pricing-card__feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pricing-card__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__feature span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.pricing-card__cta {
    padding: 24px;
}

.pricing-card__btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-cards__title {
        font-size: 48px;
    }
    
    .pricing-cards__subtitle {
        font-size: 20px;
    }
    
    .pricing-cards__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card__info {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .section--pricing-cards {
        padding: 64px 0;
    }
    
    .pricing-cards__title {
        font-size: 36px;
    }
    
    .pricing-cards__subtitle {
        font-size: 18px;
    }
    
    .pricing-card__name {
        font-size: 24px;
    }
    
    .pricing-card__amount {
        font-size: 32px;
    }
    
    .pricing-card__description,
    .pricing-card__period,
    .pricing-card__feature span {
        font-size: 16px;
    }
}

/* =============================================================================
   UNPREDICTABLE PIPELINE - HERO SECTION
   ============================================================================= */
.pipeline-hero {
    padding: 96px 0;
}

.pipeline-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.pipeline-hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.pipeline-hero__title {
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.24px;
    color: white;
    max-width: 700px;
}

.pipeline-hero__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    max-width: 580px;
}

.pipeline-hero__form {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pipeline-hero__input {
    width: 400px;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #535862;
    background-color: white;
    border: 1px solid #d5d7da;
    border-radius: 8px;
}

.pipeline-hero__input::placeholder {
    color: #535862;
}

.pipeline-hero__input:focus {
    outline: none;
    border-color: #2970ff;
    box-shadow: 0 0 0 3px rgba(41, 112, 255, 0.15);
}

.pipeline-hero__btn {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    white-space: nowrap;
}

/* =============================================================================
   UNPREDICTABLE PIPELINE - LEADS PROBLEM SECTION
   ============================================================================= */
.section--leads-problem {
    padding: 96px 0;
}

.leads-problem__wrapper {
    background-color: #090952;
    border-radius: 12px;
    padding: 32px;
}

.leads-problem__header {
    margin-bottom: 64px;
}

.leads-problem__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.84px;
    color: white;
    margin-bottom: 8px;
}

.leads-problem__subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    max-width: 811px;
}

.leads-problem__cards {
    display: flex;
    gap: 32px;
}

.leads-problem__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.leads-problem__card-icon {
    width: 84px;
    height: 84px;
    background: #101089;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leads-problem__card-icon img {
    width: 42px;
    height: 42px;
}

.leads-problem__card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leads-problem__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.leads-problem__card-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.leads-problem__card-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================================================
   UNPREDICTABLE PIPELINE - SYSTEM PROBLEM SECTION
   ============================================================================= */
.section--system-problem {
    padding: 64px 0;
}

.system-problem__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.system-problem__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.28px;
    color: white;
    max-width: 867px;
}

.system-problem__subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    max-width: 820px;
}

.system-problem__cards {
    display: flex;
    gap: 12px;
}

.system-problem__card {
    flex: 1;
    background-color: #090952;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.system-problem__card-icon {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.system-problem__card-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.system-problem__card-icon--red {
    background-color: #d25d43;
}

.system-problem__card-icon--green {
    background-color: #77bc1f;
}

.system-problem__card-icon--yellow {
    background-color: #f3b216;
}

.system-problem__card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.system-problem__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.system-problem__card-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

/* Unpredictable Pipeline Responsive */
@media (max-width: 992px) {
    .pipeline-hero__title {
        font-size: 48px;
    }
    
    .pipeline-hero__subtitle {
        font-size: 20px;
    }
    
    .pipeline-hero__form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .pipeline-hero__input {
        width: 100%;
    }
    
    .leads-problem__title,
    .system-problem__title {
        font-size: 36px;
    }
    
    .leads-problem__subtitle,
    .system-problem__subtitle {
        font-size: 20px;
    }
    
    .leads-problem__cards,
    .system-problem__cards {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .pipeline-hero {
        padding: 64px 0;
    }
    
    .pipeline-hero__title {
        font-size: 36px;
        letter-spacing: -0.72px;
    }
    
    .pipeline-hero__subtitle {
        font-size: 18px;
    }
    
    .pipeline-hero__input {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .pipeline-hero__btn {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .section--leads-problem,
    .section--system-problem {
        padding: 64px 0;
    }
    
    .leads-problem__header,
    .system-problem__header {
        margin-bottom: 48px;
    }
    
    .leads-problem__title,
    .system-problem__title {
        font-size: 28px;
    }
    
    .leads-problem__subtitle,
    .system-problem__subtitle {
        font-size: 18px;
    }
    
    .leads-problem__card-title,
    .system-problem__card-title {
        font-size: 20px;
    }
    
    .leads-problem__card-content p,
    .system-problem__card-text {
        font-size: 16px;
    }
    
    .system-problem__card {
        gap: 32px;
    }
    
    .system-problem__card-icon {
        width: 80px;
        height: 80px;
    }
    
    .system-problem__card-icon img {
        width: 40px;
        height: 40px;
    }
}

/* =============================================================================
   CTA BANNER SECTION
   ============================================================================= */
.section--cta-banner {
    padding: 64px 0;
}

.cta-banner {
    background-color: #0a0a53;
    border-radius: 12px;
    padding: 42px;
    min-height: 389px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-banner__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    z-index: 2;
    max-width: 433px;
}

.cta-banner__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
}

.cta-banner__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    margin-top: -32px;
}

.cta-banner__visual {
    position: absolute;
    top: -285px;
    right: -100px;
    width: 674px;
    height: 674px;
    z-index: 1;
}

.cta-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner Responsive */
@media (max-width: 992px) {
    .cta-banner__title {
        font-size: 36px;
    }
    
    .cta-banner__visual {
        right: -200px;
        top: -200px;
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .section--cta-banner {
        padding: 48px 0;
    }
    
    .cta-banner {
        padding: 32px;
        min-height: auto;
    }
    
    .cta-banner__content {
        max-width: 100%;
        gap: 24px;
    }
    
    .cta-banner__title {
        font-size: 28px;
    }
    
    .cta-banner__subtitle {
        font-size: 16px;
        margin-top: -16px;
    }
    
    .cta-banner__visual {
        display: none;
    }
}

/* =============================================================================
   REMOTIR BUILDS YOUR PREDICTABLE REVENUE ENGINE
   ============================================================================= */
.section--revenue-engine {
    padding: 96px 0;
}

.revenue-engine__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.revenue-engine__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.28px;
    color: white;
    max-width: 867px;
}

.revenue-engine__subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    max-width: 820px;
}

.revenue-engine__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.revenue-engine__row {
    display: flex;
    gap: 16px;
}

.revenue-engine__card {
    flex: 1;
    background-color: #090952;
    border-radius: 12px;
    padding: 12px 24px 12px 12px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.revenue-engine__card-icon {
    width: 72px;
    height: 72px;
    background-color: #101089;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.revenue-engine__card-icon img {
    width: 42px;
    height: 42px;
}

.revenue-engine__card-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: white;
}

/* Revenue Engine Responsive */
@media (max-width: 1024px) {
    .revenue-engine__title {
        font-size: 48px;
    }
    
    .revenue-engine__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section--revenue-engine {
        padding: 64px 0;
    }
    
    .revenue-engine__header {
        margin-bottom: 48px;
    }
    
    .revenue-engine__title {
        font-size: 36px;
    }
    
    .revenue-engine__subtitle {
        font-size: 18px;
    }
    
    .revenue-engine__row {
        flex-direction: column;
    }
    
    .revenue-engine__card {
        padding: 12px;
    }
    
    .revenue-engine__card-icon {
        width: 56px;
        height: 56px;
    }
    
    .revenue-engine__card-icon img {
        width: 32px;
        height: 32px;
    }
    
    .revenue-engine__card-text {
        font-size: 16px;
    }
}

/* =============================================================================
   THE 4 STEPS TO PREDICTABLE REVENUE (V2)
   ============================================================================= */
.section--steps-v2 {
    padding: 96px 0;
}

.steps-v2__header {
    text-align: center;
    margin-bottom: 92px;
}

.steps-v2__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.96px;
    color: white;
    margin-bottom: 16px;
}

.steps-v2__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.steps-v2__timeline {
    position: relative;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.steps-v2__timeline-start {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.steps-v2__timeline-start img {
    width: 24px;
    height: 24px;
}

.steps-v2__timeline-line {
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(to bottom, #22225e 0%, transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.steps-v2__timeline-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-left: 3px dashed rgba(255, 255, 255, 0.15);
}

.steps-v2__card {
    position: relative;
    background: #090952;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    z-index: 1;
}

.steps-v2__card::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 3px;
    height: 20px;
    border-left: 3px dashed rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.steps-v2__card:last-of-type::after {
    display: none;
}

.steps-v2__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-v2__card-icon img {
    width: 32px;
    height: 32px;
}

.steps-v2__card-icon--red {
    background: #db3124;
}

.steps-v2__card-icon--purple {
    background: #7b3ced;
}

.steps-v2__card-icon--blue {
    background: #1e61d4;
}

.steps-v2__card-icon--green {
    background: #149658;
}

.steps-v2__card-content {
    flex: 1;
}

.steps-v2__card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    margin-bottom: 0;
}

.steps-v2__card-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #d5d7da;
}

.steps-v2__timeline-end {
    width: 3px;
    height: 40px;
    border-left: 3px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.steps-v2__cta {
    text-align: center;
    margin-top: 0;
}

/* Steps V2 Responsive */
@media (max-width: 768px) {
    .section--steps-v2 {
        padding: 64px 0;
    }
    
    .steps-v2__header {
        margin-bottom: 48px;
    }
    
    .steps-v2__title {
        font-size: 32px;
    }
    
    .steps-v2__subtitle {
        font-size: 18px;
    }
    
    .steps-v2__card {
        padding: 20px;
        gap: 16px;
    }
    
    .steps-v2__card-icon {
        width: 48px;
        height: 48px;
    }
    
    .steps-v2__card-icon img {
        width: 24px;
        height: 24px;
    }
    
    .steps-v2__card-title {
        font-size: 18px;
    }
    
    .steps-v2__card-text {
        font-size: 16px;
    }
    
    .steps-v2__cta {
        margin-top: 32px;
    }
    
    .steps-v2__timeline-line,
    .steps-v2__card::after,
    .steps-v2__timeline-end {
        display: none;
    }
}

/* =============================================================================
   BEFORE/AFTER COMPARISON SECTION
   ============================================================================= */
.section--before-after {
    padding: 96px 0;
}

.before-after__header {
    text-align: center;
    margin-bottom: 64px;
}

.before-after__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 8px;
}

.before-after__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    max-width: 900px;
    margin: 0 auto;
}

.before-after__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.before-after__column-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 16px;
}

.before-after__column-title--before {
    color: #bdb4fe;
}

.before-after__column-title--after {
    color: white;
}

.before-after__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.before-after__items--before {
    align-items: center;
}

.before-after__items--after {
    align-items: stretch;
}

.before-after__item {
    background: #22225e;
    border-radius: 10px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #bdb4fe;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
}

.before-after__item--negative {
    transform: rotate(var(--rotation, 0deg));
    width: fit-content;
}

.before-after__item--negative:nth-child(1) { --rotation: -3deg; }
.before-after__item--negative:nth-child(2) { --rotation: 2deg; }
.before-after__item--negative:nth-child(3) { --rotation: -2.5deg; }
.before-after__item--negative:nth-child(4) { --rotation: 2.5deg; }
.before-after__item--negative:nth-child(5) { --rotation: -1.5deg; }
.before-after__item--negative:nth-child(6) { --rotation: 1deg; }
.before-after__item--negative:nth-child(7) { --rotation: -3deg; }

.before-after__item--positive {
    width: 100%;
}

.before-after__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.before-after__icon--red {
    background: #ff3b30;
    color: white;
}

.before-after__icon--green {
    background: #34c759;
    color: white;
}

/* Before/After Responsive */
@media (max-width: 992px) {
    .before-after__columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .before-after__title {
        font-size: 36px;
    }
    
    .before-after__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section--before-after {
        padding: 64px 0;
    }
    
    .before-after__title {
        font-size: 28px;
    }
    
    .before-after__item {
        padding: 14px 18px;
        font-size: 16px;
    }
    
    .before-after__item--negative {
        transform: none;
    }
}

/* =============================================================================
   FOR FOUNDERS AND TEAMS V2
   ============================================================================= */
.section--founders-v2 {
    padding: 96px 0;
}

.founders-v2__header {
    text-align: center;
    margin-bottom: 92px;
}

.founders-v2__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.96px;
    color: white;
    margin-bottom: 16px;
}

.founders-v2__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    max-width: 900px;
    margin: 0 auto;
}

.founders-v2__columns {
    display: flex;
    gap: 64px;
    justify-content: center;
}

.founders-v2__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founders-v2__column-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

.founders-v2__column-title--before {
    color: #f4f3ff;
}

.founders-v2__column-title--after {
    color: white;
    font-weight: 600;
}

.founders-v2__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founders-v2__card {
    background: #090952;
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
}

.founders-v2__card--after {
    gap: 18px;
}

.founders-v2__card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founders-v2__card-icon img {
    width: 16px;
    height: 16px;
}

.founders-v2__card-icon--green img {
    width: 16px;
    height: 12px;
}

.founders-v2__card-icon--red {
    background: #db3124;
}

.founders-v2__card-icon--green {
    background: #149658;
}

.founders-v2__card-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #d5d7da;
    flex: 1;
}

/* Founders V2 Responsive */
@media (max-width: 992px) {
    .founders-v2__columns {
        flex-direction: column;
        gap: 48px;
    }
    
    .founders-v2__title {
        font-size: 36px;
    }
    
    .founders-v2__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section--founders-v2 {
        padding: 64px 0;
    }
    
    .founders-v2__header {
        margin-bottom: 48px;
    }
    
    .founders-v2__title {
        font-size: 28px;
    }
    
    .founders-v2__card {
        padding: 12px;
        gap: 16px;
    }
    
    .founders-v2__card-text {
        font-size: 16px;
    }
}

/* =============================================================================
   TESTIMONIALS GRID SECTION
   ============================================================================= */
.section--testimonials-grid {
    padding: 96px 0;
}

.testimonials-grid__header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 8px;
}

.testimonials-grid__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.testimonials-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.testimonials-grid__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials-grid__column:first-child {
    padding-top: 32px;
}

.testimonials-grid__column:last-child {
    padding-top: 40px;
}

.testimonial-card {
    background: white;
    border: 1px solid #e9eaeb;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial-card__logo {
    font-size: 18px;
    font-weight: 700;
    color: #181d27;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-card__quote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #535862;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #181d27;
}

.testimonial-card__role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #181d27;
}

/* Testimonials Grid Responsive */
@media (max-width: 992px) {
    .testimonials-grid__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid__column:last-child {
        display: none;
    }
    
    .testimonials-grid__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section--testimonials-grid {
        padding: 64px 0;
    }
    
    .testimonials-grid__cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid__column {
        padding-top: 0 !important;
    }
    
    .testimonials-grid__column:nth-child(2) {
        display: none;
    }
    
    .testimonials-grid__title {
        font-size: 28px;
    }
    
    .testimonials-grid__subtitle {
        font-size: 18px;
    }
}

/* =============================================================================
   TESTIMONIALS V2 SECTION
   ============================================================================= */
.section--testimonials-v2 {
    padding: 96px 0;
}

.testimonials-v2__header {
    text-align: center;
    margin-bottom: 92px;
}

.testimonials-v2__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.96px;
    color: white;
    margin-bottom: 16px;
}

.testimonials-v2__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.testimonials-v2__grid {
    display: flex;
    gap: 16px;
}

.testimonials-v2__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials-v2__column--offset-1 {
    padding-top: 32px;
}

.testimonials-v2__column--offset-2 {
    padding-top: 40px;
}

.testimonials-v2__card {
    background: #090952;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonials-v2__card-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials-v2__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
}

.testimonials-v2__logo-mark {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.testimonials-v2__logo-text {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.testimonials-v2__logo-ikigai-mark {
    width: 29px;
    height: 15px;
    border: 3px solid white;
    border-radius: 48px;
    opacity: 0.84;
    flex-shrink: 0;
    align-self: center;
}

.testimonials-v2__stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 12px;
}

.testimonials-v2__stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonials-v2__quote {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-v2__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonials-v2__author-info {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-v2__name {
    color: white;
}

.testimonials-v2__cta {
    text-align: center;
    margin-top: 92px;
}

/* Testimonials V2 Responsive */
@media (max-width: 992px) {
    .testimonials-v2__grid {
        flex-wrap: wrap;
    }
    
    .testimonials-v2__column {
        flex: 1 1 calc(50% - 8px);
    }
    
    .testimonials-v2__column--offset-1,
    .testimonials-v2__column--offset-2 {
        padding-top: 0;
    }
    
    .testimonials-v2__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section--testimonials-v2 {
        padding: 64px 0;
    }
    
    .testimonials-v2__header {
        margin-bottom: 48px;
    }
    
    .testimonials-v2__grid {
        flex-direction: column;
    }
    
    .testimonials-v2__column {
        flex: 1 1 100%;
    }
    
    .testimonials-v2__title {
        font-size: 28px;
    }
    
    .testimonials-v2__subtitle {
        font-size: 18px;
    }
    
    .testimonials-v2__card {
        gap: 32px;
    }
    
    .testimonials-v2__cta {
        margin-top: 48px;
    }
}

/* =============================================================================
   WHY HIGH-GROWTH TEAMS CHOOSE REMOTIR
   ============================================================================= */
.section--why-remotir {
    padding: 96px 0;
}

.why-remotir__header {
    text-align: center;
    margin-bottom: 64px;
}

.why-remotir__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 8px;
}

.why-remotir__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
    max-width: 900px;
    margin: 0 auto;
}

.why-remotir__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 64px;
}

.why-remotir__card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 0 24px 32px 24px;
    text-align: center;
    position: relative;
    padding-top: 24px;
}

.why-remotir__card-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e9eaeb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -24px;
    position: relative;
    top: -24px;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05), inset 0 0 0 1px rgba(10, 13, 18, 0.18), inset 0 -2px 0 0 rgba(10, 13, 18, 0.05);
}

.why-remotir__card-icon img {
    width: 24px;
    height: 24px;
}

.why-remotir__card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #181d27;
    margin-bottom: 8px;
    margin-top: 20px;
}

.why-remotir__card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #535862;
}

/* Why Remotir Responsive */
@media (max-width: 992px) {
    .why-remotir__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-remotir__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section--why-remotir {
        padding: 64px 0;
    }
    
    .why-remotir__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-remotir__title {
        font-size: 28px;
    }
    
    .why-remotir__subtitle {
        font-size: 18px;
    }
}

/* =============================================================================
   WHY HIGH-GROWTH TEAMS CHOOSE REMOTIR V2
   ============================================================================= */
.section--why-remotir-v2 {
    padding: 96px 0;
}

.why-remotir-v2__header {
    text-align: center;
    margin-bottom: 92px;
}

.why-remotir-v2__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.96px;
    color: white;
    margin-bottom: 16px;
}

.why-remotir-v2__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #d5d7da;
}

.why-remotir-v2__grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.why-remotir-v2__row {
    display: flex;
    gap: 24px;
}

.why-remotir-v2__card-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 32px;
}

.why-remotir-v2__icon-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: #101089;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.why-remotir-v2__icon-box img {
    width: 42px;
    height: 42px;
}

.why-remotir-v2__card {
    background: #090952;
    border-radius: 12px;
    padding: 64px 24px 24px 24px;
    text-align: center;
    flex: 1;
    width: 100%;
    margin-bottom: -32px;
}

.why-remotir-v2__card-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: white;
    margin-bottom: 8px;
}

.why-remotir-v2__card-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Remotir V2 Responsive */
@media (max-width: 992px) {
    .why-remotir-v2__row {
        flex-wrap: wrap;
    }
    
    .why-remotir-v2__card-wrapper {
        flex: 1 1 calc(50% - 12px);
    }
    
    .why-remotir-v2__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section--why-remotir-v2 {
        padding: 64px 0;
    }
    
    .why-remotir-v2__header {
        margin-bottom: 48px;
    }
    
    .why-remotir-v2__grid {
        gap: 24px;
    }
    
    .why-remotir-v2__row {
        flex-direction: column;
        gap: 24px;
    }
    
    .why-remotir-v2__card-wrapper {
        flex: 1 1 100%;
    }
    
    .why-remotir-v2__title {
        font-size: 28px;
    }
    
    .why-remotir-v2__subtitle {
        font-size: 18px;
    }
}

/* =============================================================================
   FAQ SECTION - GOT QUESTIONS?
   ============================================================================= */
.section--faq {
    padding: 96px 0 128px 0;
}

.faq__header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px auto;
}

.faq__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.96px;
    color: white;
    margin-bottom: 20px;
}

.faq__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
    color: rgba(255, 255, 255, 0.7);
}

.faq__items {
    max-width: 768px;
    margin: 0 auto 64px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq__item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.faq__question {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    color: white;
    margin-bottom: 8px;
}

.faq__answer {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.faq__cta-box {
    background: #0a0a53;
    border-radius: 16px;
    padding: 32px;
    padding-bottom: 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.faq__avatars {
    position: relative;
    width: 120px;
    height: 56px;
}

.faq__avatar {
    position: absolute;
    border: 1.5px solid white;
    border-radius: 50%;
    object-fit: cover;
}

.faq__avatar--1 {
    width: 48px;
    height: 48px;
    left: 0;
    top: 8px;
    z-index: 1;
}

.faq__avatar--2 {
    width: 56px;
    height: 56px;
    left: 32px;
    top: 0;
    z-index: 2;
}

.faq__avatar--3 {
    width: 48px;
    height: 48px;
    left: 72px;
    top: 8px;
    z-index: 1;
}

.faq__cta-content {
    max-width: 768px;
}

.faq__cta-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    margin-bottom: 8px;
}

.faq__cta-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .section--faq {
        padding: 64px 0 80px 0;
    }
    
    .faq__header {
        margin-bottom: 48px;
    }
    
    .faq__title {
        font-size: 32px;
    }
    
    .faq__subtitle {
        font-size: 18px;
    }
    
    .faq__items {
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .faq__question {
        font-size: 16px;
    }
    
    .faq__answer {
        font-size: 14px;
    }
    
    .faq__cta-box {
        padding: 24px;
        gap: 24px;
    }
    
    .faq__cta-title {
        font-size: 18px;
    }
    
    .faq__cta-text {
        font-size: 14px;
    }
}
