/* How It Works Widget Component */

.wt-hiw-section {
    padding: 6rem 0;
    color: #ffffff;
    box-sizing: border-box;
}

.wt-hiw-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

/* Left Column */
.wt-hiw-left {
    align-self: start;
}

.wt-hiw-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1.5rem;
}

.wt-hiw-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: normal;
    margin: 0 0 4rem 0;
}

.wt-hiw-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.wt-hiw-steps {
    display: flex;
    flex-direction: column;
}

.wt-hiw-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-hiw-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-hiw-step-num {
    font-size: 0.7rem;
    color: var(--primary);
    font-family: sans-serif;
    font-weight: 700;
}

.wt-hiw-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.wt-hiw-step-title {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    margin: 0;
    font-weight: normal;
    color: #ffffff;
}

.wt-hiw-step-desc {
    font-size: 0.75rem;
    color: #888888;
    margin: 0;
}

/* Right Column */
.wt-hiw-right {
    align-self: start;
}

.wt-hiw-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.wt-hiw-box-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #667953; /* Subtle green/grey tint from mockup */
    margin-bottom: 1rem;
}

.wt-hiw-box-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: normal;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.wt-hiw-box-desc {
    font-size: 0.85rem;
    color: #9F978C;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.wt-hiw-included-list {
    display: flex;
    flex-direction: column;
}

.wt-hiw-included-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-hiw-included-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-hiw-included-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.wt-hiw-included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(233, 99, 38, 0.3); /* faint orange border */
    border-radius: 4px;
    color: var(--primary);
}

.wt-hiw-included-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.wt-hiw-included-icon i {
    font-size: 14px;
    color: var(--primary);
}

.wt-hiw-included-text {
    font-size: 0.9rem;
    color: #ffffff;
}

.wt-hiw-included-check {
    color: #555555; /* Very dim checkmark */
}

.wt-hiw-box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.wt-hiw-footer-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
}

.wt-hiw-footer-value {
    font-size: 0.85rem;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .wt-hiw-section {
        padding: 5rem 0;
    }
    .wt-hiw-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .wt-hiw-box {
        padding: 2rem;
    }
}
