:root {
    --pw-primary: #087b70;
    --pw-primary-dark: #055c54;
    --pw-navy: #071a38;
    --pw-muted: #64748b;
    --pw-soft: #f3f8f7;
    --pw-line: #dbe7e5;
    --pw-white: #ffffff;
    --pw-accent: #e9b949;
}

.pw-home {
    overflow: hidden;
    color: var(--pw-navy);
    background: #ffffff;
}

.pw-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.pw-hero-image,
.pw-hero-shade {
    position: absolute;
    inset: 0;
}

.pw-hero-image {
    z-index: -3;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.pw-hero-shade {
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(4, 22, 48, .97) 0%,
            rgba(4, 35, 55, .90) 48%,
            rgba(4, 46, 57, .58) 100%
        );
}

.pw-hero-container {
    padding-top: 78px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .72fr);
    align-items: center;
    gap: 70px;
}

.pw-hero-content {
    max-width: 730px;
}

.pw-kicker,
.pw-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pw-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pw-kicker {
    color: #9ee5dd;
}

.pw-kicker::before,
.pw-section-label::before {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.pw-hero h1 {
    max-width: 750px;
    margin: 19px 0 21px;
    color: white;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.pw-hero h1 span {
    color: #89e0d6;
}

.pw-hero-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.75;
}

.pw-hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.pw-button {
    min-height: 50px;
    padding: 13px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.pw-button:hover {
    transform: translateY(-2px);
}

.pw-button-primary {
    color: white;
    background: var(--pw-primary);
    box-shadow: 0 13px 30px rgba(8, 123, 112, .27);
}

.pw-button-primary:hover {
    color: white;
    background: var(--pw-primary-dark);
}

.pw-button-secondary {
    color: white;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .26);
    backdrop-filter: blur(10px);
}

.pw-button-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, .16);
}

.pw-hero-points {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 700;
}

.pw-hero-points span::before {
    margin-right: 7px;
    content: "✓";
    color: #89e0d6;
    font-weight: 900;
}

.pw-hero-panel {
    padding: 27px;
    color: var(--pw-navy);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 13, 30, .28);
    backdrop-filter: blur(15px);
}

.pw-panel-heading {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--pw-line);
    font-size: 15px;
    font-weight: 900;
}

.pw-live-dot {
    width: 9px;
    height: 9px;
    background: #16a268;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(22, 162, 104, .10);
}

.pw-journey-step {
    padding: 20px 0;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--pw-line);
}

.pw-journey-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pw-step-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--pw-primary);
    background: #e6f5f3;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 900;
}

.pw-journey-step strong {
    display: block;
    margin: 2px 0 5px;
    font-size: 15px;
}

.pw-journey-step p {
    margin: 0;
    color: var(--pw-muted);
    font-size: 13px;
    line-height: 1.55;
}

.pw-trust-strip {
    background: var(--pw-navy);
}

.pw-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pw-trust-item {
    padding: 24px 25px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.pw-trust-item:last-child {
    border-right: 0;
}

.pw-trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: white;
    font-size: 15px;
}

.pw-trust-item span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

.pw-section {
    padding: 95px 0;
}

.pw-section-soft {
    background: var(--pw-soft);
}

.pw-section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.pw-section-heading h2,
.pw-standards h2,
.pw-final-cta h2 {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.pw-section-heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--pw-muted);
    line-height: 1.75;
}

.pw-centered-heading {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.pw-centered-heading p {
    text-align: center;
}

.pw-feature-grid,
.pw-process,
.pw-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pw-feature-card,
.pw-process-card {
    padding: 27px;
    background: white;
    border: 1px solid var(--pw-line);
    border-radius: 17px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.pw-feature-card:hover,
.pw-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 123, 112, .35);
    box-shadow: 0 18px 45px rgba(7, 26, 56, .09);
}

.pw-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--pw-primary);
    background: #e7f5f3;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 900;
}

.pw-feature-card h3,
.pw-process-card h3 {
    margin: 21px 0 10px;
    font-size: 18px;
}

.pw-feature-card p,
.pw-process-card p {
    margin: 0;
    color: var(--pw-muted);
    font-size: 14px;
    line-height: 1.7;
}

.pw-process {
    position: relative;
}

.pw-process-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--pw-primary);
    border-radius: 50%;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(8, 123, 112, .22);
}

.pw-category-card {
    min-height: 340px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--pw-navy);
}

.pw-category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: .68;
    transition: transform .4s ease;
}

.pw-category-card:hover img {
    transform: scale(1.06);
}

.pw-category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        180deg,
        rgba(7, 26, 56, .04) 20%,
        rgba(7, 26, 56, .96) 100%
    );
}

.pw-category-card > div {
    padding: 25px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: white;
}

.pw-category-card span {
    color: #94ddd5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pw-category-card h3 {
    margin: 7px 0;
    color: white;
    font-size: 20px;
}

.pw-category-card p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    line-height: 1.55;
}

.pw-standards {
    padding: 85px 0;
    color: white;
    background:
        linear-gradient(135deg, #071a38 0%, #075c55 100%);
}

.pw-standards-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
}

.pw-label-light {
    color: #8ddfd6;
}

.pw-standards p {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.pw-standards ul {
    margin: 0;
    padding: 25px 28px;
    list-style: none;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
}

.pw-standards li {
    padding: 13px 0;
    color: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.pw-standards li:last-child {
    border-bottom: 0;
}

.pw-standards li::before {
    margin-right: 10px;
    content: "✓";
    color: #8ddfd6;
    font-weight: 900;
}

.pw-final-cta {
    padding: 75px 0;
}

.pw-cta-card {
    padding: 42px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: var(--pw-soft);
    border: 1px solid var(--pw-line);
    border-radius: 22px;
}

.pw-cta-card p {
    margin: 12px 0 0;
    color: var(--pw-muted);
}

@media (max-width: 1050px) {
    .pw-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pw-hero-content {
        max-width: 800px;
    }

    .pw-hero-panel {
        max-width: 680px;
    }

    .pw-feature-grid,
    .pw-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pw-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .pw-hero {
        min-height: auto;
    }

    .pw-hero-container {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .pw-hero h1 {
        font-size: clamp(38px, 11vw, 55px);
    }

    .pw-hero-content > p {
        font-size: 16px;
    }

    .pw-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pw-trust-item:nth-child(2) {
        border-right: 0;
    }

    .pw-section {
        padding: 70px 0;
    }

    .pw-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .pw-standards-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pw-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .pw-hero-actions,
    .pw-button {
        width: 100%;
    }

    .pw-hero-points {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .pw-hero-panel {
        padding: 21px;
    }

    .pw-trust-grid,
    .pw-feature-grid,
    .pw-process,
    .pw-category-grid {
        grid-template-columns: 1fr;
    }

    .pw-trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .pw-category-card {
        min-height: 300px;
    }

    .pw-cta-card {
        padding: 29px 24px;
    }
}