:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --teal: #308587;
    --teal-dark: #092d31;
    --ink: #092d31;
    --text: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --white: #ffffff;
    --ice: #f0f9ff;
    --beige: #f3efe6;
    --mint: #e4f1f1;
    --footer: #d2ebeb;
    --shadow: 0 18px 50px rgba(24, 72, 86, 0.1);
    --radius: 18px;
    --sans: "Inter", system-ui, sans-serif;
    --container: 1400px;
    --page-gutter: 20px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
    font-family: "Sentient";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Sentient-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Sentient";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Sentient-Italic.woff2") format("woff2");
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: #ffffff;
    line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
    width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
    margin-left: auto;
    margin-right: auto;
}

.site-wrap { overflow-x: clip; position: relative; }

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 680px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 52% 62% at 0% 0%, rgba(48, 133, 135, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 48% 58% at 100% 0%, rgba(9, 45, 49, 0.18) 0%, transparent 70%);
}

/* Floating header — 1400px card, 16px radius */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: transparent;
    padding: 25px var(--page-gutter) 0;
}

.header-shell {
    position: relative;
    z-index: 2;
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(20, 50, 70, 0.08);
    gap: 20px;
}

.site-header.scrolled .header-shell {
    box-shadow: 0 12px 34px rgba(20, 50, 70, 0.12);
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    height: 44px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 1;
    font-family: "DM Sans", sans-serif;
}

.site-nav > a,
.nav-mega-trigger {
    font-family: "DM Sans", sans-serif;
    color: #092d31;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    padding: 10px 21px;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-mega-trigger:hover,
.nav-mega-trigger.active,
.nav-mega.is-open .nav-mega-trigger,
.nav-mega:hover .nav-mega-trigger { color: #308587; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    font-family: "DM Sans", sans-serif;
}

.nav-started { display: none !important; }

.btn-started {
    font-family: "DM Sans", sans-serif !important;
    background: #fff !important;
    color: #0f172a !important;
    border: 1px solid #0f172a !important;
    border-radius: 10px;
    padding: 10px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.2;
    letter-spacing: 0;
}

.btn-started:hover { background: #f8fafc !important; }

.nav-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: #eef5f5;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s ease, box-shadow 0.35s ease;
}
.nav-toggle:hover { background: #e0eeee; }
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle[aria-expanded="true"] {
    background: #092d31;
    box-shadow: 0 8px 20px rgba(9, 45, 49, 0.28);
}
.nav-toggle span {
    position: absolute;
    left: 50%;
    display: block;
    width: 18px;
    height: 1.8px;
    margin: 0;
    background: #092d31;
    border-radius: 99px;
    transform: translateX(-50%);
    transition: top 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, background 0.3s ease, width 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; width: 13px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span { background: #fff; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    width: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
    transform: translateX(-50%) scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

/* Services mega-menu */
.nav-mega { position: static; }
.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}
.nav-mega-caret-ico {
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-mega:hover .nav-mega-caret-ico,
.nav-mega.is-open .nav-mega-caret-ico,
.nav-mega:focus-within .nav-mega-caret-ico { transform: rotate(180deg); }

.nav-mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 6px);
    z-index: 90;
    padding: 34px 28px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(9, 45, 49, 0.14);
    border: 1px solid #e6eeed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
}
.nav-mega:focus-within .nav-mega-panel,
.nav-mega.is-open .nav-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.nav-mega-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) 240px;
    gap: 22px 28px;
    align-items: start;
}
.nav-mega-kicker {
    margin: 0 0 4px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #308587;
}
.nav-mega-heading,
.nav-mega-aside h3 {
    margin: 0 0 14px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #092d31;
}
.nav-mega-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-mega-list.is-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 16px;
}
.nav-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #092d31;
    transition: background 0.18s ease;
}
.nav-mega-item img {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-top: 2px;
}
.nav-mega-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.nav-mega-item strong {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.nav-mega-item em {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
    color: #4c617b;
}
.nav-mega-item:hover,
.nav-mega-item.is-current {
    background: #eaf4f4;
}
.nav-mega-item.is-current strong { color: #308587; }

.nav-mega-aside {
    padding: 22px 20px 20px;
    border-radius: 16px;
    background:
        radial-gradient(ellipse 80% 70% at 100% 0%, rgba(48, 133, 135, 0.35) 0%, transparent 70%),
        #092d31;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.nav-mega-aside .nav-mega-kicker { color: #308587; }
.nav-mega-aside h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.nav-mega-aside p {
    margin: 0 0 18px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #d2ebeb;
}
.nav-mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 10px;
    background: #308587;
    color: #092d31 !important;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}
.nav-mega-cta:hover { background: #3a9a9c; }
.nav-mega-aside-link {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
}
.nav-mega-aside-link:hover { color: #d2ebeb !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.22s ease;
}

.btn-primary,
.btn-green {
    background: var(--green);
    color: #fff !important;
}

.btn-primary:hover,
.btn-green:hover { background: var(--green-dark); }

.btn-green {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-dark { background: #0f172a; color: #fff; }
.btn-light { background: #fff; color: var(--ink); }

a.btn.btn-started {
    font-family: "DM Sans", sans-serif !important;
    background: #fff !important;
    color: #092d31 !important;
    border: 1px solid #308587 !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.2;
    letter-spacing: 0;
}
a.btn.btn-started:hover { background: rgba(0, 0, 0, 0.04) !important; }

/* Hero — Spines-style banner */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 55px 0 0;
    overflow: hidden;
    background: transparent;
}

.hero-title {
    font-family: "Sentient", "Source Serif 4", Georgia, "Times New Roman", serif;
    font-optical-sizing: auto;
    font-size: 48px;
    font-weight: 500;
    color: #092d31;
    letter-spacing: -0.06em;
    line-height: 1em;
    margin: 0 auto 18px;
    text-align: center;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #4C617B;
    max-width: 678px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.hero-lead {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: #4C617B;
    max-width: 678px;
    margin: 0 auto 20px;
    text-align: center;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-copy {
    position: relative;
    z-index: 4;
    padding-top: 0;
    padding-bottom: 20px;
}

.hero-actions { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #308587 !important;
    color: #092d31 !important;
    border-radius: 10px;
    padding: 15px 60px 16px 60px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    transition: 0.3s ease-in-out;
}
.btn-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    width: 85%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(12px);
    border-radius: 50%;
    pointer-events: none;
}
.btn-hero:hover { background: #308587 !important; }
.btn-hero:active { background: #276c6e !important; }
.btn-hero svg {
    display: block;
    height: 0.75em;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}
.btn-hero:hover svg { transform: translateX(3px); }

.avatars { display: flex; justify-content: center; }
.avatars img,
.avatars span,
.float-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    object-fit: cover;
}
.avatars img:first-child,
.avatars span:first-child { margin-left: 0; }
.stars { color: #f5b301; letter-spacing: 1px; }

.hero-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    min-height: 368px;
    margin: 12px 0 0;
}

.hero-books-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1630px);
    min-width: 1480px;
    height: 368px;
    z-index: 0;
    pointer-events: none;
}

.col-books-left,
.col-books-right {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 570px;
    height: 368px;
    flex-shrink: 0;
}

.col-books-left::after,
.col-books-right::after {
    content: "";
    position: absolute;
    top: 0;
    left: -2%;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 5;
}

.col-books-right::after {
    transform: scaleX(-1);
    left: auto;
    right: -2%;
}

.hero-book {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    border-radius: 2% 1% 1% 2%;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.hero-book-face {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 2% 1% 1% 2%;
}

.col-books-left .hero-book { margin-left: -12px; }
.col-books-right .hero-book { margin-right: -12px; }

.col-books-left .b-outer,
.col-books-right .b-outer { width: 129.81px; z-index: 1; }
.col-books-left .b-mid2,
.col-books-right .b-mid2 { width: 146.56px; z-index: 2; }
.col-books-left .b-mid1,
.col-books-right .b-mid1 { width: 159.13px; z-index: 3; }
.col-books-left .b-inner,
.col-books-right .b-inner { width: 180.06px; z-index: 4; }

.hero-book img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}

.b-outer .hero-book-face,
.b-outer img { width: 129.81px; height: 194.72px; }
.b-mid2 .hero-book-face,
.b-mid2 img { width: 146.56px; height: 219.84px; }
.b-mid1 .hero-book-face,
.b-mid1 img { width: 159.13px; height: 238px; }
.b-inner .hero-book-face,
.b-inner img { width: 180.06px; height: 270.09px; }

.b-outer img { filter: blur(0.7px); }
.b-mid2 img { filter: blur(0.5px); }
.b-mid1 img { filter: blur(0.3px); }

.hero-book-face::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(94, 94, 94, 0.80) 0%, rgba(94, 94, 94, 0.61) 2%, rgba(94, 94, 94, 0) 3%, rgba(94, 94, 94, 0) 5%, rgba(94, 94, 94, 0.35) 6%, rgba(94, 94, 94, 0.35) 7%, rgba(94, 94, 94, 0.13) 8%, rgba(94, 94, 94, 0.06) 53.75%, rgba(228, 228, 228, 0) 97%, rgba(255, 255, 255, 0.60) 100%);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.hero-book-face::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 93%;
    width: 10%;
    height: 100%;
    pointer-events: none;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.7);
}

.col-books-right .hero-book-face::after {
    left: auto;
    right: 93%;
}

.hero-book.no-shadow .hero-book-face::after { display: none; }

.hero-laptop {
    position: relative;
    z-index: 2;
    width: 650px;
    height: 368px;
    flex-shrink: 0;
}
.hero-laptop img {
    width: 650px;
    height: 368px;
    max-width: none;
    display: block;
    object-fit: contain;
}

.animated-fast {
    animation-duration: 0.75s;
    animation-fill-mode: both;
}
.fadeIn { animation-name: fadeIn; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInUp { animation-name: fadeInUp; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translate3d(100%, 0, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translate3d(-100%, 0, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 100%, 0); }
    to { opacity: 1; transform: none; }
}

.hero-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 17px;
    width: 440px;
    max-width: 100%;
    margin: 45px auto;
    position: relative;
    z-index: 4;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-proof .avatars {
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
}

.hero-proof .avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -11px;
    object-fit: cover;
}

.hero-proof .avatars img:first-child { margin-left: 0; }

.hero-proof-copy { text-align: left; }

.hero-proof-excellent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #151B23;
    margin: 0;
}
.hero-proof-excellent strong {
    font-weight: 500;
    letter-spacing: 0;
}

.hero-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.hero-stars > svg {
    width: 22px;
    height: 22px;
    fill: #F7B165;
    display: block;
    flex-shrink: 0;
}

.hero-star-half {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.hero-star-half svg {
    position: absolute;
    inset: 0;
    width: 22px;
    height: 22px;
    display: block;
}
.hero-star-half .star-empty { fill: #E3DEDE; }
.hero-star-half .star-fill {
    fill: #F7B165;
    clip-path: inset(0 50% 0 0);
}

.hero-proof-meta {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #5F7A9B;
    margin: 0;
    padding-top: 2px;
}

/* Full-width beige stats — Spines f382be3 */
.stats-band {
    background: #F8F5F1;
    padding: 40px 20px;
}

.stats-row {
    width: min(1250px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
}

.stat-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
}

.stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, rgba(48, 133, 135, 0) 0%, rgba(48, 133, 135, 0.6) 50%, rgba(48, 133, 135, 0) 100%);
}

.stat-item img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    flex-shrink: 0;
}

.stat-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: 186px;
    min-width: 0;
    text-align: left;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #38485C;
    white-space: nowrap;
}

.stat-count,
.stat-suffix {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
}

.stat-label {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    color: #4C617B;
}

