:root {
    --pg: #056066;
    --pg-dark: #03474c;
    --pg-deep: #02383c;
    --pg-light: #e9f5f4;
    --pg-ink: #102a2d;
    --pg-muted: #5c7072;
    --pg-line: rgba(5, 96, 102, .14);
    --pg-warm: #f7fbfa;
    --pg-gold: #f4a62a;
    --pg-gold-ink: #3b2705;
    --pg-teal: #55ada3;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body {
    margin: 0;
    background: #fff;
    color: var(--pg-ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pg); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.skip {
    position: absolute;
    left: -9999px;
}

/* HEADER — live Avada v6 flyout: logo left, hamburger right */
.site-head {
    position: relative;
    z-index: 10011;
    background: #fff;
}
.site-head-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    min-height: 144px;
}
.site-logo { display: block; line-height: 0; }
.site-logo img { width: 200px; height: auto; max-height: 144px; }
.fly-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.fly-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: #111;
    margin-left: auto;
    transition: transform .25s ease, opacity .25s ease;
}
.site-head.is-open .fly-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-head.is-open .fly-toggle span:nth-child(2) { opacity: 0; }
.site-head.is-open .fly-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.flyout {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10010;
    align-items: center;
    justify-content: center;
    padding: 160px 30px 60px;
}
.site-head.is-open .flyout { display: flex; }
.site-head.is-open { z-index: 10020; }
.site-head.is-open .site-head-bar { position: relative; z-index: 10021; background: #fff; }
.flyout-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.flyout-nav a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}
.flyout-nav a:hover,
.flyout-nav a.is-on { border-bottom-color: #55aea3; }

/* HERO */
.hero {
    position: relative;
    padding: 72px 0 80px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 14%, rgba(73,186,180,.32), transparent 31%),
        linear-gradient(145deg, #02383c 0%, #056066 52%, #074e53 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 48px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffe0a2;
    background: rgba(244,166,42,.12);
    border: 1px solid rgba(244,166,42,.42);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.hero h1, .page-hero h1, .section h2, .split h2, .close h2 {
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.08;
    text-transform: none;
}
.hero h1 { font-size: clamp(34px, 5vw, 62px); color: #fff; }
.hero h1 em, .lead-mark {
    font-style: normal;
    color: #9de6df;
}
.hero p { color: rgba(255,255,255,.82); max-width: 640px; }
.hero .kicker {
    margin-top: 22px;
    font-weight: 800;
    color: #fff;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}
.btn-gold { background: var(--pg-gold); color: var(--pg-gold-ink); }
.btn-gold:hover { background: #ffb83f; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.btn-line { color: var(--pg); border: 1px solid var(--pg); }
.hero-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,18,20,.35);
}
.hero-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* PAGE HERO */
.page-hero {
    padding: 56px 0 48px;
    color: #fff;
    background: linear-gradient(145deg, #02383c, #056066);
}
.page-hero h1 { font-size: clamp(32px, 4.4vw, 52px); color: #fff; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 720px; }

.section { padding: 80px 0; }
.section-soft { background: var(--pg-warm); }
.kicker-s {
    margin: 0 0 10px;
    color: var(--pg);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.prose p { margin: 0 0 16px; color: var(--pg-muted); }
.prose .line { margin: 0 0 10px; color: var(--pg-ink); font-weight: 600; }
.prose .why { color: var(--pg); font-weight: 800; letter-spacing: .04em; }
.big-word {
    margin: 22px 0;
    color: var(--pg);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.03em;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.split img { width: 100%; border-radius: 24px; object-fit: cover; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.card {
    padding: 28px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--pg-line);
    box-shadow: 0 16px 36px rgba(5,96,102,.08);
}
.card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--pg-muted); font-size: 15px; }

.quote {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--pg-gold);
    background: #fff6e8;
    border-radius: 0 12px 12px 0;
    font-weight: 800;
}

.sig {
    margin-top: 56px;
    padding: 36px 32px;
    border-radius: 22px;
    background: var(--pg-deep);
    color: #fff;
}
.sig p { margin: 0 0 8px; color: rgba(255,255,255,.78); }
.sig .title { color: var(--pg-gold); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.sig h3 { margin: 8px 0 16px; color: #fff; font-size: 22px; }
.sig .name { margin-top: 18px; font-weight: 800; color: #fff; }

.close {
    padding: 90px 0;
    text-align: center;
    color: #fff;
    background: var(--pg);
}
.close h2 { color: #fff; font-size: clamp(32px, 4.5vw, 52px); }
.close p { max-width: 740px; margin: 16px auto 0; color: rgba(255,255,255,.78); }
.close .actions { justify-content: center; }

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.review {
    padding: 26px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--pg-line);
}
.review p { margin: 0 0 14px; color: var(--pg-muted); }
.review strong { color: var(--pg-ink); }

.book-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.book-cover {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(16,42,45,.18);
}

.form {
    display: grid;
    gap: 12px;
    max-width: 560px;
}
.form input, .form textarea, .form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d5e3e2;
    border-radius: 12px;
    font: inherit;
}
.form textarea { min-height: 140px; }

.foot {
    padding: 18px 0;
    background: #435967;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}
.foot-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.foot a { color: rgba(255,255,255,.82); text-decoration: none; }
.pg-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.pg-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
/* CONTACT — rebuilt 2026 */
.pg-contact {
    background: #f1f6f5;
    padding: 0 0 clamp(40px, 5vw, 76px);
    color: #1b2b31;
}
.pg-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}
.pg-contact-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(26px, 3vw, 44px);
    padding: clamp(28px, 3.4vw, 52px);
    background: linear-gradient(160deg, #0a6c70 0%, #056066 46%, #03474c 100%);
    color: #fff;
}
.pg-contact-lead {
    margin: 14px 0 0;
    max-width: 42ch;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
}
.pg-contact-start {
    margin: 16px 0 0;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
}
.pg-contact-details {
    display: grid;
    gap: 12px;
}
.pg-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.pg-contact-item:hover {
    background: rgba(255, 255, 255, .17);
    transform: translateY(-2px);
}
.pg-contact-item-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
}
.pg-contact-label {
    display: block;
    margin-bottom: 3px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}
.pg-contact-val {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.pg-contact-form {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(26px, 3.2vw, 48px);
    background: #fff;
    color: #1b2b31;
}
.pg-contact-row,
.pg-wa-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pg-wa-row {
    grid-template-columns: minmax(148px, .9fr) minmax(0, 1.4fr);
}
.pg-field-group {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.pg-field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6b8189;
}
.pg-contact-form input,
.pg-contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #dde8e6;
    border-radius: 12px;
    background: #f8fbfa;
    color: #1b2b31;
    font: inherit;
    font-size: 15.5px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pg-contact-form input:focus,
.pg-contact-form textarea:focus {
    outline: 0;
    border-color: #55aea3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(85, 174, 163, .18);
}
.pg-contact-form textarea { min-height: 130px; resize: vertical; }
.pg-contact-ok,
.pg-contact-err {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}
.pg-contact-ok { background: #e8f7ee; color: #14532d; }
.pg-contact-err { background: #fde8e8; color: #7f1d1d; }
.pg-captcha-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px dashed #cfe0dd;
    border-radius: 14px;
    background: #f8fbfa;
}
.pg-captcha-img-wrap { line-height: 0; }
.pg-captcha-img-wrap img {
    width: 180px;
    height: 50px;
    border: 1px solid #dde8e6;
    border-radius: 10px;
    background: #fff;
}
.pg-captcha-inputs { display: grid; gap: 8px; min-width: 0; }
.pg-captcha-refresh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: start;
    padding: 0;
    border: 0;
    background: none;
    color: #056066;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.pg-captcha-refresh:hover { color: #03474c; }
.pg-contact-submit {
    justify-self: start;
    min-height: 54px;
    margin-top: 4px;
    padding: 15px 34px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #056066 0%, #03474c 100%);
    color: #fff;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 30px -16px rgba(5, 96, 102, .75);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pg-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -16px rgba(5, 96, 102, .85);
}
.pg-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pg-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.1);
}
.pg-socials a:hover { background: rgba(255,255,255,.2); }
.pg-wa,
.pg-top {
    position: fixed;
    bottom: 28px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pg-wa {
    right: 28px;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}
.pg-wa:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 32px rgba(37, 211, 102, .55);
}
.pg-top {
    left: 28px;
    background: var(--pg);
    box-shadow: 0 10px 28px rgba(5, 96, 102, .45);
}
.pg-top:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 32px rgba(5, 96, 102, .55);
}

/* Exact live slider canvas: 1240 x 900, then scaled to the viewport */
.page-home { background: #fff; }
.page-home .site-head {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
}
.page-home .site-head.is-open { background: #fff; }
.home-hero-stage img { max-width: none; }
.home-hero-stage .px {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
    transition: transform 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.home-hero { background: #fff; }
.home-hero-frame {
    width: 100%;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.home-hero-stage {
    --px: 0px;
    --py: 0px;
    width: 1240px;
    height: 900px;
    position: relative;
    flex: 0 0 auto;
    transform-origin: center center;
    overflow: hidden;
    background: #fff;
    font-family: "Six Caps", Impact, sans-serif;
}

.rs-world {
    position: absolute;
    left: 270px;
    top: 271px;
    width: 700px;
    height: 358px;
    z-index: 8;
    pointer-events: none;
}
.rs-lines {
    position: absolute;
    left: 130px;
    top: 114px;
    width: 980px;
    height: 673px;
    z-index: 7;
    pointer-events: none;
}
.rs-ghost {
    position: absolute;
    margin: 0;
    left: 50%;
    text-align: center;
    white-space: nowrap;
    line-height: .82;
    letter-spacing: 0;
    font-weight: 400;
    pointer-events: none;
}
.rs-coach {
    top: 244px;
    width: 715px;
    margin-left: -357.5px;
    font-size: 120px;
    color: rgba(67, 89, 103, .75);
    z-index: 13;
}
.rs-counsellor {
    top: 390px;
    width: 939px;
    margin-left: -469.5px;
    font-size: 120px;
    color: rgba(5, 96, 102, .88);
    z-index: 10;
}
.rs-speaker {
    top: auto;
    bottom: 42px;
    width: 1100px;
    margin-left: -550px;
    font-size: 72px;
    color: rgba(67, 89, 103, .75);
    z-index: 17;
}
.rs-pg {
    position: absolute;
    bottom: 0;
    height: auto;
    max-width: none;
    pointer-events: none;
}
.rs-pg-l {
    left: 155px;
    width: 230px;
    height: 851px;
    object-fit: contain;
    object-position: bottom center;
    z-index: 15;
}
.rs-pg-r {
    left: 765px;
    width: 350px;
    height: 842px;
    object-fit: contain;
    object-position: bottom center;
    z-index: 16;
}
.rs-side {
    position: absolute;
    top: 210px;
    margin: 0;
    width: 58px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 89, 103, .45);
    color: #fff;
    font-size: 48px;
    letter-spacing: 10px;
    line-height: 1;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    pointer-events: none;
}
.rs-side-l {
    left: 18px;
    z-index: 11;
    transform: rotate(180deg);
}
.rs-side-r {
    left: auto;
    right: 18px;
    z-index: 12;
}

.rs-title-mask {
    position: absolute;
    left: 50%;
    top: 80px;
    width: 720px;
    margin-left: -360px;
    overflow: hidden;
    z-index: 19;
    text-align: center;
}
.rs-kicker,
.rs-title h1 {
    margin: 0;
    font-family: "Six Caps", Impact, sans-serif;
    font-weight: 400;
    color: #000;
    line-height: .9;
}
.rs-kicker { font-size: 28px; letter-spacing: 6px; }
.rs-title h1 { margin-top: 2px; font-size: 60px; letter-spacing: 2px; }
.rs-solve {
    margin: 10px 0 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #435967;
}

.rs-btn-mask {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 17;
}
.rs-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.rs-btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 20px 22px;
    background: #435967;
    color: #fff;
    font-family: "Six Caps", Impact, sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    text-decoration: none;
    line-height: 1;
}

.anim-world { animation: heroFadeBack 1500ms cubic-bezier(.68,-.55,.265,1.55) both; }
.anim-from-right { animation: heroFromRight 1500ms cubic-bezier(.455,.03,.515,.955) 50ms both; }
.anim-from-left { animation: heroFromLeft 1500ms cubic-bezier(.22,.61,.36,1) 900ms both; }
.anim-from-bottom { animation: heroFromBottom 1500ms cubic-bezier(.455,.03,.515,.955) 1540ms both; }
.anim-scale-l { animation: heroScaleIn 1250ms cubic-bezier(.445,.05,.55,.95) 3050ms both; transform-origin: 50% 100%; }
.anim-scale-r { animation: heroScaleIn 1250ms cubic-bezier(.445,.05,.55,.95) 4270ms both; transform-origin: 50% 100%; }
.anim-lines { animation: heroLines 1000ms ease 4270ms both; }
.anim-side { animation: heroFromLeft 1500ms ease 4270ms both; }
.anim-from-top { animation: heroFromTop 1200ms ease 4270ms both; }
.rs-title h1 { animation: heroPulse 2000ms ease-in-out 5470ms infinite alternate; }
.anim-btn { animation: heroFromBottom 1200ms ease 5500ms both; }

@keyframes heroFadeBack {
    from { opacity: 0; transform: scale(.86); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes heroFromLeft {
    from { opacity: 0; transform: translateX(-120%); }
    to { opacity: 1; transform: none; }
}
@keyframes heroFromRight {
    from { opacity: 0; transform: translateX(120%); }
    to { opacity: 1; transform: none; }
}
@keyframes heroFromBottom {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: none; }
}
@keyframes heroFromTop {
    from { opacity: 0; transform: translateY(-110%); }
    to { opacity: 1; transform: none; }
}
@keyframes heroScaleIn {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes heroLines {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: none; }
}
@keyframes heroPulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .anim-world, .anim-from-right, .anim-from-left, .anim-from-bottom,
    .anim-scale-l, .anim-scale-r, .anim-lines, .anim-side, .anim-from-top,
    .anim-btn, .rs-title h1 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    background: #055f66;
    color: #fff;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.home-btn:hover { background: #03474c; color: #fff; transform: translateY(-1px); }
.home-btn-light { background: #fff; color: #55ada3; }
.home-btn-light:hover { background: rgba(255, 255, 255, .9); color: #3d8a82; }
.home-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.home-btn-ghost:hover { background: #fff; color: #55ada3; }

.home-roles {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #425866;
    color: #fff;
}
.home-roles-inner {
    max-width: 780px;
    text-align: center;
}
.home-roles .pg-label {
    margin-bottom: 22px;
}
.home-roles .pg-mark {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: .92;
}
.home-roles .pg-title {
    margin: 0;
    color: #fff;
    min-height: 0;
}
.home-roles-lead,
.home-roles-qs li,
.home-roles-and {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 17.5px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #fff;
}
.home-roles-lead {
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
}
.home-roles-qs {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}
.home-roles-and {
    margin: 0 0 10px;
    color: rgba(255,255,255,.78);
}
.pg-reviews-google {
    width: min(100%, 420px);
    margin: 36px auto 0;
    text-align: left;
}

.home-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    background: #f7faf7;
    padding: 36px 20px 34px;
}
.pg-google-reviews-360,
.pg-ipr-card-section {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
}
.pg-google-reviews-360 .ppv-google-reviews-trigger {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    max-width: none;
    min-height: 166px;
    box-sizing: border-box;
    padding: 22px 24px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(7,26,18,.12);
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    height: 100%;
}
.pg-google-reviews-360 .ppv-google-reviews-trigger:hover {
    box-shadow: 0 22px 48px rgba(7,26,18,.2);
    border-color: rgba(26,115,232,.35);
}
.pg-google-reviews-360 .ppv-google-badge-logo {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex: 0 0 90px;
}
.pg-google-reviews-360 .ppv-google-badge-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.pg-google-reviews-360 .ppv-google-badge-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    letter-spacing: -.025em;
}
.pg-google-reviews-360 .ppv-google-badge-rating {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}
.pg-google-reviews-360 .ppv-google-badge-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
    color: #fbbc04;
    font-size: 22px;
    letter-spacing: 1px;
}
.pg-google-reviews-360 .ppv-google-badge-count {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.pg-ipr-card-section .ipr-pcard {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    background: radial-gradient(120% 90% at 12% 0%, #0d3324 0%, #071a12 52%, #04110c 100%);
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 22px 48px rgba(7,26,18,.35), inset 0 0 0 1px rgba(154,230,90,.16);
}
.pg-ipr-card-section .ipr-pcard__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 25% 40%, rgba(154,230,90,.18) 0%, transparent 45%),
        radial-gradient(circle at 72% 55%, rgba(95,208,104,.22) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(60,179,113,.12) 0%, transparent 50%);
    mix-blend-mode: screen;
    animation: pgIprCardMesh 8s ease-in-out infinite alternate;
}
.pg-ipr-card-section .ipr-pcard__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}
.pg-ipr-card-section .ipr-pcard__row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 24px;
}
.pg-ipr-card-section .ipr-pcard__seal {
    flex: 0 0 122px;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pg-ipr-card-section .ipr-pcard__seal img {
    display: block;
    width: 150px !important;
    height: 150px !important;
    max-width: none !important;
    border-radius: 50%;
    background: #fff;
    border: 0;
}
.pg-ipr-card-section .ipr-pcard__copy { min-width: 0; flex: 1; }
.pg-ipr-card-section .ipr-pcard__name {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.025em;
}
.pg-ipr-card-section .ipr-pcard__label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #88B04B;
    font-weight: 700;
}
.pg-ipr-card-section .ipr-pcard__num {
    display: block;
    margin-top: 5px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
@keyframes pgIprCardMesh { 0% { opacity: .65; } 100% { opacity: 1; } }

#googleReviewsModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10020;
    background: rgba(0,0,0,.5);
    overflow: auto;
    padding: 1.5rem;
}
#googleReviewsModal.is-open { display: block; }
#googleReviewsModalBox {
    max-width: 480px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
    overflow: hidden;
}
#googleReviewsModal .gr-modal-head {
    position: relative;
    padding: 24px 24px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
#googleReviewsModalClose {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    line-height: 1;
}
#googleReviewsModalHeader { display: none; }
#googleReviewsModalHeader.is-on { display: block; }
.gr-modal-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
#googleReviewsModalTitle { font-size: 1.25rem; font-weight: 700; color: #111; }
#googleReviewsModalRatingLine { margin: 0 0 16px; font-size: .95rem; color: #5f6368; }
#googleReviewsModalCta {
    display: inline-block;
    padding: 10px 20px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}
#googleReviewsModalBody { padding: 0; max-height: 55vh; overflow-y: auto; }
#googleReviewsModalLoading,
#googleReviewsModalEmpty { text-align: center; padding: 3rem 1.5rem; color: #6b7280; }
.gr-review {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}
.gr-review-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8eaed;
    color: #5f6368;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.gr-review-stars { color: #fbbc04; margin-bottom: 6px; letter-spacing: 1px; }
.gr-review p { margin: 0; font-size: .9rem; color: #3c4043; line-height: 1.5; }

/* ==========================================================
   HOME — everything below the IPR card
   ========================================================== */
.pg-block {
    background: #eef3f2;
    padding: 0 0 24px;
}
.pg-block:first-of-type { padding-top: 40px; }
.pg-block-talk { padding-bottom: 48px; }
.pg-shell {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

.pg-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 48px);
    align-items: center;
    padding: clamp(28px, 3.2vw, 44px);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 40px -28px rgba(16, 42, 45, .35);
}
.pg-panel-copy,
.pg-panel-media { min-width: 0; width: 100%; }
.pg-panel-copy p {
    margin: 0 0 14px;
    font-size: 16.5px;
    line-height: 1.7;
    color: #4a6168;
}
.pg-panel-copy p:last-of-type { margin-bottom: 0; }
.pg-panel-teal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #55ada3;
    color: #fff;
    box-shadow: none;
}
.pg-panel-teal p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.65;
    color: #fff;
}
.pg-panel-teal .pg-title { color: #fff; }
.pg-panel-sig { display: block; }

.pg-label {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(85, 173, 163, .14);
    color: #2d6f69;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.pg-label-on { background: rgba(255,255,255,.2); color: #fff; }
.pg-title {
    margin: 0 0 16px;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: #163037;
}
.pg-mark {
    margin: 4px 0 8px;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: .9;
    color: #fff;
}
.pg-role {
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.pg-fancy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 0 4px;
    overflow: visible;
}
.pg-whyhero-copy .pg-fancy p {
    position: relative;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0;
    padding: .2em .35em .22em .22em;
    overflow: hidden;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    animation: none;
    text-shadow: none;
    box-sizing: border-box;
}
.pg-whyhero-copy .pg-fancy p::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 42%;
    height: 180%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.12) 38%,
        rgba(255,255,255,.9) 50%,
        rgba(255,255,255,.12) 62%,
        transparent 100%
    );
    transform: skewX(-22deg) translateX(0);
    pointer-events: none;
    animation: pgShineSweep 5.5s ease-in-out infinite;
}
.pg-whyhero-copy .pg-fancy-name {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.02em;
    line-height: 1.4;
    margin-bottom: 18px;
}
.pg-whyhero-copy .pg-fancy-role {
    font-family: "Six Caps", Outfit, sans-serif;
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 20px;
}
.pg-whyhero-copy .pg-fancy-role::after { animation-delay: 1.2s; }
.pg-whyhero-copy .pg-fancy-line {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.015em;
    line-height: 1.45;
}
.pg-whyhero-copy .pg-fancy-line::after { animation-delay: 2.4s; }
@keyframes pgShineSweep {
    0%, 35% { transform: skewX(-22deg) translateX(0); }
    100% { transform: skewX(-22deg) translateX(450%); }
}
.pg-panel-teal .pg-cta { margin-top: auto; align-self: flex-start; padding-top: 0; }

