:root {
    --ink: #17212b;
    --muted: #5d6875;
    --line: #dfe5ea;
    --paper: #ffffff;
    --mist: #f5f8f6;
    --teal: #147c7d;
    --green: #2f8f5b;
    --coral: #c95f4b;
    --gold: #c79a36;
    --deep: #10282a;
    --shadow: 0 24px 70px rgba(25, 39, 49, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--mist);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(223, 229, 234, 0.8);
    backdrop-filter: blur(16px);
}

.brand-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
}

.site-header .brand-logo {
    width: 178px;
}

.holding-hero .brand-logo,
.thank-you .brand-logo {
    width: 210px;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--green));
    font-size: 0.82rem;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a {
    white-space: nowrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 12px 28px rgba(20, 124, 125, 0.22);
}

.button-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.7);
}

.button-muted {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button-small {
    min-height: 38px;
    padding: 0 14px;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 72px);
    color: #fff;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(16, 40, 42, 0.92), rgba(16, 40, 42, 0.72) 46%, rgba(16, 40, 42, 0.28)),
        linear-gradient(0deg, rgba(16, 40, 42, 0.74), transparent 45%);
}

.hero-copy {
    position: relative;
    max-width: 780px;
}

.status-pill {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 20px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #153334;
    background: #f5d38b;
    font-weight: 800;
    font-size: 0.82rem;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f6c76d;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 7vw, 5.9rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: 1.25rem;
}

.hero-lead,
.lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.holding-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-strip div {
    min-height: 118px;
    padding: 24px clamp(18px, 3vw, 34px);
    background: #fff;
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    font-size: 1.05rem;
}

.proof-strip span {
    margin-top: 8px;
    color: var(--muted);
}

.image-story {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 16px;
}

.image-story-card {
    display: grid;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.image-story-card.large {
    grid-row: span 2;
}

.image-story-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.image-story-card.large img {
    height: 430px;
}

.image-story-card div {
    padding: 24px;
}

.image-story-card h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.image-story-card p:last-child {
    margin-bottom: 0;
}

.content-band {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 32px);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

.content-band p {
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-grid article,
.buyer-grid article,
.faq-list details {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 28px rgba(23, 33, 43, 0.05);
}

.feature-grid p,
.buyer-grid p {
    margin-bottom: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.buyer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.buyer-grid span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--gold);
    font-weight: 900;
}

.split-highlight {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    gap: 42px;
    max-width: none;
    background: var(--deep);
    color: #fff;
}

.split-highlight > * {
    max-width: 620px;
}

.split-highlight .eyebrow {
    color: #f6c76d;
}

.step-list {
    margin: 0;
    padding-left: 22px;
}

.step-list li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.step-list strong {
    color: #fff;
}

.deck-callout img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.deck-hero,
.deck-slide-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    gap: clamp(26px, 5vw, 68px);
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 56px);
}

.deck-hero h1,
.deck-slide-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.deck-hero > img,
.deck-slide-hero figure {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 221, 0.9);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.deck-hero > img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.deck-slide-hero figure {
    margin: 0;
}

.deck-slide-hero figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.deck-slide-hero figcaption {
    padding: 14px 16px;
    color: var(--muted);
    font-weight: 800;
    background: #fff;
}

.deck-subtitle {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--teal);
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    font-weight: 900;
}

.deck-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px;
}

.deck-topic-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.deck-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 124, 125, 0.42);
    box-shadow: 0 18px 44px rgba(23, 33, 43, 0.12);
}

.deck-topic-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eef4f1;
}

.deck-topic-card span,
.deck-topic-card strong,
.deck-topic-card p,
.deck-topic-card em {
    margin-right: 18px;
    margin-left: 18px;
}

.deck-topic-card span {
    margin-top: 18px;
    color: var(--coral);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.deck-topic-card strong {
    margin-top: 8px;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.18;
}

.deck-topic-card p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.96rem;
}

.deck-topic-card em {
    margin-top: auto;
    margin-bottom: 18px;
    color: var(--teal);
    font-style: normal;
    font-weight: 900;
}

.deck-copy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.deck-copy-layout article,
.deck-copy-layout aside {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.deck-copy-layout article p {
    color: var(--ink);
    font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.deck-copy-layout article p:last-child,
.deck-point-list li:last-child {
    margin-bottom: 0;
}

.deck-point-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.deck-point-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 24px;
    color: var(--muted);
    font-weight: 800;
}

.deck-point-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gold);
}

.deck-nav-band {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 0;
}

