/* ===========================
   Why Us Page Styles
   Rapid Property Transfers — Premium Classical Design
   =========================== */

/* ── Container ─────────────────────────────────────────── */

.wu-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Section header ────────────────────────────────────── */

.wu-section-header {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.wu-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 16px;
    line-height: 1.2;
}

.wu-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: #5a6373;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

.wu-hero {
    background-color: var(--color-navy);
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(197, 160, 73, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255,255,255,0.04) 0%, transparent 60%);
    padding: 96px 0 80px;
    text-align: center;
}

.wu-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 860px;
}

/* Eyebrow pill */

.wu-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px 6px 10px;
    border-radius: 50px;
    background: rgba(197, 160, 73, 0.15);
    border: 1px solid rgba(197, 160, 73, 0.4);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.wu-hero-eyebrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.wu-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.wu-hero-subheadline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.wu-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 640px;
    margin: 0;
}

.wu-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ============================================================
   SECTION 2 — STATS STRIP
   ============================================================ */

.wu-stats-bar {
    background-color: var(--color-gold);
    padding: 0;
}

.wu-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.wu-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 28px 20px;
    border-right: 1px solid rgba(12, 30, 74, 0.15);
    text-align: center;
}

.wu-stat-item:last-child {
    border-right: none;
}

.wu-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.wu-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(12, 30, 74, 0.7);
    text-transform: uppercase;
}

/* ============================================================
   SECTION 3 — USP GRID
   ============================================================ */

.wu-usps {
    padding: 96px 0;
    background-color: #f8f9fb;
}

.wu-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wu-usp-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(12, 30, 74, 0.08);
    border-left: 4px solid var(--color-gold);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wu-usp-card:hover {
    box-shadow: 0 8px 32px rgba(12, 30, 74, 0.1);
    transform: translateY(-2px);
}

.wu-usp-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(197, 160, 73, 0.12), rgba(197, 160, 73, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.wu-usp-icon i,
.wu-usp-icon svg {
    width: 22px;
    height: 22px;
}

.wu-usp-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.3;
}

.wu-usp-desc {
    font-size: 0.9375rem;
    color: #5a6373;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SECTION 4 — COMPARISON TABLE
   ============================================================ */

.wu-comparison {
    padding: 96px 0;
    background-color: #ffffff;
}

.wu-comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 2px 24px rgba(12, 30, 74, 0.08);
    border: 1px solid rgba(12, 30, 74, 0.08);
}

.wu-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.wu-comparison-table thead tr {
    background-color: var(--color-navy);
}

.wu-comparison-table thead th {
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    border: none;
}

.wu-comparison-table thead th.wu-col-feature {
    text-align: left;
    color: rgba(255, 255, 255, 0.65);
    width: 50%;
}

.wu-comparison-table thead th.wu-col-ours {
    background-color: rgba(197, 160, 73, 0.15);
}

/* Gold badge on our column header */
.wu-col-badge {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.875rem;
}

.wu-comparison-table tbody tr {
    border-bottom: 1px solid rgba(12, 30, 74, 0.06);
    transition: background-color 0.15s ease;
}

.wu-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.wu-comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fb;
}

.wu-comparison-table tbody tr:nth-child(even) td.wu-col-ours {
    background-color: rgba(197, 160, 73, 0.06);
}

.wu-comparison-table tbody tr:nth-child(odd) td.wu-col-ours {
    background-color: rgba(197, 160, 73, 0.04);
}

.wu-comparison-table tbody tr:hover {
    background-color: rgba(12, 30, 74, 0.02);
}

.wu-comparison-table tbody td {
    padding: 18px 28px;
    font-size: 0.9375rem;
    color: #374151;
    vertical-align: middle;
    border: none;
}

.wu-comparison-table tbody td.wu-col-feature {
    font-weight: 500;
    color: var(--color-navy);
}

