/* =========================================================
   AVIDITY CAPITAL — Investment Solutions Page Styles
   Additive stylesheet. Depends on style.css + case-study.css.
   Reuses cow-related-* classes from cost-of-waiting CSS.
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */
.is-hero {
    padding: 10rem 0 5rem;
}


/* =========================================================
   POSITIONING INTRO
   ========================================================= */
.is-intro-section {
    background: #FFFFFF;
}

.is-intro-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.is-intro-narrow .body-text {
    font-size: 1.05rem;
    line-height: 1.85;
}

.is-intro-narrow em {
    color: #0D3B5E;
    font-style: italic;
}


/* =========================================================
   SIX PATHS
   ========================================================= */
.is-paths-section {
    background: #F8F6F1;
}

.is-paths {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.is-path {
    background: #FFFFFF;
    border: 1px solid #EEF0F4;
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 2px 20px rgba(13, 59, 94, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.is-path:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13, 59, 94, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
}

.is-path--featured {
    border-left: 3px solid #C9A84C;
    background: linear-gradient(180deg, #FBF7EB 0%, #FFFFFF 25%);
}

.is-path-header {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.is-path-icon {
    width: 56px;
    height: 56px;
    border-radius: 2px;
    background: rgba(201, 168, 76, 0.15);
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.is-path-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.4rem;
}

.is-path-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: #0D3B5E;
    line-height: 1.2;
    margin: 0;
}

.is-path-body {
    font-size: 0.97rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.is-path-body:last-of-type {
    margin-bottom: 1.5rem;
}

.is-path-body strong {
    color: #0D3B5E;
    font-weight: 600;
}

.is-path-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #EEF0F4;
    margin-top: 0.5rem;
}

.is-path-sub-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.4rem;
}

.is-path-sub {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.is-compare-section {
    background: #FFFFFF;
}

.is-compare-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.is-compare-scroll {
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid #EEF0F4;
    box-shadow: 0 2px 20px rgba(13, 59, 94, 0.05);
}

.is-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    min-width: 720px;
}

.is-compare-table thead {
    background: #0D3B5E;
}

.is-compare-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8C97A;
    padding: 1.1rem 1.25rem;
    text-align: center;
    white-space: nowrap;
}

.is-compare-head-main {
    text-align: left !important;
    color: #FFFFFF !important;
}

.is-compare-table tbody tr {
    border-bottom: 1px solid #EEF0F4;
    transition: background 0.2s;
}

.is-compare-table tbody tr:last-child {
    border-bottom: none;
}

.is-compare-table tbody tr:hover {
    background: #FBF7EB;
}

.is-compare-row-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0D3B5E;
    padding: 1.1rem 1.25rem;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    background: #F8F6F1;
}

.is-compare-table td {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #4A5568;
}

.is-pip {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.is-pip--yes {
    background: rgba(201, 168, 76, 0.15);
    color: #8B6F20;
    border: 1px solid rgba(201, 168, 76, 0.35);
}

.is-pip--no {
    background: rgba(139, 58, 58, 0.1);
    color: #8B3A3A;
    border: 1px solid rgba(139, 58, 58, 0.25);
}

.is-pip--high {
    background: rgba(13, 59, 94, 0.08);
    color: #0D3B5E;
    border: 1px solid rgba(13, 59, 94, 0.2);
}

.is-pip--mid {
    background: #EEF0F4;
    color: #4A5568;
    border: 1px solid #CBD5E0;
}

.is-pip--low {
    background: #F8F6F1;
    color: #718096;
    border: 1px solid #E2E8F0;
}

.is-pip--neutral {
    background: transparent;
    color: #A0AEC0;
    border: none;
}

.is-compare-note {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: #718096;
    font-style: italic;
    text-align: center;
    line-height: 1.65;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HOW WE WORK
   ========================================================= */
.is-howwework-section {
    background: #071E33;
    position: relative;
    overflow: hidden;
}

.is-howwework-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(26, 82, 122, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.is-howwework-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.is-howwework-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(248, 246, 241, 0.85);
    margin-bottom: 1.25rem;
}

.is-howwework-body:last-child {
    margin-bottom: 0;
}

.is-howwework-body strong {
    color: #E8C97A;
    font-weight: 600;
}

.is-howwework-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.is-howwework-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #C9A84C;
}

.is-howwework-list i {
    font-size: 1.1rem;
    color: #C9A84C;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 28px;
}

.is-howwework-list h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #E8C97A;
    margin-bottom: 0.25rem;
}

.is-howwework-list p {
    font-size: 0.87rem;
    color: rgba(248, 246, 241, 0.78);
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
    .is-howwework-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .is-path {
        padding: 1.75rem;
    }

    .is-path-header {
        grid-template-columns: 48px 1fr;
        gap: 1rem;
    }

    .is-path-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .is-path-header h3 {
        font-size: 1.35rem;
    }

    .is-path-split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .is-compare-table th,
    .is-compare-table td {
        padding: 0.75rem;
    }

    .is-pip {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}