.pg-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 22px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.pg-cta:hover { transform: translateY(-1px); }
.pg-cta-solid { background: #55ada3; color: #fff; }
.pg-cta-solid:hover { background: #46968d; color: #fff; }
.pg-cta-ghost { background: transparent; color: #fff; border-color: #fff; }
.pg-cta-ghost:hover { background: #fff; color: #55ada3; }
.pg-cta-white { background: #fff; color: #55ada3; }
.pg-cta-white:hover { background: #f3fffd; color: #3d8a82; }

.pg-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #10262b;
}
.pg-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pg-panel-media-book {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7f3f1;
    border-radius: 16px;
    padding: 28px;
}
.pg-panel-media-book img {
    width: 100%;
    max-width: 260px;
    border-radius: 6px;
}

.pg-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.pg-pair .pg-panel { min-height: 100%; }
.pg-pair .pg-title { min-height: 2.24em; }
.pg-pair .pg-mark { min-height: .9em; }

.pg-whyhero {
    width: 100%;
    background: #55ada3;
    color: #fff;
}
.pg-whyhero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    width: min(1440px, 88%);
    margin: 0 auto;
    align-items: stretch;
}
.pg-whyhero-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    min-width: 0;
    overflow: visible;
    justify-items: start;
    text-align: left;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
}
.pg-whyhero-col + .pg-whyhero-col {
    border-left: 1px solid rgba(255, 255, 255, .28);
}
.pg-whyhero .pg-label { justify-self: start; }
.pg-whyhero .pg-mark,
.pg-whyhero .pg-title,
.pg-whyhero-copy {
    justify-self: stretch;
    width: 100%;
    overflow: visible;
}
.pg-whyhero .pg-mark {
    margin: 6px 0 8px;
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: .92;
}
.pg-whyhero .pg-title {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
    min-height: 2.24em;
}
.pg-whyhero-copy p {
    margin: 0 0 14px;
    font-size: 17.5px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: .01em;
    color: #fff;
}
.pg-whyhero-copy p:last-child { margin-bottom: 0; }
.pg-whyhero .pg-role { color: #fff; margin: 10px 0 8px; }
.pg-whyhero .pg-cta {
    align-self: start;
    justify-self: start;
    width: auto;
    max-width: 100%;
    margin-top: 36px;
}
.pg-whyhero-light {
    background: #fff;
    color: #163037;
}
.pg-whyhero-light .pg-whyhero-inner {
    grid-template-rows: none;
    align-items: stretch;
}
.pg-whyhero-light .pg-whyhero-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-row: auto;
    grid-template-rows: none;
}
.pg-whyhero-light .pg-whyhero-col + .pg-whyhero-col {
    border-left-color: rgba(22, 48, 55, .12);
}
.pg-whyhero-light .pg-title {
    color: #163037;
    min-height: 0;
    font-size: clamp(32px, 3.2vw, 42px);
}
.pg-whyhero-light .pg-mark {
    color: #163037;
}
.pg-whyhero-light .pg-whyhero-copy p { color: #4a6168; }
.pg-whyhero-light .pg-video { border-radius: 0; }
.pg-whyhero-light .pg-cta { color: #fff; }
.pg-whyhero-light.pg-whyhero-pair .pg-whyhero-inner {
    grid-template-rows: auto auto auto 1fr auto;
}
.pg-whyhero-light.pg-whyhero-pair .pg-whyhero-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    justify-content: stretch;
}
.pg-whyhero-light.pg-whyhero-pair .pg-title { min-height: 2.24em; }
.pg-whyhero-book {
    align-items: center;
    justify-content: center;
}
.pg-whyhero-book a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
}
.pg-whyhero-book img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pg-whyhero-slate { background: #425866; }
.pg-whyhero-slate .pg-title { color: #fff; }
.pg-whyhero-slate .pg-cta {
    align-self: start;
    justify-self: start;
}
.pg-whyhero-slate .pg-cta-white { color: #425866; }
.pg-whyhero-slate .pg-cta-white:hover { color: #2c3b44; background: #f3fffd; }
.pg-whyhero-slate .pg-cta-ghost:hover { color: #425866; }
@supports not (grid-template-rows: subgrid) {
    .pg-whyhero-inner { grid-template-rows: none; }
    .pg-whyhero-col {
        display: flex;
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
    }
    .pg-whyhero-copy { flex: 1; }
}

.pg-path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 8px 0 28px;
    padding: 0;
    list-style: none;
}
.pg-path li {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 15.5px;
    line-height: 1.4;
}
.pg-path b {
    display: block;
    margin-bottom: 8px;
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    color: rgba(255,255,255,.7);
}
.pg-sigline {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.28);
}
.pg-sigline p { margin: 0 0 6px; color: #fff; }
.pg-sigline-name {
    font-family: Outfit, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pg-sigline-end { margin-top: 10px !important; font-weight: 600; }

.pg-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}
.home-roles .pg-cta-row {
    justify-content: center;
    margin-top: 28px;
}
.home-roles .pg-cta-white { color: #425866; }
.home-roles .pg-cta-white:hover { color: #2c3b44; background: #f3fffd; }
.pg-cta-row .pg-cta { margin-top: 0; }
.pg-whyhero-light .home-roles-qs {
    width: 100%;
    margin: 0 0 18px;
    text-align: left;
}
.pg-whyhero .home-roles-qs {
    width: 100%;
    margin: 0 0 18px;
    text-align: left;
}
.pg-whyhero-light .home-roles-qs li,
.pg-whyhero-light .home-roles-and {
    color: #4a6168;
}
.pg-whyhero-light .home-roles-and {
    margin: 0 0 10px;
}
.pg-about-pic {
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    flex: 1;
}
.pg-about-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}
.pg-whyhero-fill .pg-whyhero-inner {
    grid-template-rows: none;
    align-items: stretch;
}
.pg-whyhero-fill .pg-whyhero-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-row: auto;
    grid-template-rows: none;
}
.pg-quotes-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
}
.pg-quotes-inner .pg-whyhero-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-row: auto;
    grid-template-rows: none;
}
.pg-quotes-inner .pg-title { min-height: 0; }
.pg-quote-pic {
    width: 88px;
    height: 88px;
    margin: 0 0 18px;
    border-radius: 999px;
    overflow: hidden;
    background: #e9f5f4;
}
.pg-quote-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pg-whyhero-videos { background: #eaf6e8; }
.pg-whyhero-videos .pg-whyhero-col {
    justify-content: center;
    padding: clamp(28px, 4vw, 56px) clamp(16px, 3vw, 36px);
}
.pg-whyhero-videos .pg-video {
    width: 100%;
    border-radius: 0;
}
.pg-bark {
    display: inline-block;
    margin-top: 28px;
    line-height: 0;
}
.pg-bark img {
    width: 88px;
    height: auto;
    margin-inline: auto;
}

.pg-talkhero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    align-items: stretch;
}
.pg-talkpage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, .9fr);
    width: 100%;
    align-items: stretch;
}
.pg-talkpage .pg-talk-intro {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pg-talkpage-photo {
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: #163037;
}
.pg-talkpage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.pg-talk-intro .pg-mark {
    color: #fff;
    margin: 6px 0 12px;
}
.pg-talk-intro .home-roles-qs {
    width: 100%;
    margin: 0 0 18px;
    text-align: left;
}
.pg-talk-intro .pg-cta {
    margin-top: 28px;
}
.pg-talk-intro {
    background: #55ada3;
    color: #fff;
    padding: clamp(48px, 6vw, 80px) clamp(28px, 6vw, 80px);
}
.pg-talk-intro .pg-title {
    color: #fff;
    font-size: clamp(32px, 3.2vw, 42px);
    min-height: 0;
}
.pg-talk-intro .pg-whyhero-copy p,
.pg-talk-intro p {
    color: #fff;
    margin: 0 0 14px;
    font-size: 17.5px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: .01em;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}
.pg-talk-details { display: grid; gap: 16px; margin-top: 28px; }
.pg-talk-details a {
    color: #fff;
    text-decoration: none;
    font-size: 17.5px;
    font-weight: 400;
    line-height: 1.75;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}
.pg-talk-details span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .75;
}
.pg-talk-creds {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    max-width: none;
    margin-top: 28px;
}
.pg-talk-creds .pg-ishi-badges {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.pg-talk-creds .pg-ishi-badges a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    line-height: 0;
}
.pg-talk-creds .pg-ishi-badges img {
    height: 88px;
    width: auto;
    max-width: 88px;
    object-fit: contain;
}
.pg-talk-creds .pg-google-reviews-360,
.pg-talk-creds .pg-ipr-card-section {
    min-width: 0;
    height: 118px;
}
.pg-talk-creds .pg-google-reviews-360 .ppv-google-reviews-trigger {
    min-height: 0 !important;
    height: 118px;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(7, 26, 18, .12);
    overflow: hidden;
}
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-title {
    font-size: 14px;
    white-space: nowrap;
}
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-rating { font-size: 20px; }
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-stars { font-size: 13px; letter-spacing: 0; }
.pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-count { font-size: 10px; }
.pg-talk-creds .pg-ipr-card-section .ipr-pcard {
    height: 118px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(7, 26, 18, .22);
}
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__row {
    gap: 12px;
    padding: 14px 16px;
    height: 118px;
}
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__seal {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__seal img {
    width: 78px !important;
    height: 78px !important;
}
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__name { font-size: 16px; }
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__label {
    margin-top: 4px;
    font-size: 9px;
}
.pg-talk-creds .pg-ipr-card-section .ipr-pcard__num {
    margin-top: 2px;
    font-size: 22px;
}
.pg-talkpage .pg-talk-details { margin-top: 28px; }
.pg-talk-form {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: clamp(48px, 6vw, 80px) clamp(28px, 6vw, 80px);
    background: #fff;
}
.pg-talk-form input,
.pg-talk-form select,
.pg-talk-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dde8e6;
    border-radius: 8px;
    background: #f8fbfa;
    color: #1b2b31;
    font: inherit;
    font-size: 15.5px;
}
.pg-talk-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b8189' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.pg-talk-form input:focus,
.pg-talk-form select:focus,
.pg-talk-form textarea:focus {
    outline: 0;
    border-color: #55ada3;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(85, 173, 163, .18);
}
.pg-talk-form textarea { min-height: 88px; max-height: 140px; resize: vertical; }
.pg-talk-form .pg-cta { margin-top: 6px; justify-self: start; border: 0; }
.pg-talkpage .pg-talk-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
    padding: clamp(36px, 4.5vw, 56px) clamp(24px, 3.5vw, 44px);
}
.pg-talkpage .pg-talk-form input,
.pg-talkpage .pg-talk-form select,
.pg-talkpage .pg-talk-form textarea {
    padding: 16px 18px;
    font-size: 16.5px;
    border-radius: 10px;
}
.pg-talkpage .pg-talk-form input,
.pg-talkpage .pg-talk-form select { min-height: 56px; }
.pg-talkpage .pg-talk-form select { padding-right: 40px; }
.pg-talkpage .pg-talk-form .pg-field-group:has(textarea) {
    flex: none;
}
.pg-talkpage .pg-talk-form textarea {
    flex: none;
    min-height: 100px;
    max-height: 140px;
}
.pg-talkpage .pg-talk-form .pg-cta {
    min-height: 56px;
    margin-top: auto;
    padding: 0 32px;
    font-size: 13.5px;
}

@media (max-width: 720px) {
    html, body { overflow-x: clip; max-width: 100%; }
    .hero-grid, .split, .split.rev, .cards, .reviews, .book-grid, .home-split {
        grid-template-columns: 1fr;
    }
    .split.rev { direction: ltr; }
    .site-head-bar { min-height: 88px; padding: 0 16px; }
    .site-logo img { width: 116px; max-height: 84px; }
    .hero, .section { padding: 48px 0; }
    .hero-photo img { aspect-ratio: 4/3; }
    .home-hero-frame {
        height: auto;
        min-height: 0;
        aspect-ratio: 1240 / 900;
        align-items: flex-start;
        padding-top: 88px;
    }
    .home-hero-stage { transform-origin: top center; }
    .home-roles { padding: 56px 16px; }
    .home-roles-inner { max-width: 100%; }
    .home-roles .pg-title { margin-bottom: 26px; }
    .home-roles .pg-mark {
        font-size: clamp(34px, 10vw, 56px);
        line-height: .96;
        overflow-wrap: break-word;
    }
    .home-roles-qs { gap: 12px; margin-bottom: 26px; }
    .home-trust {
        grid-template-columns: minmax(0, 420px);
        justify-content: center;
        gap: 16px;
        padding: 24px 16px 28px;
    }
    .pg-google-reviews-360 { padding: 0; }
    .pg-google-reviews-360 .ppv-google-reviews-trigger { gap: 13px; padding: 18px 16px; min-height: 126px; }
    .pg-google-reviews-360 .ppv-google-badge-logo { width: 64px; height: 64px; flex-basis: 64px; }
    .pg-google-reviews-360 .ppv-google-badge-title { font-size: 18px; }
    .pg-google-reviews-360 .ppv-google-badge-rating { font-size: 22px; }
    .pg-google-reviews-360 .ppv-google-badge-stars { font-size: 18px; }
    .pg-google-reviews-360 .ppv-google-badge-count { font-size: 11px; }
    .pg-ipr-card-section .ipr-pcard__row { gap: 13px; padding: 18px 16px; }
    .pg-ipr-card-section .ipr-pcard__seal { flex-basis: 90px; width: 90px; height: 90px; }
    .pg-ipr-card-section .ipr-pcard__seal img { width: 114px !important; height: 114px !important; }
    .pg-ipr-card-section .ipr-pcard__name { font-size: 22px; }
    .pg-ipr-card-section .ipr-pcard__label { font-size: 10px; }
    .pg-ipr-card-section .ipr-pcard__num { font-size: 30px; }
    .pg-shell { width: calc(100% - 24px); }
    .pg-block:first-of-type { padding-top: 24px; }
    .pg-panel,
    .pg-pair,
    .pg-talkhero,
    .pg-talkpage,
    .pg-whyhero-inner,
    .pg-quotes-inner,
    .pg-whyhero-fill .pg-whyhero-inner,
    .pg-whyhero-light .pg-whyhero-inner,
    .pg-whyhero-light.pg-whyhero-pair .pg-whyhero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    .pg-talkpage-photo { min-height: 420px; height: auto; }
    .pg-pair .pg-title { min-height: 0; }
    .pg-whyhero-inner,
    .pg-quotes-inner { width: calc(100% - 28px); }
    .pg-whyhero-col,
    .pg-whyhero-fill .pg-whyhero-col,
    .pg-whyhero-light .pg-whyhero-col,
    .pg-whyhero-light.pg-whyhero-pair .pg-whyhero-col,
    .pg-quotes-inner .pg-whyhero-col {
        display: flex;
        flex-direction: column;
        grid-row: auto;
        grid-column: auto;
        grid-template-rows: none;
        height: auto;
        min-height: 0;
        padding: 40px 4px;
    }
    .pg-whyhero .pg-mark {
        font-size: clamp(34px, 10vw, 56px);
        overflow-wrap: break-word;
    }
    .pg-whyhero .pg-title,
    .pg-whyhero-slate .pg-mark,
    .pg-whyhero-slate .pg-title,
    .pg-whyhero-light.pg-whyhero-pair .pg-title { min-height: 0; }
    .pg-whyhero-col + .pg-whyhero-col {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .28);
        padding-top: 36px;
    }
    .pg-whyhero-light .pg-whyhero-col + .pg-whyhero-col {
        border-top-color: rgba(22, 48, 55, .12);
    }
    .pg-whyhero-book {
        min-height: 0;
    }
    .pg-whyhero-book a { height: auto; }
    .pg-whyhero-book img {
        height: auto;
        width: min(100%, 340px);
        max-height: 460px;
    }
    .pg-whyhero .pg-cta { width: 100%; }
    .pg-cta-row { width: 100%; }
    .pg-cta-row .pg-cta { width: 100%; }
    .pg-about-pic { min-height: 320px; }
    .pg-panel { padding: 22px 18px; }
    .pg-talk-intro,
    .pg-talk-form { padding: 22px 18px; }
    .pg-talkpage .pg-talk-form {
        height: auto;
        min-height: 0;
    }
    .pg-talkpage .pg-talk-form .pg-field-group:has(textarea) { flex: none; }
    .pg-talkpage .pg-talk-form textarea { min-height: 88px; }
    .pg-path { grid-template-columns: 1fr; }
    .pg-cta,
    .pg-talk-form .pg-cta { width: 100%; }
    .pg-contact-row,
    .pg-wa-row,
    .pg-captcha-box { grid-template-columns: 1fr; justify-items: start; }
    .foot-inner { justify-content: center; text-align: center; }
    .pg-socials { margin-inline: auto; }
    .pg-wa,
    .pg-top { bottom: 16px; width: 56px; height: 56px; }
    .pg-wa { right: 16px; }
    .pg-top { left: 16px; }
    .pg-reviews-google { width: 100%; margin-top: 28px; }
    .pg-talk-creds .pg-ishi-badges {
        gap: 12px;
    }
    .pg-talk-creds .pg-ishi-badges a,
    .pg-talk-creds .pg-ishi-badges img {
        height: 76px;
        max-width: 76px;
    }
    .pg-talk-creds .pg-google-reviews-360,
    .pg-talk-creds .pg-ipr-card-section,
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-reviews-trigger,
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard,
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__row {
        height: 108px;
    }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-reviews-trigger {
        min-height: 0 !important;
        gap: 10px;
        padding: 12px 12px;
    }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-logo {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-title { font-size: 13px; }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-rating { font-size: 18px; }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-stars { font-size: 12px; }
    .pg-talk-creds .pg-google-reviews-360 .ppv-google-badge-count { font-size: 9px; }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__row { gap: 10px; padding: 12px 12px; }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__seal {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__seal img {
        width: 64px !important;
        height: 64px !important;
    }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__name { font-size: 14px; }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__label { font-size: 8px; }
    .pg-talk-creds .pg-ipr-card-section .ipr-pcard__num { font-size: 18px; }
}
@media (min-width: 721px) and (max-width: 900px) {
    .site-head-bar { min-height: 88px; padding: 0 16px; }
    .site-logo img { width: 116px; max-height: 84px; }
    .home-hero-frame {
        height: auto;
        min-height: 0;
        aspect-ratio: 1240 / 900;
        align-items: flex-start;
        padding-top: 88px;
    }
    .home-hero-stage { transform-origin: top center; }
    .pg-shell { width: calc(100% - 36px); }
}
@media (prefers-reduced-motion: reduce) {
    .pg-ipr-card-section .ipr-pcard__mesh { animation: none; }
    .pg-whyhero-copy .pg-fancy p::after { display: none; }
}