.wu-comparison-table tbody td.wu-col-ours,
.wu-comparison-table tbody td.wu-col-theirs {
    text-align: center;
}

/* Status icons */

.wu-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.wu-status svg {
    width: 18px;
    height: 18px;
}

.wu-status--yes {
    background-color: rgba(197, 160, 73, 0.12);
    color: var(--color-gold);
}

.wu-status--no {
    background-color: rgba(209, 40, 40, 0.08);
    color: #b91c1c;
}

.wu-status--partial {
    width: auto;
    height: auto;
    background: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: #92400e;
    letter-spacing: 0;
}

/* ============================================================
   SECTION 5 — OUR PROMISE
   ============================================================ */

.wu-promise {
    padding: 96px 0;
    background-color: var(--color-navy);
    background-image:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(197, 160, 73, 0.1) 0%, transparent 65%);
}

.wu-promise-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.wu-promise-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Shield badge */

.wu-promise-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(197, 160, 73, 0.15);
    border: 2px solid rgba(197, 160, 73, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.wu-promise-badge svg {
    width: 32px;
    height: 32px;
}

/* Gold separator line */

.wu-promise-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    margin-top: 8px;
}

.wu-promise-title {
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.wu-promise-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.wu-promise-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: left;
}

.wu-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-weight: 400;
}

.wu-promise-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197, 160, 73, 0.2);
    border: 1.5px solid rgba(197, 160, 73, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.wu-promise-check svg {
    width: 14px;
    height: 14px;
}

/* ── Mobile comparison cards (always rendered, toggled via CSS) ─ */

.wu-comparison-mobile {
    display: none; /* shown only on mobile */
}

.wu-cmp-col-heads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.wu-cmp-col-head {
    border-radius: 8px 8px 0 0;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
}

.wu-cmp-col-head--ours {
    background: var(--color-navy);
    color: var(--color-gold);
}

.wu-cmp-col-head--theirs {
    background: rgba(12, 30, 74, 0.08);
    color: #6b7280;
}

.wu-cmp-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wu-cmp-card {
    background: #ffffff;
    border: 1px solid rgba(12, 30, 74, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.wu-cmp-feature {
    padding: 12px 16px;
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-navy);
    border-bottom: 1px solid rgba(12, 30, 74, 0.06);
    line-height: 1.4;
}

.wu-cmp-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wu-cmp-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
}

.wu-cmp-col--ours {
    background: rgba(197, 160, 73, 0.06);
    border-right: 1px solid rgba(12, 30, 74, 0.06);
}

.wu-cmp-col--theirs {
    background: #fafafa;
}

/* ── Hero with background image ────────────────────────────── */

.wu-hero.has-bg {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.wu-hero.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 30, 74, 0.88);
    z-index: 0;
}

.wu-hero.has-bg .wu-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {

    .wu-hero {
        padding: 72px 0 64px;
    }

    .wu-usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wu-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .wu-stat-item:nth-child(2) {
        border-right: none;
    }

    .wu-stat-item:nth-child(3) {
        border-top: 1px solid rgba(12, 30, 74, 0.15);
    }

    .wu-stat-item:nth-child(4) {
        border-top: 1px solid rgba(12, 30, 74, 0.15);
        border-right: none;
    }

}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {

    .wu-hero {
        padding: 56px 0 48px;
    }

    .wu-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .wu-hero-ctas .btn {
        width: 100%;
    }

    .wu-usps,
    .wu-comparison,
    .wu-promise {
        padding: 64px 0;
    }

    .wu-usp-grid {
        grid-template-columns: 1fr;
    }

    .wu-usp-card {
        padding: 28px 24px;
    }

    .wu-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Swap comparison: hide table, show cards */
    .wu-comparison-desktop { display: none; }
    .wu-comparison-mobile  { display: block; }

    .wu-section-header {
        margin-bottom: 40px;
    }

    .wu-promise-inner {
        gap: 36px;
    }

}
