/* ─────────────────────────────────────────────────────
   BUSINESS OWNERS PAGE STYLES
   ───────────────────────────────────────────────────── */

/* 1. RESOURCE GUIDE */
.resource-guide {
    background: #FFF;
    padding: 100px 0;
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.res-head-content {
    max-width: 600px;
}

.res-head-content h2 {
    color: var(--charcoal);
    margin-bottom: 12px;
}

.res-head-content p {
    font-family: var(--font-body);
    font-size: 20px;
    color: #444;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: #FFF;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.res-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.resource-card h3 {
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.res-meta {
    font-family: var(--font-body);
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.res-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.res-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 18px;
    margin-top: auto;
}

.res-launch {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--maroon);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.res-launch:hover {
    color: var(--gold);
}

.res-chips {
    display: flex;
    gap: 8px;
}

.res-chip {
    font-family: var(--font-body);
    font-size: 10px;
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* 2. CONCERNS SECTION */
.concerns {
    background: #FDFBF7;
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.concerns-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.concerns-intro h2 {
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.concerns-intro .lead {
    margin-top: 0;
    max-width: 700px;
    font-size: 20px;
    color: #444;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.concern-card {
    background: #FFF;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concern-icon {
    width: 50px;
    height: 50px;
    background: rgba(107, 39, 55, 0.05);
    color: var(--maroon);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.concern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(107, 39, 55, 0.08);
}

.concern-card h3 {
    line-height: 1.35;
    color: var(--maroon);
    margin: 0 0 18px;
    font-size: 22px;
}

.concern-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.concern-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    align-self: flex-start;
}

/* 3. LIFECYCLE STRIP (TIME LINE) */
.lifecycle-strip {
    padding: 100px 0;
    background: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lifecycle-header {
    text-align: center;
    margin-bottom: 80px;
}

.lifecycle-header h2 {
    margin: 10px 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.progress-line {
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #EAEAEA;
    z-index: 1;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Arbitrary progress visual */
    height: 100%;
    background: var(--gold);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.t-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.t-dot {
    width: 26px;
    height: 26px;
    background: #FFF;
    border: 3px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 6px #FFF;
}

.t-step:hover .t-dot {
    background: var(--gold);
    transform: scale(1.2);
}

.t-content h3 {
    font-size: 18px;
    color: var(--maroon);
    margin-bottom: 8px;
}

.t-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 4. SOLUTIONS FRAMEWORK (GRID 2+3) */
.fam-services {
    padding: 120px 0;
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Custom 2+3 Layout using Grid Spanning */
.biz-grid .solution-card:nth-child(1),
.biz-grid .solution-card:nth-child(2) {
    grid-column: span 3;
}

.biz-grid .solution-card:nth-child(3),
.biz-grid .solution-card:nth-child(4),
.biz-grid .solution-card:nth-child(5) {
    grid-column: span 2;
}

.solution-card {
    background: #FFF;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.solution-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.solution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.solution-card:hover .solution-card-img {
    transform: scale(1.08);
}

.solution-card .service-card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-bg-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-display);
    font-size: 160px;
    font-weight: 900;
    color: rgba(107, 39, 55, 0.03);
    line-height: 1;
    pointer-events: none;
}

.sol-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.solution-card h3 {
    font-size: 28px;
    color: var(--maroon);
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.solution-card ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.solution-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.solution-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .biz-grid .solution-card:nth-child(n) {
        grid-column: span 1;
    }

    .biz-grid .solution-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {

    .resource-grid,
    .concerns-grid {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding-left: 20px;
    }

    .progress-line {
        top: 0;
        bottom: 0;
        left: 33px;
        width: 2px;
        height: 100%;
    }

    .t-step {
        display: flex;
        text-align: left;
        gap: 20px;
        padding: 0;
    }

    .t-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .biz-grid {
        grid-template-columns: 1fr;
    }

    .biz-grid .solution-card:nth-child(n) {
        grid-column: span 1;
    }
}

/* HERO FONT SIZES */
.ip-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem) !important;
}

.ip-hero .sub {
    font-size: 20px;
    max-width: 800px;
}

/* 5. IPFS DIFFERENCE SECTION */
.ipfs-difference {
    padding: 120px 0;
    background: #FDFBF7;
}

.diff-container {
    display: flex;
    align-items: center;
    gap: 80px;
    background: #FFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.diff-image {
    flex: 1;
    height: 600px;
}

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

.diff-content {
    flex: 1;
    padding: 60px 80px 60px 0;
}

.diff-content h2 {
    font-size: 42px;
    margin: 15px 0 25px;
    line-height: 1.1;
    color: var(--charcoal);
}

.diff-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.diff-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
}

.stat-item {
    flex: 1;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .diff-container {
        flex-direction: column;
        gap: 0;
    }

    .diff-image {
        width: 100%;
        height: 400px;
    }

    .diff-content {
        padding: 50px 40px;
    }
}