.faq-band {
    max-width: 960px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

summary {
    cursor: pointer;
    font-weight: 900;
}

.demo-band {
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 28px;
    align-items: start;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.lead-form.compact {
    grid-template-columns: 1fr;
    box-shadow: none;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd5dd;
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

textarea {
    resize: vertical;
}

.full-span {
    grid-column: 1 / -1;
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border: 1px solid #e6a59a;
    border-radius: 8px;
    color: #8f271b;
    background: #fff1ee;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
}

.holding-page {
    min-height: 100vh;
    background:
        linear-gradient(120deg, rgba(20, 124, 125, 0.12), transparent 42%),
        linear-gradient(300deg, rgba(201, 95, 75, 0.11), transparent 42%),
        var(--mist);
}

.holding-shell {
    display: grid;
    gap: 22px;
    max-width: 1050px;
    min-height: 100vh;
    align-content: center;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 72px) clamp(18px, 4vw, 32px);
}

.holding-hero,
.inquiry-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.holding-hero {
    padding: clamp(34px, 6vw, 72px);
}

.holding-hero h1 {
    max-width: 720px;
    margin-top: 16px;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.holding-hero .lead {
    color: var(--muted);
}

.inquiry-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
    padding: clamp(22px, 4vw, 34px);
}

.thank-you {
    max-width: 820px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: end;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 32px) clamp(42px, 6vw, 74px);
}

.compact-page-hero {
    grid-template-columns: 1fr;
}

.page-hero-banner {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-hero h1,
.ppc-hero h1 {
    font-size: clamp(2.4rem, 6vw, 5.1rem);
}

.lead-dark {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.intent-card,
.landing-form-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.intent-card span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.intent-card p {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 1.08rem;
}

.image-intent-card {
    overflow: hidden;
    padding: 0;
}

.image-intent-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.image-intent-card span,
.image-intent-card p {
    margin-right: 24px;
    margin-left: 24px;
}

.image-intent-card span {
    margin-top: 22px;
}

.image-intent-card p {
    margin-bottom: 24px;
}

.keyword-shell {
    padding-top: 24px;
}

.keyword-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.keyword-grid article,
.internal-link-grid a {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 33, 43, 0.05);
}

.keyword-grid h2 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.internal-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.large-link-grid {
    grid-template-columns: repeat(4, 1fr);
}

.internal-link-grid strong,
.internal-link-grid span {
    display: block;
}

.internal-link-grid span {
    margin-top: 8px;
    color: var(--muted);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px;
}

.focused-solution-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.solution-card {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(203, 213, 221, 0.95);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 248, 0.96)),
        #fff;
    box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 124, 125, 0.42);
    box-shadow: 0 18px 44px rgba(23, 33, 43, 0.12);
}

.solution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.solution-number {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--deep);
    font-size: 0.78rem;
    font-weight: 900;
}

.solution-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #305355;
    background: rgba(20, 124, 125, 0.1);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
}

.solution-card strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.16;
}

.solution-thumb {
    width: 100%;
    height: 104px;
    object-fit: cover;
    border: 1px solid rgba(223, 229, 234, 0.88);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 33, 43, 0.08);
}

.solution-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.solution-keyword {
    display: block;
    margin-top: auto;
    padding-top: 8px;
    color: #6a7480;
    font-size: 0.88rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--teal);
    font-weight: 900;
}

.solution-link::after {
    content: "->";
}

.compact-solution-card {
    min-height: 230px;
}

.ppc-page {
    background: #fff;
}

.ppc-header {
    position: static;
}

.ppc-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.ppc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: clamp(24px, 5vw, 68px);
    align-items: center;
    min-height: calc(100vh - 75px);
    padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 72px);
    background:
        linear-gradient(120deg, rgba(20, 124, 125, 0.1), transparent 44%),
        linear-gradient(310deg, rgba(201, 95, 75, 0.08), transparent 44%),
        var(--mist);
}

.ppc-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.ppc-bullets span {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--deep);
    background: #fff;
    font-weight: 800;
}

.ppc-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.ppc-image-row img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(23, 33, 43, 0.12);
}

.ppc-explore-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.ppc-explore-band h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.ppc-explore-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.landing-form-card .lead-form {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    background: #f3f7f7;
}

@media (max-width: 900px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .ppc-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .proof-strip,
    .buyer-grid,
    .image-story,
    .two-column,
    .split-highlight,
    .demo-band,
    .inquiry-panel,
    .page-hero,
    .deck-hero,
    .deck-slide-hero,
    .deck-copy-layout,
    .keyword-grid,
    .internal-link-grid,
    .large-link-grid,
    .ppc-explore-band,
    .ppc-hero {
        grid-template-columns: 1fr;
    }

    .ppc-explore-actions {
        justify-content: flex-start;
    }

    .feature-grid,
    .lead-form,
    .ppc-image-row {
        grid-template-columns: 1fr;
    }

    .image-story-card.large {
        grid-row: auto;
    }

    .image-story-card.large img {
        height: 300px;
    }

    .full-span {
        grid-column: auto;
    }

    .hero {
        min-height: 72vh;
    }
}

@media (max-width: 560px) {
    .site-nav {
        flex-wrap: wrap;
        gap: 10px 16px;
        overflow-x: visible;
    }

    .ppc-header-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .site-nav .button {
        width: auto;
    }

    .site-header .brand-logo {
        width: 168px;
    }

    .hero {
        min-height: 86vh;
        padding-top: 48px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(16, 40, 42, 0.94), rgba(16, 40, 42, 0.64));
    }

    .button {
        width: 100%;
    }

    .deck-nav-band {
        flex-direction: column;
    }
}