/* Sections */
section { padding: 88px 0; }
.stats-band { padding: 40px 20px; }
.bg-cream, .bg-ice { background: var(--ice); }
.bg-paper { background: #fff; }
.bg-mint { background: var(--mint); }
.bg-dark { background: #092d31; color: #fff; }
.bg-teal { background: var(--teal); color: #fff; }

.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2,
.page-hero h1,
.cta-band h2,
.quote-main {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #092d31;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-head p { color: var(--muted); font-size: 17px; margin-top: 10px; }
.eyebrow {
    display: inline-block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero {
    text-align: center;
    padding: 72px 0 56px;
    background: linear-gradient(180deg, #f3fffb, #fff);
}

.page-hero p {
    max-width: 62ch;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .stat-card, .price-card, .faq-item, .quote-card, .t-card, .resource-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(24, 72, 86, 0.06);
}

.card { padding: 28px; border: 1px solid var(--line); }
.card img.thumb { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; }
.card h3, .price-card h3, .step h3, .step-split h3 { font-size: 22px; font-weight: 800; color: #092d31; margin-bottom: 8px; }
.muted, .card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; }

/* Why section — Spines 4698b0e0 */
.why-section {
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    background: #fff;
}
.why-section::after {
    content: "";
    position: absolute;
    width: 540px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #092d3133;
    filter: blur(400px);
    right: 0;
    bottom: 0;
    transform: translate(30%, 20%);
    pointer-events: none;
    z-index: 0;
}
.why-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 0 50px;
}
.why-eyebrow {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #308587;
    border-bottom: 1px solid #308587;
    padding-bottom: 4px;
    margin: 0 0 10px;
}
.why-title-serif {
    display: block;
    margin: 0;
    padding: 0;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15em;
    letter-spacing: -0.06em;
    color: #092d31;
    text-align: center;
}
.why-title-sans {
    display: block;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.16em;
    letter-spacing: -0.06em;
    color: #092d31;
    text-align: center;
}
.why-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    width: 100%;
}
.why-photo {
    width: 45%;
    flex: 0 1 45%;
    min-width: 0;
    position: relative;
    min-height: 480px;
}
.why-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 17px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.why-cards {
    width: 55%;
    flex: 0 1 55%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.why-card {
    background: linear-gradient(to right, #DCE2EA, #30858730);
    padding: 1px;
    border-radius: 16px;
    opacity: 0;
}
.why-card.in {
    animation: fadeInUp 0.75s both;
}
.why-card:nth-child(2).in { animation-delay: 150ms; }
.why-card:nth-child(3).in { animation-delay: 300ms; }
.why-card:nth-child(4).in { animation-delay: 450ms; }
.why-card-inner {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 19px;
}
.why-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon img {
    width: 50px;
    height: 50px;
    max-width: 50px;
    object-fit: contain;
    display: block;
}
.why-card-inner > div {
    min-width: 0;
    flex: 1;
}
.why-card h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #092d31;
    margin: 0 0 10px;
    line-height: 1.25em;
    letter-spacing: 0;
}
.why-card p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    color: #4C617B;
    margin: 0;
}

/* Did you know — Spines 0a48a34 */
.know-section {
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    background: #fff;
}
.know-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
}
.know-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.know-col {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    max-width: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 0;
}
.know-col-left { left: 0; }
.know-col-right { right: 0; }
.know-photo {
    display: block;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 10%;
    will-change: transform, opacity;
}
.p-l1 { width: 50%; margin-right: 30%; }
.p-l2 { width: 45%; margin-left: 55%; }
.p-l3 { width: 45%; margin-left: -50%; }
.p-l4 { width: 45%; margin-left: 25%; }
.p-r1 { width: 40%; margin-left: 50%; }
.p-r2 { width: 45%; margin-right: 55%; }
.p-r3 { width: 45%; margin-left: 25%; }
.p-r4 { width: 35%; margin-left: -30%; }
.know-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
        0 355px 99px 0 rgba(164, 149, 193, 0),
        0 227px 91px 0 rgba(164, 149, 193, 0.01),
        0 128px 77px 0 rgba(164, 149, 193, 0.05),
        0 57px 57px 0 rgba(164, 149, 193, 0.09),
        0 14px 31px 0 rgba(164, 149, 193, 0.10);
}
.know-eyebrow {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #308587;
    border-bottom: 1px solid #308587;
    padding-bottom: 4px;
    margin: 0;
}
.know-title {
    max-width: 640px;
    margin: 0 0 15px;
    padding-top: 15px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.03em;
    color: #092d31;
    text-align: center;
}
.know-copy {
    max-width: 640px;
    margin: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: #4C617B;
    text-align: center;
}
.know-copy p { margin: 0 0 20px; }
.know-copy p:last-child { margin-bottom: 0; }
.know-copy strong {
    font-weight: 700;
    color: #092d31;
}
.know-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.know-viewport {
    width: calc(100% - 80px);
    margin: 0 auto;
    overflow: hidden;
}
.know-track {
    display: flex;
    transition: transform 1s ease;
    will-change: transform;
}
.know-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
    box-sizing: border-box;
}
.know-quote {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #3841BC 0%, #1690BC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1690BC;
}
.know-cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.know-cite img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
}
.know-cite span {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1F2833;
}
.know-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #E4EBF5;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.know-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}
.know-prev { left: 0; }
.know-next { right: 0; }

/* Press logos — Spines 94da08c / b07a1a5 */
.logos-section {
    background: #fff;
    padding: 45px 20px;
}
.logos-inner {
    width: min(1300px, 100%);
    margin: 0 auto;
    container-type: inline-size;
}
.logos-carousel {
    position: relative;
}
.logos-viewport {
    overflow: hidden;
    width: 100%;
}
.logos-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}
.logos-slide {
    flex: 0 0 calc((100cqw - 200px) / 6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 0;
}
.logos-slide img {
    width: 100%;
    display: block;
    height: auto;
    max-width: 135px;
    max-height: 30px;
    min-height: 30px;
    object-fit: contain;
    object-position: 50% 50%;
    transition: 0.2s ease-in-out all;
    filter: grayscale(1) sepia(40%) hue-rotate(140deg) contrast(200%) brightness(60%);
    opacity: 0.4;
    margin: 0 auto;
}
.logos-slide:hover img {
    opacity: 1;
}

.feature-list { display: grid; gap: 22px; margin-top: 28px; }
.feature-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.feature-item h3 { margin-bottom: 4px; font-size: 18px; color: #0f172a; }
.icon-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--green-dark);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.check-list li { position: relative; padding-left: 26px; margin: 10px 0; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--green);
}

