
.whoweare-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 50px;
    background: linear-gradient(to bottom, #fbfcff 0%, #fff 100%);
}

.whoweare-bg-orange {
    position: absolute;
    top: -120px;
    left: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgb(242 96 12 / 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.whoweare-bg-blue {
    position: absolute;
    top: -100px;
    right: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgb(26 86 219 / 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.whoweare-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.whoweare-header h2 {
    font-weight: 900;
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    color: var(--c-navy);
    margin: 0.6rem 0 0.2rem;
    letter-spacing: -0.01em;
}

.whoweare-header h2 span {
    color: var(--c-orange);
}

.whoweare-header h3 {
    font-family: var(--fh);
    font-weight: 800;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    color: var(--c-navy);
    margin: 0 0 1.1rem;
}

.whoweare-header p {
    font-size: 1rem;
    color: var(--c-text2);
    line-height: 1.75;
    margin: 0;
}

.whoweare-header p a {
    color: var(--c-blue);
    font-weight: 700;
    text-decoration: none;
}

.whoweare-header p a:hover {
    text-decoration: underline;
}

.whoweare-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.whoweare-card {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 18px;
    padding: 1.75rem 1.2rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.whoweare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgb(20 40 90 / 0.1);
}

.whoweare-card-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.whoweare-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.whoweare-icon svg {
    width: 26px;
    height: 26px;
    fill: #ee5735;
}

.whoweare-decor {
    position: absolute;
    right: -10px;
    top: -6px;
    width: 90px;
    height: 90px;
    pointer-events: none;
    opacity: 0.5;
}

.whoweare-decor-dots {
    background-image: radial-gradient(currentColor 1px, transparent 1px);
    background-size: 9px 9px;
    -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle, #000 0%, transparent 75%);
}

.whoweare-decor-grid {
    background-image: linear-gradient(currentColor 1px, transparent 1px),
        linear-gradient(90deg, currentColor 1px, transparent 1px);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle, #000 0%, transparent 75%);
}

.whoweare-card h4 {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--c-navy);
    line-height: 1.3;
    margin: 0 0 0rem;
}

.whoweare-underline {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 0.9rem;
    transition:
        width 0.6s ease,
        background 0.6s ease;
}

.whoweare-card p {
    font-size: 0.87rem;
    color: var(--c-text2);
    line-height: 1.7;
    margin: 0 0 1.2rem;
}

.whoweare-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0 0 1.6rem;
    flex: 1;
}

.whoweare-checklist li {
    font-size: 0.83rem;
    color: var(--c-navy);
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.whoweare-checklist li::before {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.whoweare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.4rem;
    border-radius: 9px;
    border: 1.5px solid;
    font-family: var(--fb);
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    background: #fff0;
    transition: all 0.2s;
}

.whoweare-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.whoweare-btn:hover svg {
    transform: translateX(3px);
}

.ww-orange .whoweare-icon {
    background: var(--iphtech-orange-pale, #fde8dc);
    color: var(--c-orange);
}

.ww-orange .whoweare-decor {
    color: var(--c-orange);
}

.ww-orange .whoweare-underline {
    background: var(--c-orange);
}

.ww-orange:hover .whoweare-underline {
    width: 100%;
    background: linear-gradient(to right, #ff7c00, transparent);
}

.ww-orange .whoweare-checklist li::before {
    background-color: var(--c-orange);
}

.ww-orange .whoweare-btn {
    color: var(--c-orange);
    border-color: var(--c-orange);
}

.ww-orange .whoweare-btn:hover {
    background: var(--c-orange);
    color: #fff;
}

.ww-blue .whoweare-icon {
    background: #e4ecfd;
    color: var(--c-blue);
}

.ww-blue .whoweare-decor {
    color: var(--c-blue);
}

.ww-blue .whoweare-underline {
    background: var(--c-blue);
}

.ww-blue .whoweare-checklist li::before {
    background-color: var(--c-blue);
}

.ww-blue .whoweare-btn {
    color: var(--c-blue);
    border-color: var(--c-blue);
}

.ww-blue .whoweare-btn:hover {
    background: var(--c-blue);
    color: #fff;
}

.ww-purple .whoweare-icon {
    background: #ede9fe;
    color: #8b5cf6;
}

.ww-purple .whoweare-decor {
    color: #8b5cf6;
}

.ww-purple .whoweare-underline {
    background: #8b5cf6;
}

.ww-purple .whoweare-checklist li::before {
    background-color: #8b5cf6;
}

.ww-purple .whoweare-btn {
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.ww-purple .whoweare-btn:hover {
    background: #8b5cf6;
    color: #fff;
}

.ww-green .whoweare-icon {
    background: #d1fae5;
    color: #0f9e6e;
}

.ww-green .whoweare-decor {
    color: #0f9e6e;
}

.ww-green .whoweare-underline {
    background: #0f9e6e;
}

.ww-green .whoweare-checklist li::before {
    background-color: #0f9e6e;
}

.ww-green .whoweare-btn {
    color: #0f9e6e;
    border-color: #0f9e6e;
}

.ww-green .whoweare-btn:hover {
    background: #0f9e6e;
    color: #fff;
}

.whoweare-trust {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 1rem;
    box-shadow: 0 12px 34px rgb(20 40 90 / 0.06);
}

.whoweare-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 1.2rem;
    border-right: 1px solid var(--c-border);
}

.whoweare-trust-item:last-child {
    border-right: none;
}

.whoweare-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whoweare-trust-icon svg {
    width: 20px;
    height: 20px;
    fill: #2168e4;
}

.ww-orange-icon {
    background: var(--iphtech-orange-pale, #fde8dc);
    color: var(--c-orange);
}

.ww-blue-icon {
    background: #e4ecfd;
    color: var(--c-blue);
}

.ww-purple-icon {
    background: #ede9fe;
    color: #8b5cf6;
}

.ww-green-icon {
    background: #d1fae5;
    color: #0f9e6e;
}

.whoweare-trust-item h5 {
    font-family: var(--fh);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--c-navy);
    margin: 0 0 2px;
}

.whoweare-trust-item p {
    font-size: 0.78rem;
    color: var(--c-text2);
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .whoweare-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whoweare-trust {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 0;
    }

    .whoweare-trust-item:nth-child(2) {
        border-right: none;
    }

    .whoweare-trust-item:nth-child(1),
    .whoweare-trust-item:nth-child(2) {
        border-bottom: 1px solid var(--c-border);
        padding-bottom: 1.3rem;
    }

    .whoweare-trust-item:nth-child(3),
    .whoweare-trust-item:nth-child(4) {
        padding-top: 1.3rem;
    }
}

@media (max-width: 640px) {
    .whoweare-section {
        padding: 70px 0 60px;
    }

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

    .whoweare-trust {
        grid-template-columns: 1fr;
    }

    .whoweare-trust-item {
        border-right: none !important;
        border-bottom: 1px solid var(--c-border);
        padding: 1rem 0;
    }

    .whoweare-trust-item:first-child {
        border-top: none;
        padding-top: 0;
    }

    .whoweare-trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}