.quote-wrap { position: relative; min-height: 420px; display: grid; place-items: center; }
.quote-card { position: relative; z-index: 2; max-width: 640px; padding: 42px 40px; text-align: center; }
.quote-main { margin-bottom: 18px; }
.quote-person { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.quote-person b { color: var(--ink); }
.float-ava { position: absolute; animation: floaty 5s ease-in-out infinite; box-shadow: var(--shadow); }
.a1 { top: 18%; left: 8%; background: #5b8def; }
.a2 { top: 12%; right: 16%; background: #308587; }
.a3 { bottom: 18%; left: 14%; background: #f0a04b; }
.a4 { bottom: 14%; right: 10%; background: #c084fc; }
.a5 { top: 48%; left: 4%; background: #fb7185; }
.a6 { top: 46%; right: 5%; background: #38bdf8; }
.press-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 36px;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

/* HOW IT WORKS — Spines 7f330e7d / 66d27bf */
.how-section {
    position: relative;
    overflow: hidden;
    background: #F6F7F9;
    padding: 70px 20px;
}
.how-blob {
    position: absolute;
    width: 430px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.how-blob-blue {
    background: #092d312E;
    filter: blur(400px);
    bottom: -423px;
    left: -514px;
    transform: translate(30%, 20%);
}
.how-blob-green {
    background: #30858766;
    filter: blur(350px);
    top: -222px;
    right: -275px;
    transform: translate(30%, 20%);
}
.how-inner {
    position: relative;
    z-index: 1;
    width: min(1300px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 0 4px;
    border-bottom: 1px solid #308587;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #308587;
}
.how-title-serif {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.how-title-sans {
    margin: -0.3em 0 0;
    padding: 0 0 20px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.16em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.how-lead {
    max-width: 510px;
    margin: 0 0 40px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #4C617B;
}
.how-card {
    width: 100%;
    background: #fff;
    padding: 30px;
    border: 1px solid #DCE2EA;
    border-radius: 30px;
    box-sizing: border-box;
    overflow: visible;
}
.how-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 25px;
    margin: 0 0 35px;
}
.how-tab {
    flex: 0 0 auto;
    background: #fff;
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 0 12px 10px 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    color: #092d3199;
    text-align: left;
    position: relative;
    white-space: normal;
    transition: color 0.2s ease, border-color 0.2s ease, margin 0.7s ease-in-out;
}
.how-tab:hover {
    color: #092d31;
    border-bottom-color: #092d3161;
}
.how-tab[aria-selected="true"] {
    color: #092d31;
    border-bottom-color: #308587;
}
.how-tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
}
.how-step {
    display: block;
    color: #BDC8D6;
}
.how-tab[aria-selected="true"] .how-step {
    color: #308587;
}
.how-panel {
    display: flex !important;
    max-height: 0;
    visibility: hidden;
    width: 0 !important;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.7s ease-in-out;
}
.how-panel.is-active {
    max-height: none;
    width: 100% !important;
    overflow: inherit;
    visibility: inherit;
}
.how-panel-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    transition: 0.6s ease-in-out opacity;
}
.how-panel.is-active .how-panel-inner {
    opacity: 1;
}
.how-copy {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    gap: 40px;
    padding: 0 80px 0 0;
    box-sizing: border-box;
    min-width: 0;
}
.how-copy h3 {
    width: 391px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.16em;
    letter-spacing: -0.04em;
    color: #092d31;
}
.how-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.how-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.how-list li + li {
    margin-top: 12.5px;
    padding-top: 12.5px;
}
.how-list svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
}
.how-list span {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #4C617B;
}
.how-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: max-content;
    max-width: 100%;
    gap: 8px;
    margin-top: auto;
    margin-bottom: -6px;
    padding: 12px 25px;
    background: #308587;
    color: #092d31;
    fill: #092d31;
    border: 0;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.3s ease-in-out all;
    z-index: 1;
}
.how-cta::before {
    z-index: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 90%;
    width: 85%;
    background: rgba(48, 133, 135, 0.70);
    filter: blur(12px);
    content: "";
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
    opacity: 0;
}
.how-cta:hover::before {
    opacity: 1;
    top: 50%;
}
.how-cta:active { background: #276c6e; }
.how-cta span,
.how-cta svg {
    position: relative;
    z-index: 1;
    margin-bottom: 1px;
}
.how-cta svg {
    height: 0.75em;
    width: 0.47em;
    max-width: 0.75em;
    flex-shrink: 0;
    display: block;
    fill: currentColor;
    overflow: visible;
    transition: 0.3s ease-in-out all;
}
.how-cta:hover svg { transform: translateX(3px); }
.how-visual {
    position: relative;
    width: 60%;
    min-width: 0;
    overflow: visible;
}
.how-shot {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}
.how-float {
    position: absolute;
    width: 40%;
    max-width: 40%;
    height: auto;
    top: 40%;
    left: -13%;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.step-num { font-size: 34px; font-weight: 800; color: var(--green); }

/* Audience coverflow — Spines 8d8514c / 922ffdd */
section.audience-section {
    overflow: hidden;
    background: #fff;
    padding: 70px 0;
}
.audience-inner {
    width: min(1600px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.audience-title {
    width: 100%;
    max-width: 847px;
    margin: 0 0 40px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
    opacity: 0;
}
.audience-title.in {
    animation: fadeIn 0.75s both;
}
.audience-carousel-wrap {
    position: relative;
    width: 100%;
    opacity: 0;
}
.audience-carousel-wrap.in {
    animation: fadeIn 0.75s 0.2s both;
}
.audience-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    perspective: 1200px;
    cursor: grab;
    touch-action: pan-y;
}
.audience-viewport.is-grabbing { cursor: grabbing; }
.audience-viewport::before,
.audience-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    z-index: 2;
}
.audience-viewport::after {
    left: auto;
    right: 0;
    transform: scale(-1);
}
.audience-track {
    display: flex;
    transform-style: preserve-3d;
    will-change: transform;
}
.audience-slide {
    flex: 0 0 auto;
    overflow: visible;
    transform-style: preserve-3d;
    cursor: pointer;
    user-select: none;
}
.audience-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 24 / 39;
    margin: 0 auto;
    border-radius: 2% 1% 1% 2%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform, filter;
    -webkit-user-drag: none;
}
.audience-cover::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.9;
    background: linear-gradient(90deg, rgba(94, 94, 94, 0.80) 0%, rgba(94, 94, 94, 0.61) 2%, rgba(94, 94, 94, 0.07) 3%, rgba(94, 94, 94, 0.07) 5%, rgba(94, 94, 94, 0.35) 6%, rgba(94, 94, 94, 0.35) 7%, rgba(94, 94, 94, 0.13) 8%, rgba(94, 94, 94, 0.06) 53.75%, rgba(150, 150, 150, 0.06) 97%, rgba(255, 255, 255, 0.60) 100%);
}
.audience-by {
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    padding-top: 5px;
    color: #092d31;
}
.audience-nav {
    position: absolute;
    top: calc(50% - 25px);
    z-index: 3;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 50%;
    padding: 10px;
    margin: 0;
    background: transparent;
    color: #3C407C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
}
.audience-nav svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}
.audience-prev { left: 0; right: auto; }
.audience-next { right: 0; left: auto; }
.audience-nav:hover {
    background: #30858738;
    color: #FFFFFF80;
}
.audience-nav:hover svg { fill: currentColor; }

/* Authors marquee — Spines d0a1fb8 / b78031e */
section.authors-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F8F5F1;
    padding: 70px 0;
    overflow: hidden;
}
.authors-title {
    width: 100%;
    max-width: 714px;
    margin: 0 0 20px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.authors-title .accented { color: #308587; }
.authors-lead {
    width: 100%;
    max-width: 570px;
    margin: 0 0 15px;
    padding: 0 20px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    color: #4C617B;
}
.authors-marquee {
    position: relative;
    width: 100%;
    margin: 0 0 15px;
}
.authors-marquee::before,
.authors-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14%;
    max-width: 220px;
    height: 100%;
    background: linear-gradient(90deg, #F8F5F1 0%, #F8F5F100 100%);
    z-index: 2;
    pointer-events: none;
}
.authors-marquee::after {
    left: auto;
    right: 0;
    max-width: 150px;
    background: linear-gradient(90deg, #F8F5F100 0%, #F8F5F1 100%);
}
.authors-overflow {
    overflow: hidden;
    padding: 20px 0 10px;
    width: 100%;
}
.authors-overflow-1 { position: relative; z-index: 1; }
.authors-overflow-2 { margin-top: -20px; z-index: 0; }
.authors-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    padding: 0 12px;
    width: max-content;
    will-change: transform;
}
.authors-card.clone { display: flex; }
.authors-card {
    flex: 0 0 auto;
    width: min(450px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E5F4F2;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    white-space: normal;
    overflow: hidden;
}
.authors-text {
    margin: 0;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.35em;
    letter-spacing: -0.05em;
    color: #092d31;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.authors-bio {
    display: flex;
    align-items: center;
    margin-top: auto;
    position: relative;
    overflow: visible;
    padding: 0 0 0 60px;
    min-height: 50px;
    font-size: 15px;
}
.authors-letter {
    position: absolute;
    top: 8px;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--circle-color, #B1B1B1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1;
}
.authors-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    min-width: 0;
}
.authors-user {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    color: #232323;
    white-space: normal;
    overflow-wrap: break-word;
}
.authors-user span { display: inline; }
.authors-stars {
    display: flex;
    flex: none;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.authors-stars span {
    display: flex;
    margin-right: 0;
}
.authors-stars svg {
    display: block;
    width: 18px;
    height: 16px;
}
.authors-quote-mark {
    position: absolute;
    top: 4px;
    right: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #092d31;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.authors-cta {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 15px 60px 16px;
    background: #308587;
    color: #092d31;
    fill: #092d31;
    border: 0;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.3s ease-in-out all;
}
.authors-cta::before {
    content: "";
    z-index: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 90%;
    width: 85%;
    background: rgba(48, 133, 135, 0.7);
    filter: blur(12px);
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
    opacity: 0;
}
.authors-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    width: 85%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(12px);
    border-radius: 50%;
    pointer-events: none;
}
.authors-cta:hover::before {
    opacity: 1;
    top: 50%;
}
.authors-cta:active { background: #276c6e; }
.authors-cta span,
.authors-cta svg {
    position: relative;
    z-index: 1;
    margin-bottom: 1px;
}
.authors-cta svg {
    height: 0.75em;
    width: auto;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
    transition: 0.3s ease-in-out all;
}
.authors-cta:hover svg { transform: translateX(3px); }

/* Blog resources — Spines 4524a6ed / 1dd79846 */
section.blog-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 70px 20px;
}
.blog-blob {
    position: absolute;
    width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #092d3130;
    filter: blur(800px);
    top: -171px;
    right: -279px;
    pointer-events: none;
    z-index: 0;
}
.blog-inner {
    position: relative;
    z-index: 1;
    width: min(1300px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 0 4px;
    border-bottom: 1px solid #308587;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #308587;
}
.blog-title {
    margin: 0 0 50px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.16em;
    letter-spacing: -0.04em;
    color: #092d31;
}
.blog-posts {
    display: flex;
    gap: 2%;
    width: 100%;
}
.blog-item {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #DCE2EA;
    border-radius: 10px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
}
.blog-thumb { display: block; }
.blog-thumb img {
    width: 100%;
    aspect-ratio: 10 / 6;
    object-fit: cover;
    display: block;
}
.blog-item-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    height: 100%;
    box-sizing: border-box;
}
.blog-item-title {
    margin: -3px 0 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}
.blog-item-title a {
    color: #092d31;
    transition: 0.3s ease-in-out all;
}
.blog-item-title a:hover { color: #308587; }
.blog-excerpt {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #4C617B;
}
.blog-more-wrap { margin-top: auto; }
.blog-more {
    display: flex;
    align-items: center;
    color: #308587;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.blog-more::after {
    content: "";
    display: block;
    margin-left: 10px;
    width: 15px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7936 0.362411C11.0737 0.0823215 11.5279 0.0823214 11.8079 0.362411L14.9569 3.51135C15.6104 4.16489 15.6104 5.22449 14.9569 5.87803L11.8079 9.02698C11.5279 9.30707 11.0737 9.30707 10.7936 9.02698C10.5136 8.74689 10.5136 8.29277 10.7936 8.01268L13.3944 5.41191H0.781666C0.38556 5.41191 0.0644532 5.0908 0.0644531 4.69469C0.0644531 4.29859 0.38556 3.97748 0.781666 3.97748H13.3944L10.7936 1.3767C10.5136 1.09661 10.5136 0.6425 10.7936 0.362411Z' fill='%23308587'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.2s ease-in-out all;
}
.blog-more:hover::after { transform: translateX(3px); }

/* FAQ — Spines 36e2dd7f / 33cf68a2 */
section.faq-section {
    overflow: hidden;
    background: #fff;
    padding: 70px 20px;
}
.faq-inner {
    width: min(770px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-heading {
    margin: 0;
    padding: 0 20px 20px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.16em;
    letter-spacing: -0.04em;
    color: #092d31;
}
.faq-lead {
    margin: 0 0 40px;
    max-width: 388px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em;
    color: #4C617B;
}
.faq-acc {
    width: 100%;
    border-top: 1px solid #DCE2EA;
}
.faq-acc-item {
    border-bottom: 1px solid #DCE2EA;
}
.faq-acc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    cursor: pointer;
    border: none;
    font-family: "DM Sans", sans-serif;
    color: #092d31;
    transition: 0.4s ease-in-out all;
}
.faq-acc-title::-webkit-details-marker { display: none; }
.faq-acc-title::marker { content: ""; }
.faq-acc-item[open] > .faq-acc-title,
.faq-acc-item.is-open > .faq-acc-title { padding-bottom: 10px; }
.faq-acc-q {
    flex: 1;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}
.faq-acc-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
}
.faq-acc-icon svg {
    display: block;
    width: auto;
    height: 15px;
}
.faq-acc-item[open] > .faq-acc-title .faq-acc-icon,
.faq-acc-item.is-open > .faq-acc-title .faq-acc-icon { transform: rotate(45deg); }
.faq-acc-panel { overflow: hidden; }
.faq-acc-body {
    max-width: 700px;
    padding: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #667085;
}
.faq-acc-body p { margin: 0 0 1em; }
.faq-acc-body p:last-child { margin-bottom: 0; }
.faq-acc-body ul {
    margin: 0;
    padding-left: 1.4em;
}
.faq-acc-body li { margin: 0 0 0.35em; }
.faq-acc-body a { color: #308587; }

.resource-card { overflow: hidden; border: 1px solid var(--line); transition: 0.25s ease; }
.resource-card:hover { transform: translateY(-6px); }
.resource-card img { width: 100%; height: 180px; object-fit: cover; }
.resource-card div { padding: 20px; }
.resource-card h3 { font-size: 20px; margin-bottom: 8px; color: #092d31; }
.more { color: var(--green-dark); font-weight: 700; font-size: 14px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { padding: 32px 28px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--green); transform: translateY(-10px); box-shadow: var(--shadow); }
.price-card .tag {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    width: fit-content;
}
.price { font-size: 42px; font-weight: 800; color: #0f172a; margin: 6px 0; }
.price span { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul { margin: 18px 0 24px; flex: 1; }
.price-card li { padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid var(--line); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.compare th { background: #092d31; color: #fff; }

.faq-list { display: grid; gap: 10px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 0; box-shadow: none; border-bottom: 1px solid var(--line); border-radius: 0; }
.faq-item button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 20px 8px;
    font-size: 17px;
    font-weight: 700;
    color: #092d31;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item button span { font-size: 24px; font-weight: 400; color: #94a3b8; }
.faq-item.open button span { transform: rotate(45deg); }
.faq-item .faq-body { display: none; padding: 0 8px 18px; color: var(--muted); }
.faq-item.open .faq-body { display: block; }

.form-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: #0f172a; }
input, select, textarea {
    width: 100%;
    border: 1px solid #d7e2e8;
    background: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    font-family: var(--sans);
    font-size: 15px;
}
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; background: #fde8e8; color: #8a1f1f; }
.contact-aside {
    background: #092d31;
    color: #fff;
    border-radius: var(--radius);
    padding: 36px 32px;
}
.contact-aside h2 { font-size: 36px; font-weight: 800; margin: 10px 0 16px; color: #fff; }
.contact-aside a { color: #bbf7d0; }
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; }
.bg-dark .section-head p,
.cta-band p { color: rgba(255,255,255,0.86); max-width: 60ch; margin: 0 auto 22px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer — exact live match */
.site-footer {
    background: transparent;
    padding: 0 var(--page-gutter) 60px;
}

.site-footer,
.site-footer h4,
.site-footer a,
.site-footer p,
.site-footer strong,
.site-footer span {
    font-family: "DM Sans", sans-serif;
}

.footer-shell {
    position: relative;
    width: min(var(--container), 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce2ea;
    border-radius: 24px;
}

.footer-top,
.footer-band { position: relative; z-index: 1; overflow: hidden; }

.footer-top::before,
.footer-band::before,
.footer-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-top::before {
    top: 0;
    left: 0;
    width: 970px;
    aspect-ratio: 97 / 47;
    background: #30858730;
    transform: translate(-36%, -53%);
    filter: blur(220px);
}

.footer-band::before {
    top: 100%;
    right: 0;
    width: 344px;
    aspect-ratio: 34 / 26;
    background: #7d38bcb2;
    transform: translate(-69%, 42%);
    filter: blur(224px);
}

.footer-band::after {
    top: 100%;
    right: 0;
    width: 344px;
    aspect-ratio: 34 / 26;
    background: #092d3140;
    transform: translate(27%, -30%);
    filter: blur(224px);
}

.footer-top > *,
.footer-band > * { position: relative; z-index: 1; }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2%;
    row-gap: 28px;
    padding: 45px;
    border-bottom: 1px solid #dce2ea;
}

a.footer-logo {
    display: inline-flex;
    height: fit-content;
    flex-shrink: 0;
}

.footer-logo img {
    height: 38px;
    width: auto;
    max-width: 140px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
}

.site-footer h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #092d31;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer .footer-links a,
.site-footer .footer-links span {
    display: block;
    margin: 0;
    padding: 0;
    color: #4c617b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.site-footer .footer-links a:hover { color: #092d31; }

.footer-touch {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex-shrink: 0;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 27px);
    column-gap: 25px;
    row-gap: 18px;
    width: 131px;
    flex-shrink: 0;
    padding-top: 4px;
}

.social-icons a {
    width: 27px;
    height: 27px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
    color: #4c617b;
    background: transparent;
}

.social-icons a svg {
    width: 27px;
    height: 27px;
    fill: #4c617b;
    display: block;
}

.social-icons a:hover { color: #092d31; }
.social-icons a:hover svg { fill: #092d31; }

.footer-band {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2%;
    flex-wrap: wrap;
    padding: 45px;
    background: transparent;
    border: 0;
}

.trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 420px;
}

.trust-ico {
    width: auto;
    height: auto;
    margin-top: 2px;
    background: none;
    border-radius: 0;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.trust-ico svg { display: block; }

.trust-item strong {
    display: block;
    color: #4c617b;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.trust-item span {
    display: block;
    color: #4c617b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-paywrap {
    margin-left: auto;
    text-align: right;
    min-width: 0;
    max-width: 100%;
}

.pay-icons {
    display: flex;
    gap: 16px 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
}

.pay-icons img {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: 22px;
    max-width: 78px;
    max-height: 24px;
    object-fit: contain;
}

.footer-copy {
    text-align: right;
    margin: 16px 0 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400;
    color: #4c617b !important;
}

.footer-copy a {
    display: inline;
    color: #4c617b;
    font-size: 16px;
    padding: 0;
}

.talk-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #092d31;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.talk-btn span {
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(20, 40, 60, 0.12);
}

.talk-btn i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e11d73;
    color: #fff;
    display: grid;
    place-items: center;
    font-style: normal;
    box-shadow: 0 10px 24px rgba(225, 29, 115, 0.35);
}
.legal { max-width: 800px; }
.legal h2 { margin: 28px 0 10px; color: #092d31; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.table-wrap { overflow-x: auto; }
.service-hero-card { position: relative; overflow: hidden; min-height: 220px; color: #fff; display: flex; align-items: flex-end; }
.service-hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-hero-card span { position: relative; z-index: 1; padding: 20px; font-size: 26px; font-weight: 800; background: linear-gradient(transparent, rgba(0,0,0,.7)); width: 100%; }
.notice { background: #dcfce7; border-radius: 16px; padding: 16px 18px; color: #166534; margin-bottom: 24px; }

.reveal { opacity: 0; transform: translateY(24px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.js-reveal { opacity: 0; transform: translateY(28px); transition: 0.7s ease; }
.js-reveal.in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .header-shell { position: relative; z-index: 2; }
    .header-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-started { display: inline-flex !important; }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 70;
        background: rgba(9, 45, 49, 0.46);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
    }
    .nav-backdrop.is-on,
    body.nav-lock .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .site-nav {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 120;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 18px;
        gap: 2px;
        border-radius: 18px;
        box-shadow: 0 22px 50px rgba(9, 45, 49, 0.16);
        border: 1px solid #e6eeed;
        max-height: min(78vh, 720px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.97);
        transform-origin: top center;
        transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
    }
    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .site-nav > a,
    .site-nav > .nav-mega,
    .site-nav > .nav-started {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .site-nav.open > a,
    .site-nav.open > .nav-mega,
    .site-nav.open > .nav-started {
        opacity: 1;
        transform: none;
        transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .site-nav.open > *:nth-child(1) { transition-delay: 0.05s; }
    .site-nav.open > *:nth-child(2) { transition-delay: 0.09s; }
    .site-nav.open > *:nth-child(3) { transition-delay: 0.13s; }
    .site-nav.open > *:nth-child(4) { transition-delay: 0.17s; }
    .site-nav.open > *:nth-child(5) { transition-delay: 0.21s; }
    .site-nav.open > *:nth-child(6) { transition-delay: 0.25s; }
    .site-nav.open > *:nth-child(7) { transition-delay: 0.29s; }
    .nav-mega { width: 100%; }
    .nav-mega-trigger {
        width: 100%;
        justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
    }
    .site-nav.mega-open {
        overflow: hidden;
    }
    .site-nav.mega-open > a,
    .site-nav.mega-open > .nav-mega,
    .site-nav.mega-open > .nav-started {
        opacity: 1;
        transform: none;
        transition: none;
        flex-shrink: 0;
    }
    .site-nav.mega-open > .nav-mega {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .site-nav.mega-open .nav-mega-trigger {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        background: #eaf4f4;
        border-bottom: 0;
        margin-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 12px 12px 0 0;
        color: #308587;
    }
    .site-nav.mega-open .nav-mega.is-open .nav-mega-panel {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 8px 10px 12px;
        background: #eaf4f4;
        border-radius: 0 0 12px 12px;
    }
    .site-nav.mega-open .nav-mega-item:hover,
    .site-nav.mega-open .nav-mega-item.is-current {
        background: #fff;
    }
    .nav-mega:hover .nav-mega-panel,
    .nav-mega:focus-within .nav-mega-panel,
    .nav-mega-panel {
        position: static;
        display: grid;
        grid-template-rows: 0fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        transition: grid-template-rows 0.52s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
    }
    .nav-mega.is-open .nav-mega-panel {
        grid-template-rows: 1fr;
        padding: 6px 0 10px;
    }
    .nav-mega-panel > .nav-mega-grid {
        min-height: 0;
        overflow: hidden;
    }
    .site-nav.mega-open .nav-mega-panel > .nav-mega-grid {
        overflow: visible;
    }
    .nav-mega-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .nav-mega-list.is-split { grid-template-columns: 1fr; }
    .nav-mega-item { padding: 8px 0; }
    .nav-mega.is-open .nav-mega-item {
        animation: navMegaItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .nav-mega.is-open .nav-mega-item:nth-child(1) { animation-delay: 0.04s; }
    .nav-mega.is-open .nav-mega-item:nth-child(2) { animation-delay: 0.07s; }
    .nav-mega.is-open .nav-mega-item:nth-child(3) { animation-delay: 0.1s; }
    .nav-mega.is-open .nav-mega-item:nth-child(4) { animation-delay: 0.13s; }
    .nav-mega.is-open .nav-mega-item:nth-child(5) { animation-delay: 0.16s; }
    .nav-mega.is-open .nav-mega-item:nth-child(6) { animation-delay: 0.19s; }
    .nav-mega.is-open .nav-mega-item:nth-child(7) { animation-delay: 0.22s; }
    .nav-mega.is-open .nav-mega-item:nth-child(8) { animation-delay: 0.25s; }
    .nav-mega.is-open .nav-mega-aside {
        animation: navMegaItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
    }
    .nav-mega-aside { min-height: 0; }
    .split, .form-layout, .grid-4, .grid-3, .steps, .price-grid, .t-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top { flex-wrap: wrap; padding: 36px 28px; }
    .footer-band { padding: 36px 28px; }
    .price-card.featured { transform: none; }
}

@keyframes navMegaItemIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) and (min-width: 721px) {
    .hero-title { font-size: 42px; }
    .hero-lead { font-size: 17px; }
    .why-title-serif,
    .why-title-sans { font-size: 35px; }
    .why-title-sans { margin-top: 0; }
    .why-head { margin-bottom: 30px; }
    .why-section { padding: 40px 20px; }
    .why-cards { gap: 15px; }
    .why-card h3 { font-size: 22px; margin-bottom: 6px; }
    .why-card p { font-size: 17px; }
    .why-card-inner {
        flex-direction: column;
        gap: 10px;
    }
    .know-section { padding: 40px 20px; }
    .know-title { font-size: 35px; }
    .know-copy { font-size: 18px; }
    .know-quote { font-size: 23px; }
    .know-cite span { font-size: 17px; }
    .logos-section { padding: 30px 20px; }
    .logos-slide { flex-basis: calc((100cqw - 120px) / 4); }
    .how-section { padding: 40px 20px; }
    .how-title-serif,
    .how-title-sans { font-size: 35px; }
    .how-lead { margin-bottom: 25px; }
    .how-card { padding: 20px; }
    .how-tabs { gap: 20px; margin-bottom: 30px; }
    .how-copy { gap: 25px; padding-right: 0; }
    section.audience-section { padding: 40px 0; }
    .audience-title { font-size: 35px; margin-bottom: 25px; }
    section.authors-section { padding: 40px 0; }
    .authors-title { font-size: 35px; max-width: 500px; }
    .authors-overflow-2 { margin-top: -15px; }
    section.blog-section { padding: 40px 20px; }
    .blog-title { font-size: 35px; margin-bottom: 30px; }
    .blog-posts {
        flex-wrap: wrap;
        gap: 3%;
    }
    .blog-item {
        width: 100%;
        margin-bottom: 20px;
    }
    section.faq-section { padding: 0 20px 40px; }
    .faq-heading {
        font-size: 35px;
        padding: 0 20px 0;
        margin-bottom: 5px;
    }
    .faq-lead { font-size: 18px; }
    .faq-acc-q { font-size: 20px; }
}

@media (max-width: 1160px) {
    .know-col { display: none; }
}

@media (max-width: 720px) {
    :root { --page-gutter: 16px; }
    section { padding: 64px 0; }
    .stats-band { padding: 32px 16px; }
    .stat-item img { width: 35px; height: 35px; max-width: 35px; }
    .stat-number { font-size: clamp(36px, 11vw, 43px); }
    .stat-copy { gap: 1px; }
    .stat-label { font-size: 16px; }
    .split, .form-layout, .grid-4, .grid-3, .steps, .price-grid, .t-grid {
        grid-template-columns: 1fr;
    }
    .footer-top { display: flex; flex-wrap: wrap; padding: 32px 20px; }
    .footer-band { padding: 32px 20px; }
    .footer-top::before {
        width: 700px;
        transform: translate(-59%, 0%);
    }
    .footer-band::before { transform: translate(-10%, 42%); }
    .footer-band::after { transform: translate(52%, -30%); }
    .footer-paywrap, .pay-icons, .footer-copy { text-align: left; justify-content: flex-start; }
    .footer-paywrap { margin-left: 0; width: 100%; }
    .footer-band {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding: 28px 20px 72px;
    }
    .trust-badges {
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }
    .trust-item { max-width: 100%; width: 100%; }
    .trust-item strong { font-size: 22px; }
    .trust-item span { font-size: 15px; }
    .pay-icons { justify-content: flex-start; gap: 12px 14px; }
    .footer-copy {
        text-align: left !important;
        padding-right: 64px !important;
        font-size: 14px !important;
        line-height: 1.5;
    }
    .footer-touch { flex-direction: column; }
    .why-section { padding: 40px 20px; }
    .why-grid { flex-direction: column; }
    .why-photo,
    .why-cards { width: 100%; flex: 1 1 100%; }
    .why-photo {
        position: relative;
        min-height: 0;
    }
    .why-photo img {
        position: static;
        height: auto;
        max-width: 100%;
        border-radius: 17px;
    }
    .why-head { margin-bottom: 30px; }
    .why-title-serif { font-size: 36px; line-height: 1em; }
    .why-title-sans { font-size: 26px; line-height: 1.2em; margin-top: 0; }
    .why-cards { gap: 15px; }
    .why-card h3 { font-size: 22px; margin-bottom: 6px; }
    .why-card p { font-size: 16px; }
    .why-card-inner {
        flex-direction: column;
        gap: 0;
    }
    .split img { height: 280px; }
    .hero-laptop { max-width: 94%; }
    .hero-books-wrap {
        transform: translate(-50%, -50%) scale(min(1, calc(100vw * 0.94 / 650)));
    }
    .col-books-left::after,
    .col-books-right::after { display: none; }
    .col-books-left .hero-book.no-shadow .hero-book-face::after {
        display: block;
        left: 100%;
        right: auto;
    }
    .hero-proof { flex-wrap: wrap; gap: 12px; width: auto; margin: 32px auto; }
    .hero-proof-copy { text-align: center; }
    .hero-proof-excellent { justify-content: center; }
    .hero-title { font-size: 32px; white-space: normal; }
    .hero-lead { font-size: 17px; }
    .brand img { height: 38px; }
    .know-section { padding: 40px 20px; }
    .know-title { font-size: 27px; line-height: 1em; }
    .know-copy { font-size: 17px; }
    .know-quote { font-size: 23px; }
    .know-cite span { font-size: 17px; }
    .know-cite img { width: 50px; height: 50px; }
    .logos-section { padding: 25px 0; }
    .how-section { padding: 40px 20px; }
    .how-title-serif { font-size: 34px; line-height: 1em; }
    .how-title-sans { font-size: 27px; line-height: 1.2em; margin-top: 0; padding-bottom: 25px; }
    .how-lead { font-size: 18px; margin-bottom: 25px; }
    .how-tab { font-size: 17px; line-height: 1.4em; }
    .how-copy h3 { font-size: 23px; line-height: 1.2em; }
    .how-tabs { gap: 20px; margin-bottom: 20px; }
    .how-card { padding: 20px; }
    section.audience-section { padding: 40px 0; }
    section.authors-section { padding: 40px 0; }
    section.blog-section { padding: 40px 20px; }
    .blog-title { font-size: 30px; line-height: 1.2em; margin-bottom: 30px; }
    section.faq-section { padding: 40px 20px; }
    .faq-heading { font-size: 30px; line-height: 1.2em; padding: 0 20px 0; margin-bottom: 5px; }
    .faq-lead { font-size: 18px; }
    .faq-acc-q { font-size: 20px; }
}

@media (max-width: 767px) {
    .audience-title {
        font-size: 34px;
        line-height: 1em;
        max-width: 304px;
        margin-bottom: 25px;
    }
    .audience-nav { display: none; }
    .authors-title {
        font-size: 33px;
        line-height: 1.2em;
        max-width: 100%;
        margin-bottom: 5px;
        padding: 0 20px;
    }
    .authors-lead {
        font-size: 18px;
        line-height: 19px;
    }
    .authors-marquee::before,
    .authors-marquee::after {
        display: block;
        width: 28px;
        max-width: 40px;
    }
    .authors-overflow {
        overflow: hidden;
        width: 100%;
    }
    .authors-card {
        width: min(340px, calc(100vw - 48px));
        max-width: calc(100vw - 48px);
        padding: 18px 16px;
    }
    .authors-text { font-size: 16px; letter-spacing: -0.03em; }
    .authors-bio { padding-left: 54px; padding-right: 24px; }
    .authors-letter { width: 44px; height: 44px; }
    .authors-cta {
        font-size: 19px;
        padding: 14px 50px;
    }
    .blog-posts {
        flex-wrap: wrap;
        gap: 3%;
    }
    .blog-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .blog-item-body { padding: 20px; }
}

@media (max-width: 1024px) {
    .how-section { padding: 48px 16px 56px; overflow-x: hidden; }
    .how-inner { width: 100%; max-width: 100%; }
    .how-title-serif,
    .how-title-sans { font-size: clamp(28px, 7.2vw, 40px); }
    .how-lead {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 8px;
        max-width: 36em;
    }
    .how-card {
        display: grid;
        padding: 8px 18px 18px;
        border-radius: 20px;
        overflow: hidden;
        max-width: 100%;
    }
    .how-tabs,
    .how-panels {
        display: contents;
    }
    .how-tab {
        grid-row: calc(var(--how-order) * 2 - 1);
        width: 100%;
        flex: none;
        min-height: 52px;
        padding: 16px 32px 16px 0;
        margin: 0;
        align-items: center;
        font-size: clamp(17px, 4.6vw, 20px);
        line-height: 1.35;
        border-bottom: 1px solid #E8EEF3;
        border-bottom-width: 1px;
        white-space: normal;
    }
    .how-tab:hover,
    .how-tab[aria-selected="true"] {
        border-bottom-color: #E8EEF3;
    }
    .how-tab-text {
        display: block;
        font-size: inherit;
        line-height: inherit;
        padding-right: 8px;
    }
    .how-step {
        display: inline;
        margin-right: 6px;
    }
    .how-tab::after {
        content: "";
        opacity: 0.6;
        width: 14px;
        height: 9px;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.5215 1.96569L12.3248 0.769043L7.00009 6.0938L1.67533 0.769043L0.478688 1.96569L7.00009 8.48708L13.5215 1.96569Z' fill='%23133B49'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        transition: 0.2s ease-in-out all;
    }
    .how-tab[aria-selected="true"]::after {
        opacity: 1;
        transform: translateY(-50%) rotate(-180deg);
    }
    .how-panel {
        grid-row: calc(var(--how-order) * 2);
        width: auto !important;
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
    }
    .how-panel.is-active {
        max-height: none;
        overflow: visible;
        visibility: visible;
        margin: 4px 0 12px;
    }
    .how-panel-inner {
        flex-direction: column;
        opacity: 1 !important;
        gap: 0;
    }
    .how-visual {
        order: -1;
        width: 100%;
        padding-bottom: 28px;
        overflow: visible;
    }
    .how-shot {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }
    .how-copy {
        width: 100%;
        padding: 0;
        gap: 20px;
    }
    .how-copy h3 {
        width: auto;
        max-width: 100%;
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.25;
        overflow-wrap: break-word;
    }
    .how-list li { min-width: 0; gap: 10px; }
    .how-list span { overflow-wrap: break-word; font-size: 16px; }
    .how-cta {
        margin-bottom: 4px;
        padding: 14px 28px;
    }
    .how-float {
        width: min(32%, 120px);
        max-width: 32%;
        top: auto;
        bottom: 18%;
        left: 4%;
    }
}

@media (max-width: 768px) {
    .how-tab-text {
        display: block;
    }
    .how-step {
        display: inline;
        margin-right: 5px;
    }
}

@media (max-width: 767px) {
    .logos-section { padding: 25px 0; }
    .logos-slide {
        flex: 0 0 auto !important;
        width: auto !important;
        box-sizing: border-box !important;
    }
    .logos-carousel::before,
    .logos-carousel::after {
        z-index: 3;
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100px;
        top: 0;
        pointer-events: none;
    }
    .logos-carousel::before {
        left: 0;
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
    .logos-carousel::after {
        right: 0;
        left: auto;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    }
}

@media (min-width: 960px) {
    .hero-title { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-lead,
    .btn-hero,
    .hero-proof,
    .fadeInLeft,
    .fadeInRight,
    .why-card,
    .why-card.in,
    .know-photo,
    .how-float,
    .logos-track,
    .audience-title,
    .audience-carousel-wrap,
    .authors-row,
    .about-fade,
    .about-fade-up,
    .about-fade.in,
    .about-fade-up.in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .site-nav,
    .site-nav > a,
    .site-nav > .nav-mega,
    .site-nav > .nav-started,
    .nav-mega-panel,
    .nav-mega-item,
    .nav-toggle span,
    .nav-backdrop,
    .nav-mega-caret-ico {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== About page (Spines clone) ===== */
.page-about .hero-blobs { display: none; }

.about-fade,
.about-fade-up { opacity: 0; }
.about-fade.in {
    animation: aboutFadeIn 1.25s ease forwards;
    animation-delay: var(--d, 0ms);
}
.about-fade-up.in {
    animation: aboutFadeInUp 1.25s ease forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes aboutFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes aboutFadeInUp {
    from { opacity: 0; transform: translate3d(0, 100px, 0); }
    to { opacity: 1; transform: none; }
}

.about-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 0 4px;
    border-bottom: 1px solid #308587;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3em;
    color: #308587;
}

section.about-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 20px 90px;
    overflow: visible;
}
.about-hero-copy {
    position: relative;
    width: min(1400px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 35px;
    text-align: center;
}
.about-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.about-blob-a {
    width: 360px;
    aspect-ratio: 1 / 1;
    left: 0;
    top: 0;
    background: #3085878F;
    filter: blur(190px);
    transform: translate(-70%, -84%);
}
.about-blob-b {
    width: 360px;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 106%;
    background: #3085878F;
    filter: blur(190px);
    transform: translate(-53%, -63%);
}
.about-blob-c {
    width: 290px;
    aspect-ratio: 1 / 1;
    right: 0;
    top: 0;
    background: #092d3148;
    filter: blur(180px);
    transform: translate(40%, -67%);
}
.about-hero-title {
    position: relative;
    z-index: 1;
    max-width: 706px;
    margin: 0 0 18px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
    text-align: center;
}
.about-hero-title::after {
    display: inline-block;
    width: 0.8em;
    height: 0.6em;
    margin-left: 0.3em;
    content: "";
    background: url("data:image/svg+xml,%3Csvg width='41' height='37' viewBox='0 0 41 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.1635 37L17.2398 34.3788C13.8456 31.3206 11.0395 28.6826 8.82153 26.4646C6.60354 24.2466 4.83924 22.2555 3.52861 20.4911C2.21798 18.7268 1.30223 17.1054 0.781335 15.6267C0.260445 14.148 0 12.6358 0 11.0899C0 7.93097 1.05858 5.29292 3.17575 3.17575C5.29292 1.05858 7.93097 0 11.0899 0C12.8374 0 14.5009 0.369664 16.0804 1.10899C17.6599 1.84832 19.0209 2.8901 20.1635 4.23433C21.3061 2.8901 22.6671 1.84832 24.2466 1.10899C25.8261 0.369664 27.4896 0 29.2371 0C32.396 0 35.0341 1.05858 37.1512 3.17575C39.2684 5.29292 40.327 7.93097 40.327 11.0899C40.327 12.6358 40.0665 14.148 39.5456 15.6267C39.0248 17.1054 38.109 18.7268 36.7984 20.4911C35.4877 22.2555 33.7234 24.2466 31.5055 26.4646C29.2875 28.6826 26.4814 31.3206 23.0872 34.3788L20.1635 37Z' fill='%23308587'/%3E%3C/svg%3E") 0 50% no-repeat;
    background-size: contain;
}
.about-hero-lead {
    position: relative;
    z-index: 1;
    max-width: 686px;
    margin: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: #38485C;
    text-align: center;
}
.about-hero-media {
    position: relative;
    z-index: 1;
    width: min(1170px, 100%);
}
.about-hero-media img {
    width: 100%;
    aspect-ratio: 2 / 0.93;
    object-fit: cover;
    border-radius: 14px;
}

section.about-should {
    padding: 0 20px 70px;
}
.about-should-inner {
    width: min(1500px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-should-title {
    max-width: 706px;
    margin: 0 0 30px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
    text-align: center;
}
.about-should-grid {
    display: flex;
    flex-direction: row;
    gap: 4%;
    width: 100%;
    align-items: stretch;
}
.about-should-item {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.about-should-icon {
    margin: 0 0 15px;
    line-height: 0;
}
.about-should-icon svg {
    width: 64px;
    height: 64px;
    display: block;
}
.about-should-item h3 {
    margin: 0 0 3px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #092d31;
}
.about-should-item p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #38485C;
}

section.about-nums {
    background: #F8F5F1;
    padding: 70px 20px;
}
.about-nums-inner {
    width: min(1090px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-nums-title {
    max-width: 661px;
    margin: 0 0 30px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.03em;
    color: #092d31;
    text-align: center;
}
.about-nums-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
}
.about-num {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-align: center;
}
.about-num + .about-num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, rgba(48, 133, 135, 0) 0%, rgba(48, 133, 135, 0.6) 50%, rgba(48, 133, 135, 0) 100%);
}
.about-num-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0 0 5px;
    font-family: "DM Sans", sans-serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #38485C;
}
.about-num-value .stat-count,
.about-num-value .stat-suffix {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
}
.about-num-label {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: #38485C;
}

section.about-people {
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}
.about-people-inner {
    position: relative;
    width: min(1400px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}
.about-blob-d {
    width: 400px;
    aspect-ratio: 1 / 0.7;
    left: 50%;
    top: 0;
    background: #3085878A;
    filter: blur(210px);
    transform: translate(-67%, -2%);
}
.about-people-title {
    position: relative;
    z-index: 1;
    max-width: 706px;
    margin: 0 0 18px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.about-people-lead {
    position: relative;
    z-index: 1;
    max-width: 873px;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: #092d31;
}

section.about-team-wrap {
    padding: 70px 20px 55px;
}
.about-team-inner {
    width: min(1300px, 100%);
    margin: 0 auto;
}
.about-team-title {
    margin: 0 0 25px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.1;
    color: #092d31;
    text-align: center;
}
.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6%;
}
.about-team-item {
    width: calc(20% - 1.28%);
    margin-bottom: 3.5%;
}
.about-team-photo {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    width: 100%;
    transition: 0.4s ease-in-out all;
    transform: translateZ(0);
}
a.about-team-photo::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    opacity: 0;
    transition: 0.4s ease-in-out all;
    z-index: 1;
}
.about-team-bio-btn {
    opacity: 0;
    transition: 0.3s ease-in-out all;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    color: #4de6c2;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px;
    border: 1px solid #4de6c2;
    border-radius: 8px;
    z-index: 2;
    white-space: nowrap;
}
a.about-team-photo:hover::before { opacity: 1; }
a.about-team-photo:hover .about-team-bio-btn { opacity: 1; }
a.about-team-photo:hover { transform: translateY(-5px) translateZ(0); }
.about-team-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    display: block;
}
.about-team-meta {
    display: flex;
    margin-top: 16px;
    justify-content: space-between;
    align-items: flex-start;
}
.about-team-name {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #000;
    line-height: 1.1;
}
.about-team-li {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    margin-top: 2px;
    margin-left: 10px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66634 9.16634V13.333M6.66634 6.66634V6.67467M9.99967 13.333V9.16634M13.333 13.333V10.833C13.333 10.391 13.1574 9.96706 12.8449 9.6545C12.5323 9.34194 12.1084 9.16634 11.6663 9.16634C11.2243 9.16634 10.8004 9.34194 10.4878 9.6545C10.1753 9.96706 9.99967 10.391 9.99967 10.833M3.33301 4.99967C3.33301 4.55765 3.5086 4.13372 3.82116 3.82116C4.13372 3.5086 4.55765 3.33301 4.99967 3.33301H14.9997C15.4417 3.33301 15.8656 3.5086 16.1782 3.82116C16.4907 4.13372 16.6663 4.55765 16.6663 4.99967V14.9997C16.6663 15.4417 16.4907 15.8656 16.1782 16.1782C15.8656 16.4907 15.4417 16.6663 14.9997 16.6663H4.99967C4.55765 16.6663 4.13372 16.4907 3.82116 16.1782C3.5086 15.8656 3.33301 15.4417 3.33301 14.9997V4.99967Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50% / contain no-repeat;
}
.about-team-li[href="#"] { pointer-events: none; }
.about-team-role {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #38485C;
}
.about-team-bio {
    margin-top: 7px;
    padding-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    transition: 0.3s ease-in-out all;
    border-bottom: 1px solid transparent;
}
.about-team-bio:hover {
    border-bottom-color: #000;
    color: #000;
}
.about-team-bio::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.40625' y='1.40625' width='27.1875' height='27.1875' rx='6.09375' stroke='black' stroke-width='2.8125'/%3E%3Cpath d='M17.4749 9.02513C16.8185 8.36875 15.9283 8 15 8C13.075 8 11.5 9.5575 11.5 11.5C11.5 13.4425 13.0575 15 15 15C15.9283 15 16.8185 14.6312 17.4749 13.9749C18.1313 13.3185 18.5 12.4283 18.5 11.5C18.5 10.5717 18.1313 9.6815 17.4749 9.02513Z' fill='black'/%3E%3Cpath d='M8 20.25V22H22V20.25C22 18.325 18.8675 16.75 15 16.75C11.1325 16.75 8 18.325 8 20.25Z' fill='black'/%3E%3C/svg%3E");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

section.about-values {
    padding: 0 20px 55px;
}
.about-values-inner {
    width: min(1300px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-values-title {
    max-width: 700px;
    margin: 0 0 25px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.1;
    color: #092d31;
    text-align: center;
}
.about-flips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.about-flip {
    position: relative;
    width: calc(33.33% - 16px * 2 / 3);
    height: 310px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}
.about-flip-front,
.about-flip-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: opacity 0.5s ease;
}
.about-flip-front {
    background-size: cover;
    background-position: center;
    text-align: center;
    z-index: 1;
}
.about-flip-front h3 {
    max-width: 234px;
    margin: 0 auto;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -0.03em;
    color: #092d31;
}
.about-flip-back {
    background: #308587;
    opacity: 0;
    z-index: 2;
    padding: 10% 14%;
    text-align: center;
}
.about-flip-back p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #092d31;
}
.about-flip:hover .about-flip-back,
.about-flip:focus .about-flip-back,
.about-flip:focus-within .about-flip-back {
    opacity: 1;
}

section.about-careers {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F7F9;
    padding: 70px 20px;
    margin: 0 0 70px;
    text-align: center;
}
.about-careers-title {
    max-width: 661px;
    margin: 0 0 25px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.about-careers-lead {
    max-width: 537px;
    margin: 0 0 35px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: #4C617B;
}
.about-join-wrap {
    position: relative;
    z-index: 1;
    display: inline-flex;
}
.about-join-wrap::after {
    z-index: -1;
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    width: 85%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(12px);
    content: "";
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
}
.about-join {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 50px 16px;
    background: #308587;
    color: #092d31;
    fill: #092d31;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s ease-in-out all;
}
.about-join::before {
    z-index: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 90%;
    width: 85%;
    background: rgba(48, 133, 135, 0.7);
    filter: blur(12px);
    content: "";
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
    opacity: 0;
}
.about-join:hover::before {
    opacity: 1;
    top: 50%;
}
.about-join:active { background: #276c6e; }
.about-join span,
.about-join svg {
    position: relative;
    z-index: 1;
    margin-bottom: 1px;
}
.about-join svg {
    height: 0.75em;
    width: auto;
    display: block;
    fill: currentColor;
    transition: 0.3s ease-in-out all;
}
.about-join:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) {
    section.about-hero { padding: 50px 20px 60px; }
    .about-hero-copy { padding-bottom: 20px; }
    .about-blob-a { transform: translate(-20vw, -84%); }
    .about-blob-b { transform: translate(-39%, -16%); }
    .about-blob-c { transform: translate(2vw, -67%); }
    .about-hero-title { font-size: 42px; }
    section.about-should { padding: 0 20px 60px; }
    .about-should-title { font-size: 42px; }
    .about-should-item h3 { font-size: 18px; }
    .about-should-item p { font-size: 18px; }
    section.about-nums { padding: 60px 20px; }
    .about-nums-title { font-size: 35px; max-width: 500px; }
    .about-num-value { font-size: 50px; }
    section.about-people { padding: 60px 20px; }
    .about-blob-d { transform: translate(-53%, -2%); }
    .about-people-title { font-size: 42px; }
    .about-people-lead { max-width: 716px; }
    section.about-team-wrap { padding: 60px 20px 40px; }
    .about-team-title { font-size: 40px; margin-bottom: 20px; }
    .about-team { gap: 2.5%; }
    .about-team-item {
        width: calc(33.3% - 1.65%);
        margin-bottom: 30px;
    }
    section.about-values { padding: 0 20px 60px; }
    .about-values-title { font-size: 38px; max-width: 610px; }
    .about-flip { width: calc(50% - 8px); }
    .about-careers-title { font-size: 38px; max-width: 500px; }
}

@media (max-width: 767px) {
    section.about-hero { padding: 40px 20px 40px; }
    .about-hero-copy { padding-bottom: 0; }
    .about-blob-a,
    .about-blob-b { width: 100%; transform: translate(-30%, -90%); }
    .about-blob-b { top: 147%; }
    .about-blob-c { width: 90%; transform: translate(-55%, -52%); }
    .about-hero-title { font-size: 31px; line-height: 1.1em; max-width: 344px; margin-bottom: 20px; }
    .about-hero-lead { font-size: 18px; max-width: 458px; }
    section.about-should { padding: 0 20px 40px; }
    .about-should-title { font-size: 29px; max-width: 344px; margin-bottom: 15px; }
    .about-should-grid {
        flex-direction: column;
        gap: 30px;
    }
    .about-should-icon svg { width: 56px; height: 56px; }
    section.about-nums { padding: 40px 20px; }
    .about-nums-title { font-size: 24px; line-height: 1.1em; max-width: none; margin-bottom: 0; padding: 0 20px; }
    .about-nums-grid {
        flex-wrap: wrap;
        row-gap: 25px;
        margin-top: 25px;
    }
    .about-num {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 10px;
    }
    .about-num + .about-num::before { content: none; }
    .about-num-value { font-size: 43px; margin-bottom: 1px; }
    .about-num-label { font-size: 18px; }
    section.about-people { padding: 40px 20px; }
    .about-blob-d { width: 100%; transform: translate(-45%, 77%); }
    .about-people-title { font-size: 29px; line-height: 1.2em; max-width: 255px; margin-bottom: 5px; }
    .about-people-lead { font-size: 18px; }
    section.about-team-wrap { padding: 40px 20px; }
    .about-team-title { font-size: 28px; line-height: 1.1em; margin-bottom: 20px; }
    .about-team { gap: 4%; }
    .about-team-item {
        width: calc(50% - 2%);
        margin-bottom: 20px;
    }
    .about-team-name { font-size: 15px; }
    .about-team-role { font-size: 14px; }
    .about-team-meta .about-team-li { margin-top: -3px; padding-top: 0; }
    section.about-values { padding: 0 20px 40px; }
    .about-values-title { font-size: 28px; line-height: 1.15em; max-width: 432px; margin-bottom: 20px; }
    .about-flip { width: 100%; }
    section.about-careers { padding: 40px 20px; margin-bottom: 70px; }
    .about-careers-title { font-size: 28px; line-height: 1.15em; max-width: 384px; margin-bottom: 20px; }
    .about-careers-lead { font-size: 18px; margin-bottom: 30px; }
    .about-join { font-size: 19px; padding: 14px 50px; }
}

@media (max-width: 560px) {
    .about-team { gap: 4%; }
    .about-team-item { width: calc(50% - 2%); margin-bottom: 20px; }
}

/* ===== Contact page (Spines clone) ===== */
.page-contact .hero-blobs { display: none; }
.page-contact .site-wrap { overflow-x: clip; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

section.contact-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}
.contact-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.contact-blob-a {
    width: 592px;
    aspect-ratio: 1 / 1;
    right: 269px;
    top: -496px;
    background: #FFEAF7;
    filter: blur(81px);
}
.contact-blob-b {
    width: 450px;
    aspect-ratio: 1 / 1;
    right: -155px;
    top: 124px;
    background: #d5e0e1;
    filter: blur(81px);
}
.contact-blob-c {
    width: 400px;
    aspect-ratio: 1 / 1;
    left: -157px;
    bottom: -371px;
    background: #d4ecec;
    filter: blur(100px);
}
.contact-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: #092d31;
}
.contact-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 21px;
    font-weight: 300;
    color: #4B4C4D;
}

section.contact-body {
    padding: 0 20px 70px;
}
.contact-inner {
    width: min(1140px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-cards {
    display: flex;
    gap: 15px;
    width: 100%;
    align-items: stretch;
}
.contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 9px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13), 0 2px 30.2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    font: inherit;
    color: inherit;
    transition: 0.3s ease;
}
.contact-card:hover {
    background: #eef6f6;
}
.contact-card.selected {
    background: #eef6f6;
    border-color: #7CA897;
}
.contact-card-icon { line-height: 0; }
.contact-card-icon svg { width: 36px; height: 36px; display: block; }
.contact-card-title {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    color: #092d31;
}
.contact-card-title .grey {
    opacity: 0.7;
    margin-top: 0.25em;
    font-size: 0.95em;
    font-weight: 400;
}
.contact-card-text {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4em;
    color: #54595F;
}

.contact-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 580px;
    padding-top: 40px;
}
.contact-panel.is-open {
    display: flex;
    animation: contactFadeIn 0.5s ease;
}
@keyframes contactFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.contact-reach {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.contact-reach-label {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #308587;
}
.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #092d31;
}
.contact-pill-ico {
    width: 32px;
    height: 32px;
    background: #308587;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-pill-ico svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    display: block;
}
.contact-hours {
    margin: 5px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #092d31;
    opacity: 0.7;
}
.contact-or {
    position: relative;
    width: 160px;
    text-align: center;
}
.contact-or span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 8px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #54595F;
}
.contact-or::before,
.contact-or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 25px);
    height: 1px;
    background: #000;
    opacity: 0.1;
}
.contact-or::before { left: 0; }
.contact-or::after { right: 0; }
.contact-form-lead {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #092d31;
    text-align: center;
}
.contact-form-lead .contact-pill-ico { margin-top: -1px; }
.contact-alert {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 16px;
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    text-align: center;
}
.contact-form { width: 100%; }
.contact-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -15px;
}
.contact-field {
    position: relative;
    width: 50%;
    padding: 0 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.contact-field-full { width: 100%; }
.contact-ico {
    position: absolute;
    z-index: 1;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 19px;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.contact-ico svg { width: 15px; height: auto; display: block; }
.contact-field-area .contact-ico { top: 22px; transform: none; }
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: #eaf3f3;
    color: #0D111D;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    padding: 0.6rem 0 0.6rem 40px;
    outline: none;
    box-sizing: border-box;
}
.contact-field-tel input { padding-left: 13px; }
.contact-field textarea { padding-top: 10px; min-height: 72px; resize: vertical; }
.contact-field select {
    padding: 10px 10px 10px 40px;
    color: #618A8C;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 571.4 571.4'%3E%3Cpath fill='%23618A8C' d='M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #618A8C; opacity: 1; }
.contact-field.is-required::after {
    content: "*";
    position: absolute;
    left: 13px;
    top: 10px;
    color: #FF4588;
    font-size: 20px;
    line-height: 1;
}
.contact-accept {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}
.contact-accept.is-required::after {
    content: "*";
    position: absolute;
    left: 13px;
    top: -3px;
    color: #FF4588;
    font-size: 20px;
}
.contact-accept input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #092d31;
    flex-shrink: 0;
}
.contact-accept label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.6);
}
.contact-accept a {
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}
.contact-submit-wrap { width: 100%; padding: 0 15px; box-sizing: border-box; }
.contact-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    padding: 15px 22px 15px 20px;
    background: linear-gradient(90deg, #092d31 0%, #308587 100%);
    border: 0;
    border-left: 8px solid #FF4588;
    border-radius: 8px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
}
.contact-submit:hover { background: linear-gradient(90deg, #276c6e 0%, #3a9a9c 100%); }
.contact-submit svg {
    width: 8px;
    height: 14px;
    display: block;
    transition: 0.2s ease-in-out all;
}
.contact-submit:hover svg { transform: translateX(4px); }

section.contact-map {
    padding: 0;
    margin: 0 0 70px;
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 525px;
    border: 0;
}

@media (max-width: 1024px) {
    section.contact-hero { padding: 70px 0; }
    .contact-hero h1 { font-size: 45px; }
    .contact-submit { font-size: 20px; }
    section.contact-map { margin-bottom: 50px; }
}
@media (max-width: 767px) {
    section.contact-hero { padding: 60px 20px; }
    .contact-hero h1 { font-size: 36px; max-width: 320px; }
    .contact-hero p { font-size: 18px; line-height: 19px; }
    section.contact-body { padding: 0 20px 60px; }
    .contact-cards { flex-direction: column; }
    .contact-card { padding: 20px; min-height: 145px; justify-content: center; }
    .contact-card-icon svg { width: 30px; height: 30px; }
    .contact-card-title { font-size: 17px; }
    .contact-card-text { font-size: 15px; }
    .contact-reach-label,
    .contact-hours { font-size: 18px; line-height: 19px; }
    .contact-field { width: 100%; }
    .contact-field input,
    .contact-field select,
    .contact-field textarea { background: #eaf4f4; font-size: 16px; }
    .contact-submit { font-size: 17px; }
}

/* ===== Services page (Spines clone) ===== */
.page-services .hero-blobs { display: none; }
.page-services .site-wrap { overflow-x: clip; }

section.svc-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 15px 60px;
    background-image: linear-gradient(180deg, #C3FFF400 0%, #FFFFFF 87%);
}
.svc-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    aspect-ratio: 1 / 1;
}
.svc-blob-mint {
    width: 400px;
    left: -352px;
    bottom: -469px;
    background: #d4ecec;
    filter: blur(140px);
}
.svc-blob-blue {
    width: 310px;
    right: -300px;
    top: 250px;
    background: #d5e0e1;
    filter: blur(120px);
}
.svc-blob-pink {
    width: 592px;
    left: 250px;
    top: -486px;
    background: #FFEAF7;
    filter: blur(130px);
}
.svc-hero-row {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    display: flex;
    align-items: center;
    gap: 40px;
}
.svc-hero-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}
.svc-hero-copy h1 {
    margin: 7px 0 25px;
    max-width: 702px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 49px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.06em;
    color: #092d31;
    text-align: left;
}
.svc-hero-copy p {
    margin: 0 0 25px;
    max-width: 769px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35em;
    color: #4B4C4D;
}
.svc-hero-art {
    flex: 0 1 46%;
    max-width: 520px;
}
.svc-hero-art img,
.svc-hero-art-mobile {
    display: block;
    width: 100%;
    height: auto;
}
.svc-hero-art-mobile { display: none; padding: 0 0 20px; }

.svc-start {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 8px;
    margin-top: 5px;
    padding: 14px 30px;
    background: #308587;
    color: #092d31;
    fill: #092d31;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: 0.3s ease-in-out all;
}
.svc-start:active { background: #276c6e; }
.svc-start::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 90%;
    width: 85%;
    background: rgba(48, 133, 135, 0.7);
    filter: blur(12px);
    border-radius: 50%;
    transition: 0.3s ease-in-out all;
    opacity: 0;
}
.svc-start:hover::before { opacity: 1; top: 50%; }
.svc-start > * { position: relative; z-index: 1; }
.svc-start-ico {
    display: flex;
    transition: 0.3s ease-in-out all;
}
.svc-start:hover .svc-start-ico { transform: translateX(3px); }
.svc-start-ico svg {
    display: block;
    width: auto;
    height: 0.7em;
    fill: #092d31;
}

.svc-proof {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    padding: 0 20px;
}
.svc-proof-loved {
    margin: 0 0 -5px;
    max-width: 167px;
    text-align: right;
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.58em;
    color: #092d31;
}
.svc-proof-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.svc-proof-brand img {
    display: block;
    width: 85px;
    height: 40px;
    object-fit: contain;
}
.svc-proof-brand span {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.3px;
    color: #308587;
}

section.svc-grid-sec {
    position: relative;
    overflow: hidden;
    padding: 60px 20px 70px;
}
.svc-grid-inner {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.svc-sec-title {
    margin: 0 0 35px;
    max-width: 611px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.svc-grid-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    aspect-ratio: 1 / 1;
    width: 430px;
}
.svc-grid-blob-a {
    top: 0;
    right: 0;
    background: #30858766;
    filter: blur(250px);
    transform: translate(120%, -20%);
}
.svc-grid-blob-b {
    bottom: 0;
    left: 0;
    background: #092d312E;
    filter: blur(350px);
    transform: translate(-93%, 19%);
}
.svc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
    width: 100%;
}
.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 32%;
    padding: 24px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(-90deg, #DCE2EA 0%, rgba(48, 133, 135, 0.3) 100%) !important;
    box-sizing: border-box;
}
.svc-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 15px;
    background: #fff;
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card-icon {
    display: block;
    height: 50px;
    width: auto;
    margin: 0 0 7px;
}
.svc-card h3 {
    margin: 0 0 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: #092d31;
}
.svc-card h3 a { color: inherit; text-decoration: none; }
.svc-card p {
    margin: 0 0 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45em;
    color: #4C617B;
}
.svc-card ul {
    margin: 0;
    padding: 0;
}
.svc-card li {
    position: relative;
    margin: 3px 0;
    padding-left: 28px;
    list-style: none;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4C617B;
}
.svc-card li::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 1em;
    height: 0.7em;
    background: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.16797 6.00065L5.33464 10.1673L13.668 1.83398' stroke='%23308587' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50% / contain no-repeat;
}
.svc-more {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    margin-top: auto;
    padding: 10px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #092d31;
    background: transparent;
    text-decoration: none;
}
.svc-more-ico {
    display: flex;
    transition: 0.2s ease-in-out all;
}
.svc-more-ico svg {
    display: block;
    height: 0.7em;
    width: auto;
    fill: currentColor;
}
.svc-more:hover,
.svc-more:focus { color: #308587; }
.svc-more:hover .svc-more-ico { transform: translateX(3px); }

section.svc-reach {
    position: relative;
    overflow: hidden;
    padding: 0 20px 70px;
}
.svc-reach-inner {
    position: relative;
    z-index: 1;
    width: min(1140px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.svc-reach-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    aspect-ratio: 1 / 1;
}
.svc-reach-blob-a {
    width: 430px;
    left: 42%;
    bottom: -442px;
    background: #092d312E;
    filter: blur(250px);
    transform: translate(30%, 20%);
}
.svc-reach-blob-b {
    width: 430px;
    left: 87%;
    bottom: -347px;
    background: #30858761;
    filter: blur(250px);
    transform: translate(0, -23%);
}
.svc-reach-blob-c {
    width: 430px;
    left: 0;
    top: 132px;
    background: #883AD299;
    filter: blur(250px);
    transform: translate(-120%, 0);
}
.svc-reach-mock {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 0 15px;
}
.svc-reach h2 {
    margin: 0 0 25px;
    max-width: 584px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -0.06em;
    color: #092d31;
}
.svc-reach h2 .line {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.svc-reach p {
    margin: 0 0 40px;
    max-width: 500px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
    color: #4C617B;
}
.svc-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.svc-logos span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.5%;
    height: 48px;
    padding: 10px 15px;
    box-sizing: border-box;
    transition: 0.2s ease-in-out all;
}
.svc-logos img {
    display: block;
    max-width: 100%;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    section.svc-hero { padding: 40px 15px 50px; }
    .svc-hero-row { flex-direction: column; text-align: center; }
    .svc-hero-copy { align-items: center; }
    .svc-hero-copy h1 {
        max-width: 578px;
        font-size: 34px;
        text-align: center;
    }
    .svc-hero-copy p { font-size: 19px; text-align: center; }
    .svc-hero-art { display: none; }
    .svc-hero-art-mobile { display: block; max-width: 420px; }
    .svc-proof-loved { text-align: center; font-size: 17px; line-height: 1.2em; max-width: none; }
    .svc-sec-title { font-size: 35px; max-width: 487px; }
    .svc-grid { gap: 3vw 3%; }
    .svc-card { width: 48.5%; padding: 20px; }
    .svc-card h3 { font-size: 20px; }
    .svc-reach h2 { font-size: 44px; max-width: 436px; }
    .svc-logos span { width: 25%; }
}
@media (max-width: 767px) {
    .svc-hero-copy h1 { font-size: 28px; max-width: 467px; }
    .svc-sec-title { font-size: 25px; max-width: 386px; margin-bottom: 25px; }
    section.svc-grid-sec { padding: 40px 20px; }
    .svc-grid { gap: 20px; }
    .svc-card { width: 100%; }
    .svc-reach h2 { font-size: 32px; }
    .svc-reach p { font-size: 16px; }
    .svc-logos span { width: 50%; }
    .svc-proof { flex-direction: column; }
}

/* ===== Pricing page (Spines clone) ===== */
.page-pricing .hero-blobs { display: none; }
.page-pricing .site-wrap { overflow-x: clip; background: #f6f7f9; }
.page-pricing section { padding: 0; }
.page-pricing .pricing {
    font-family: "DM Sans", sans-serif;
    max-width: 1280px;
}
.page-pricing .pricing .bundle .btn.btn-checkout {
    width: 100%;
    border-radius: 8px !important;
    padding: 12px !important;
    font: 600 16px/24px "DM Sans", Arial, sans-serif !important;
    background: #308587 !important;
    color: #092d31 !important;
    border: 0 !important;
    display: block;
    text-align: center;
}
.page-pricing .pricing .bundle .btn.btn-checkout:hover { background: #3a9a9c !important; }
.page-pricing .bundles-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.page-pricing .bundles-slider .swiper-slide { flex-shrink: 0; }
.page-pricing .head .total-note { display: none; }
.page-pricing .styled-select {
    position: relative;
}
.page-pricing .styled-select::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #66848f;
    border-bottom: 2px solid #66848f;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.page-pricing .group-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 10px;
    text-transform: none;
}
.page-pricing .membership-tooltip { display: none; }
.prc-tip {
    position: absolute;
    z-index: 80;
    max-width: 260px;
    padding: 10px 12px;
    background: #092d31;
    color: #fff;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.35;
    pointer-events: none;
}

section.prc-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 10px;
    background: #f6f7f9;
}
.prc-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.prc-hero .title-pricing {
    margin: 0 0 10px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
    color: #308587;
    transition: 0.3s ease-in-out opacity;
}
body.page-pricing.children .prc-hero .title-pricing { opacity: 0; }
body.page-pricing.children section.prc-hero { padding: 110px 20px 0; }
.prc-hero h1 {
    max-width: 508px;
    margin: 0 0 24px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: -2.2px;
    line-height: 1.05;
    color: #092d31;
}
.prc-hero h1 span { display: inline; }
.prc-hero-copy p {
    max-width: 411px;
    margin: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: #374151;
}
.prc-children-art {
    position: absolute;
    left: 50%;
    top: -211px;
    width: min(924px, 92vw);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
.prc-children-art img {
    position: absolute;
    display: block;
}
.prc-children-art .bg-children {
    position: relative;
    width: 100%;
    height: auto;
    transform: scale(0.92);
    opacity: 0;
    transition: 0.4s ease-in-out all;
}
.prc-children-art .bg-children-alien {
    width: 24%;
    top: 5%;
    left: 5%;
    transform: translateX(42%) translateY(-7%) rotate(9deg);
    opacity: 0;
    transition: 0.3s ease-out all;
}
.prc-children-art .bg-children-branch-left {
    width: 21%;
    top: 45%;
    left: -1%;
    transform: translateX(25%) translateY(5%);
    opacity: 0;
    transition: 0.4s ease-in-out all;
}
.prc-children-art .bg-children-branch-right {
    width: 14%;
    top: 43%;
    right: -3%;
    left: auto;
    transform: translateX(-25%) translateY(5%);
    opacity: 0;
    transition: 0.4s ease-in-out all;
}
.prc-children-art .bg-children-rocket {
    width: 22%;
    top: 60%;
    right: -4%;
    left: auto;
    transform: translateX(-30%) translateY(30%);
    opacity: 0;
    transition: 0.4s ease-in-out all;
}
body.page-pricing.children .prc-children-art .bg-children,
body.page-pricing.children .prc-children-art .bg-children-alien,
body.page-pricing.children .prc-children-art .bg-children-branch-left,
body.page-pricing.children .prc-children-art .bg-children-branch-right,
body.page-pricing.children .prc-children-art .bg-children-rocket {
    opacity: 1;
    transform: none;
}
body.page-pricing.children .prc-children-art .bg-children-alien { transition-delay: 0.3s; }
body.page-pricing.children .prc-children-art .bg-children-rocket { transition-delay: 0.3s; }
body.page-pricing.children .prc-children-art .bg-children-branch-left,
body.page-pricing.children .prc-children-art .bg-children-branch-right { transition-delay: 0.3s; }

section.prc-calc {
    padding: 0 0 20px;
    background: #f6f7f9;
}

section.prc-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 80px;
    background: #f6f7f9;
}
.prc-note {
    margin: 0 0 48px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #308587;
}
.prc-global {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 28px;
    width: min(1140px, 100%);
    margin: 0 0 48px;
}
.prc-global h2 {
    margin: 0;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1.2px;
    color: #111827;
    text-align: center;
}
.prc-global-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: #308587;
    color: #092d31;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.prc-global-btn:hover { background: #3a9a9c; }
.prc-quotes {
    display: flex;
    gap: 20px;
    width: min(1140px, 100%);
    margin: 0 0 40px;
}
.prc-quote {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E5F4F2;
    border-radius: 10px;
    padding: 22px;
}
.prc-quote p {
    margin: 0;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #092d31;
}
.prc-quote-bio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    position: relative;
}
.prc-quote-bio img,
.prc-quote-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.prc-quote-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--circle-color, #0097A7);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.prc-quote-user {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #232323;
}
.prc-quote-user span { display: inline; }
.prc-quote-stars { display: flex; }
.prc-quote-mark {
    margin-left: auto;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #092d31;
    opacity: 0.12;
}
.prc-started { margin-top: 8px; }

section.prc-member {
    padding: 20px 20px 90px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prc-member h2 {
    margin: 0 0 16px;
    max-width: 640px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.4px;
    color: #111827;
}
.prc-member > p {
    margin: 0 0 40px;
    max-width: 560px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #6B7280;
}
.prc-member-grid {
    display: flex;
    gap: 24px;
    width: min(1140px, 100%);
}
.prc-member-card {
    flex: 1;
    background: #fff;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}
.prc-member-card img { display: block; margin-bottom: 16px; }
.prc-member-card h3 {
    margin: 0 0 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #363636;
}
.prc-member-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #4B5563;
}
.prc-member-card li { margin: 0 0 8px; }
.page-pricing .prc-faq { background: #fff; padding: 70px 20px; }

section.prc-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 100px;
    background: #fff;
}
.prc-cta h2 {
    margin: 0 0 28px;
    text-align: center;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.4px;
    color: #374151;
    line-height: 1.15;
}
.prc-cta h2 b { font-weight: 600; }
.prc-cta-form {
    width: min(520px, 100%);
}
.prc-cta .contact-alert { width: min(520px, 100%); }

@media (max-width: 1024px) {
    .prc-hero h1 { font-size: 40px; letter-spacing: -1.6px; }
    .prc-quotes,
    .prc-member-grid { flex-direction: column; }
    .page-pricing .bundles-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .page-pricing .bundles-slider .swiper-slide {
        width: 78% !important;
        margin-right: 16px !important;
    }
}
@media (max-width: 767px) {
    body.page-pricing.children section.prc-hero {
        padding: 0 20px !important;
        margin-bottom: -10px;
    }
    .prc-children-art { width: 418px; opacity: 0.5; top: -80px; }
    .prc-hero h1 { font-size: 32px; }
    .prc-hero-copy p { font-size: 16px; }
    .prc-global h2,
    .prc-member h2,
    .prc-cta h2 { font-size: 28px; }
    .prc-member-card { padding: 22px 18px; }
}

/* Get Started premium popup */
.start-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
}
.start-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.start-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(9, 45, 49, 0.52);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.start-modal-card {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(88vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 22px;
    padding: 32px 32px 28px;
    box-shadow: 0 32px 80px rgba(9, 45, 49, 0.28);
    transform: translateY(36px) scale(0.92);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.start-modal.is-open .start-modal-card {
    transform: none;
    opacity: 1;
}
.start-modal.is-closing .start-modal-card {
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    transition-duration: 0.28s;
}
.start-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #eef5f5;
    color: #092d31;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.25s ease, transform 0.2s ease;
}
.start-modal-close:hover { background: #092d31; color: #fff; }
.start-modal-close:active { transform: scale(0.94); }
.start-modal-kicker {
    margin: 0 0 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #308587;
}
.start-modal-card h2 {
    margin: 0 0 8px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #092d31;
}
.start-modal-lead {
    margin: 0 0 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #4c617b;
}
.start-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.start-modal-form .hp { display: none; }
.start-modal-form input:not([type="checkbox"]):not([type="hidden"]),
.start-modal-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    background: #f6faf9;
    padding: 14px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #092d31;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.start-modal-form input:not([type="checkbox"]):not([type="hidden"]):focus,
.start-modal-form textarea:focus {
    border-color: #308587;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(48, 133, 135, 0.16);
}
.start-modal-form textarea { min-height: 110px; resize: vertical; }
.start-field { position: relative; width: 100%; }
.start-field-ico {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.start-field-ico svg { width: 16px; height: auto; display: block; }
.start-field:not(.start-field-phone) input { padding-left: 44px !important; }
.start-modal-form .iti { width: 100%; display: block; }
.start-modal-form .iti__flag-container { z-index: 3; }
.start-modal-form .iti__selected-flag {
    padding: 0 6px 0 12px;
    border-radius: 12px 0 0 12px;
    background: transparent;
}
.start-modal-form .iti__selected-flag:hover,
.start-modal-form .iti__selected-flag:focus { background: rgba(48, 133, 135, 0.08); }
.start-modal-form .iti__arrow { border-top-color: #308587; }
.start-modal-form .iti__country-name,
.start-modal-form .iti__dial-code { font-family: "DM Sans", sans-serif; }
.iti--container { z-index: 400 !important; }
.iti__country-list {
    border: 1px solid #dce2ea;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(9, 45, 49, 0.18);
    font-family: "DM Sans", sans-serif;
}
.start-modal-form .contact-accept {
    position: relative;
    width: 100%;
    padding: 4px 2px;
    margin: 2px 0 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.start-modal-form .contact-accept::after { display: none; }
.start-modal-form .contact-accept input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
    flex-shrink: 0;
    border: 1px solid #c5d4d4;
    border-radius: 4px;
    background: #fff;
    accent-color: #308587;
    box-shadow: none;
}
.start-modal-form .contact-accept label {
    font-size: 14px;
    line-height: 1.4;
    color: #4c617b;
}
.start-modal-form .contact-accept a { color: #308587; }
.start-modal-form .contact-submit-wrap { padding: 0; }
.start-modal-form .contact-submit {
    border-left: 0;
    border-radius: 12px;
}
.start-modal.is-open .start-modal-form > * {
    animation: startFieldIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.start-modal.is-open .start-modal-form > *:nth-child(1) { animation-delay: 0.08s; }
.start-modal.is-open .start-modal-form > *:nth-child(2) { animation-delay: 0.12s; }
.start-modal.is-open .start-modal-form > *:nth-child(3) { animation-delay: 0.16s; }
.start-modal.is-open .start-modal-form > *:nth-child(4) { animation-delay: 0.2s; }
.start-modal.is-open .start-modal-form > *:nth-child(5) { animation-delay: 0.24s; }
.start-modal.is-open .start-modal-form > *:nth-child(6) { animation-delay: 0.28s; }
.start-modal.is-open .start-modal-form > *:nth-child(7) { animation-delay: 0.32s; }
@keyframes startFieldIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
body.modal-lock { overflow: hidden; }

/* Privacy policy */
.page-privacy .hero-blobs,
.page-terms .hero-blobs { display: none; }
.prv-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 88px 24px 56px;
}
.prv-hero > * { position: relative; z-index: 1; }
.prv-kicker {
    display: inline-block;
    margin: 0 0 12px;
    padding: 0 0 4px;
    border-bottom: 1px solid #308587;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #308587;
}
.prv-hero h1 {
    margin: 0 0 14px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: #092d31;
}
.prv-hero > p {
    max-width: 640px;
    margin: 0 auto 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #4c617b;
}
.prv-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.prv-meta span,
.prv-meta a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dce8e8;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #092d31;
    box-shadow: 0 8px 24px rgba(9, 45, 49, 0.06);
}
.prv-meta a:hover { border-color: #308587; color: #308587; }
.prv-body { padding: 0 24px 90px; }
.prv-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}
.prv-toc {
    position: sticky;
    top: 92px;
    padding: 20px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e4eeee;
    box-shadow: 0 12px 36px rgba(9, 45, 49, 0.05);
}
.prv-toc p {
    margin: 0 0 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #308587;
}
.prv-toc nav { display: flex; flex-direction: column; gap: 2px; }
.prv-toc a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    color: #4c617b;
    transition: background 0.2s ease, color 0.2s ease;
}
.prv-toc a:hover,
.prv-toc a.is-active {
    background: #eaf4f4;
    color: #092d31;
}
.prv-main { display: flex; flex-direction: column; gap: 16px; }
.prv-card {
    scroll-margin-top: 96px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 22px;
    padding: 32px 36px 30px;
    box-shadow: 0 16px 40px rgba(9, 45, 49, 0.05);
}
.prv-num {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #308587;
}
.prv-card h2 {
    margin: 0 0 14px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #092d31;
}
.prv-card h3 {
    margin: 18px 0 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 650;
    color: #092d31;
}
.prv-card p,
.prv-card li {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #4c617b;
}
.prv-card p { margin: 0 0 12px; }
.prv-card p:last-child { margin-bottom: 0; }
.prv-card ul {
    margin: 0 0 14px;
    padding: 0 0 0 18px;
}
.prv-card li { margin: 0 0 8px; }
.prv-card a { color: #308587; text-decoration: underline; text-underline-offset: 2px; }
.prv-card a:hover { color: #092d31; }
.prv-rights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0 16px;
}
.prv-rights div {
    padding: 16px 16px 14px;
    border-radius: 14px;
    background: #f6faf9;
    border: 1px solid #e4eeee;
}
.prv-rights strong {
    display: block;
    margin-bottom: 4px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #092d31;
}
.prv-rights span {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #4c617b;
}

/* Testimonials */
.page-testimonials .hero-blobs { display: none; }
.tstm-stats {
    padding: 0 24px 12px;
}
.tstm-stats-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 8px 0 28px;
}
.tstm-stats-inner div {
    text-align: center;
    padding: 28px 18px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(9, 45, 49, 0.05);
}
.tstm-stats-inner strong {
    display: block;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #092d31;
}
.tstm-stats-inner span {
    display: block;
    margin-top: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #4c617b;
}
.tstm-body { padding: 10px 24px 40px; }
.tstm-shell { width: min(1180px, 100%); margin: 0 auto; }
.tstm-head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.tstm-head h2 {
    margin: 0 0 8px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    letter-spacing: -0.035em;
    color: #092d31;
}
.tstm-head p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #4c617b;
}
.tstm-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 56px;
}
.tstm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tstm-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 20px;
    padding: 24px 24px 22px;
    box-shadow: 0 14px 36px rgba(9, 45, 49, 0.05);
    --circle-color: #308587;
}
.tstm-card.is-featured {
    padding: 28px 26px 24px;
    background: linear-gradient(180deg, #fff 0%, #f6faf9 100%);
}
.tstm-stars { display: flex; gap: 1px; margin-bottom: 14px; }
.tstm-stars svg { display: block; width: 16px; height: 15px; }
.tstm-text {
    margin: 0 0 22px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.03em;
    color: #092d31;
}
.tstm-card.is-featured .tstm-text { font-size: 18px; }
.tstm-bio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.tstm-letter {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--circle-color);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}
.tstm-name {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 650;
    color: #092d31;
}
.tstm-role {
    margin: 2px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: #4c617b;
}
.tstm-cta {
    text-align: center;
    padding: 20px 24px 90px;
}
.tstm-cta h2 {
    margin: 0 0 8px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #092d31;
}
.tstm-cta p {
    max-width: 520px;
    margin: 0 auto 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #4c617b;
}

/* 404 */
.page-404 .hero-blobs { display: none; }
.nf-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 72px 24px 36px;
}
.nf-hero > * { position: relative; z-index: 1; }
.nf-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 18px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: clamp(88px, 16vw, 148px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: #092d31;
}
.nf-mark > span:first-child,
.nf-mark > span:last-child {
    animation: nfDigit 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.nf-mark > span:last-child { animation-delay: 0.12s; }
.nf-book {
    display: grid;
    place-items: center;
    width: 0.72em;
    height: 0.72em;
    border-radius: 22%;
    background: #eaf4f4;
    color: #308587;
    animation: nfBook 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.nf-book svg { width: 52%; height: 52%; display: block; }
@keyframes nfDigit {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes nfBook {
    from { opacity: 0; transform: scale(0.7) rotate(-12deg); }
    to { opacity: 1; transform: none; }
}
.nf-hero h1 {
    margin: 0 0 12px;
    font-family: "Sentient", "Source Serif 4", Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #092d31;
}
.nf-hero > p {
    max-width: 560px;
    margin: 0 auto 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #4c617b;
}
.nf-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.nf-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid #092d31;
    background: #fff;
    color: #092d31;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}
.nf-home:hover { background: #092d31; color: #fff; }
.nf-body { padding: 20px 24px 90px; }
.nf-shell { width: min(1100px, 100%); margin: 0 auto; }
.nf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.nf-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(9, 45, 49, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nf-card:hover {
    transform: translateY(-4px);
    border-color: #308587;
    box-shadow: 0 18px 40px rgba(9, 45, 49, 0.1);
}
.nf-card strong {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 650;
    color: #092d31;
}
.nf-card span {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #4c617b;
}



