@import url("https://fonts.bunny.net/css?family=inter:400,500,600,700,800");

* { box-sizing: border-box; }
html, body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--primary); }
button, input, select, textarea { font: inherit; }

body.front-boneify {
    --primary: #0E7A88;
    --accent: #F0C31A;
    --ink: #0a2a33;
    --muted: #5c727a;
    --bg: #f4f8f9;
    --paper: #ffffff;
    --card: #ffffff;
    --line: #d7e4e7;
    --white: #fff;
    --chrome: #062832;
    --chrome-ink: #f4fbfc;
    --chrome-muted: #9bb8be;
    --tint: #e5f4f6;
    --accent-tint: #fff6d6;
    --glow: color-mix(in srgb, var(--accent) 35%, transparent);
    --panel: #0a3a44;
    --navy: #062832;
    font-family: Inter, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}

.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.muted { color: var(--muted); }
.flash {
    margin: 16px auto;
    padding: 12px 16px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #166534;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: color-mix(in srgb, var(--navy) 92%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid color-mix(in srgb, #fff 10%, transparent);
}
.header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 76px;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.bone-mark,
.bone-mark svg {
    width: 36px;
    height: 36px;
    display: block;
    flex: none;
}
.brand-logo { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-lead { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.brand-tail {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.32em;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}
.nav a {
    text-decoration: none;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 600;
}
.nav a:hover,
.nav a.is-active { color: var(--accent); }
.nav-item.has-sub { position: relative; }
.nav-item.has-sub > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-item.has-sub > a:after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .7;
}
.nav-sub {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #041c24;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 8px;
    z-index: 50;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    flex-direction: column;
    gap: 2px;
}
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub { display: flex; }
.nav-sub a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
}
.nav-sub a:hover,
.nav-sub a.is-active { background: rgba(255,255,255,.06); }

.int-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.int-cat-card {
    display: grid;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .04);
}
.int-cat-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--primary) 32%, white);
    box-shadow: 0 22px 44px rgba(6, 40, 50, .1);
}
.int-cat-card-media {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #062832;
    aspect-ratio: 16 / 9;
}
.int-cat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.int-cat-card h2 { margin: 0; font-size: 22px; }
.int-cat-card-meta {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.int-other-title { margin: 36px 0 16px; }
.int-detail-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}
.crumb span { margin: 0 8px; opacity: .45; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-login {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.28);
    padding: 8px 14px;
    border-radius: 999px;
}
.header-login:hover { color: #fff; border-color: #fff; }
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    cursor: pointer;
}
.nav-burger span,
.nav-burger span:before,
.nav-burger span:after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
}
.nav-burger span:before,
.nav-burger span:after { content: ""; position: absolute; }
.nav-burger span:before { top: -6px; }
.nav-burger span:after { top: 6px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: none;
}
.btn-accent {
    background: var(--accent);
    color: #1a2a12;
    box-shadow: 0 10px 24px var(--glow);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: none;
}
.header-cta { white-space: nowrap; padding: 10px 16px; }

.loy-hero {
    padding: 48px 0 64px;
    background:
        radial-gradient(circle at 80% 20%, rgba(14,122,136,.45), transparent 36%),
        linear-gradient(160deg, #041c24 0%, #0a3d48 52%, #062832 100%);
    overflow: hidden;
    color: #fff;
}
.loy-kicker {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}
.loy-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}
.loy-hero h1 {
    margin: 0;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
}
.loy-hero h1 span { display: block; }
.loy-hero h1 .is-accent { color: var(--accent); }
.loy-lead {
    max-width: 48ch;
    color: rgba(255,255,255,.78);
    font-size: 16px;
}
.loy-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 16px; }
.loy-pills { display: flex; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 600; }
.loy-pills span:before { content: "✓ "; color: var(--accent); }
.loy-hero-visual {
    position: relative;
    min-height: 420px;
}
.laptop-frame {
    background: #dbe7ea;
    border-radius: 18px 18px 8px 8px;
    padding: 10px 10px 0;
    box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.laptop-frame .app-chrome { border-radius: 12px 12px 0 0; border: 0; box-shadow: none; width: 100%; }
.laptop-frame:after {
    content: "";
    display: block;
    height: 14px;
    margin: 0 -28px;
    background: #c5d4d8;
    border-radius: 0 0 10px 10px;
}
.app-chrome {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(6, 40, 50, .18);
    overflow: hidden;
}
.app-chrome--desktop { width: min(100%, 520px); }
.app-chrome--wide { min-height: 320px; }
.app-chrome--compact { min-height: 240px; }
.app-chrome-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f3fafa;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.app-dots { display: flex; gap: 5px; }
.app-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; }
.app-dots i:first-child { background: #fca5a5; }
.app-chrome-body { display: grid; grid-template-columns: 56px 1fr; min-height: 260px; }
.app-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px;
    background: #e7f4f6;
}
.app-side span {
    height: 10px;
    border-radius: 99px;
    background: #b7d7dc;
}
.app-side .is-on { background: var(--primary); }
.app-main { padding: 18px; }
.app-hello strong { display: block; font-size: 16px; }
.app-hello span { color: var(--muted); font-size: 12px; }
.app-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0;
}
.app-kpis div {
    padding: 10px;
    border-radius: 14px;
    background: var(--tint);
}
.app-kpis b { display: block; font-size: 15px; }
.app-kpis small { color: var(--muted); }
.app-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 92px;
    padding-top: 8px;
}
.app-chart i {
    flex: 1;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(#7ec8d0, var(--primary));
}

.loyalty-card {
    position: absolute;
    left: 8%;
    bottom: 18px;
    width: 210px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0e7a88, #06343c);
    color: #fff;
    box-shadow: 0 16px 32px rgba(0,0,0,.28);
    z-index: 2;
}
.loyalty-card-brand { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.loyalty-card strong { display: block; margin: 18px 0 10px; font-size: 13px; }
.loyalty-card-no { font-size: 11px; letter-spacing: .08em; opacity: .85; }

.phone-chrome {
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 168px;
    background: #041c24;
    color: #fff;
    border-radius: 28px;
    padding: 10px 8px 14px;
    box-shadow: 0 20px 40px rgba(4, 28, 36, .4);
    z-index: 3;
}
.phone-notch {
    width: 72px;
    height: 8px;
    margin: 4px auto 10px;
    border-radius: 99px;
    background: #1b4450;
}
.phone-screen {
    background: linear-gradient(180deg, #0e7a88, #0a4a54);
    border-radius: 20px;
    padding: 16px;
}
.phone-kicker { margin: 0; font-size: 11px; opacity: .8; }
.phone-points { display: block; font-size: 32px; letter-spacing: -0.04em; }
.phone-tier { font-size: 12px; color: var(--accent); }
.phone-bar {
    height: 6px;
    background: rgba(255,255,255,.2);
    border-radius: 99px;
    margin: 10px 0 12px;
}
.phone-bar i {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}
.phone-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 6px 0;
}
.phone-cta {
    margin-top: 10px;
    text-align: center;
    background: var(--accent);
    color: #1a2a12;
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
    font-weight: 800;
}

.section { padding: 72px 0; }
.section h2, .page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.section h2 em { font-style: normal; color: var(--primary); }
.section-kicker {
    margin: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.section-lead { color: var(--muted); max-width: 62ch; }
.section-head { text-align: center; max-width: 18em; margin: 0 auto 36px; }
.section-head h2 { margin-bottom: 0; }
.section-head .muted { max-width: 42ch; margin: 12px auto 0; }
.view-all { text-align: center; margin: 28px 0 0; }
.view-all a { font-weight: 700; text-decoration: none; }

.journey-grid,
.feat-grid,
.quote-grid,
.price-grid,
.client-grid,
.card-grid,
.svc-grid {
    display: grid;
    gap: 18px;
}
.journey-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}
.journey-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 17px;
    left: calc(50% + 22px);
    width: calc(100% - 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    pointer-events: none;
}
.feat-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid, .svc-grid, .svc-grid-5 { grid-template-columns: repeat(4, 1fr); }
.quote-grid, .price-grid, .client-grid { grid-template-columns: repeat(3, 1fr); }

.journey-card,
.feat-card,
.quote-card,
.price-card,
.svc,
.card,
.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .04);
}
.journey-card { text-align: center; padding: 22px 22px 24px; width: 100%; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.journey-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--primary) 32%, white);
    box-shadow: 0 22px 44px rgba(6, 40, 50, .1);
}
.journey-num {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #1a2a12;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--bg), 0 8px 18px var(--glow);
    flex: none;
}
.journey-visual {
    width: 88px;
    height: 88px;
    margin: 0 auto 10px;
}
.journey-visual svg { width: 100%; height: 100%; display: block; }
.journey-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.journey-tags span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--tint);
    color: var(--primary);
}
.loy-journey .section-head { max-width: 46rem; }
.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--tint);
    color: var(--primary);
    margin: 0 auto 12px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, white);
}
.feat-card { text-align: center; }
.feat-card .svc-icon { margin: 0 auto 14px; }
.more-item .svc-icon { margin: 0 0 12px; }
.feat-card h3, .journey-card h3, .svc h3, .card h3 { margin: 0 0 8px; font-size: 18px; }
.ico { width: 22px; height: 22px; }

.loy-features { background: #fff; }
.loy-features .section-head,
.loy-industries .section-head { max-width: none; }
.loy-features .section-head h2 { max-width: 16em; margin-inline: auto; }
.loy-industries .section-head h2 { max-width: 12em; margin-inline: auto; }
.loy-features .feat-grid,
.loy-industries .industry-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.loy-features .feat-card,
.loy-industries .feat-card {
    padding: 22px 14px 20px;
    border-radius: 20px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.loy-features .feat-card h3,
.loy-industries .feat-card h3 { font-size: 15px; letter-spacing: -0.02em; }
.loy-features .feat-card .muted,
.loy-industries .feat-card .muted { font-size: 13px; line-height: 1.45; }
.loy-features .svc-icon,
.loy-industries .svc-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 1.5px solid color-mix(in srgb, var(--primary) 28%, white);
    box-shadow: 0 8px 18px rgba(14, 122, 136, .08);
}
.loy-features .feat-card:hover,
.loy-industries .feat-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--primary) 40%, white);
    box-shadow: 0 18px 36px rgba(6, 40, 50, .1);
}
.loy-features .feat-card:hover .svc-icon,
.loy-industries .feat-card:hover .svc-icon {
    background: var(--tint);
    border-color: var(--primary);
    color: var(--primary);
}
.loy-features .view-all .btn,
.loy-industries .view-all .btn { min-width: 200px; }

.loy-journey,
.loy-industries,
.loy-dash,
.loy-integrations { background: var(--bg); }
.loy-dash-grid,
.loy-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.check-list { padding: 0; list-style: none; }
.check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
}
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}
.loy-impact { background: #fff; padding-top: 24px; }
.loy-impact-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #062832, #0a4a54);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
}
.loy-impact-panel h2, .loy-impact-panel .section-kicker { color: #fff; }
.loy-impact-panel .section-kicker { color: var(--accent); }
.loy-impact-panel .check-list li { color: rgba(255,255,255,.88); }
.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.impact-stat {
    background: rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    text-align: center;
}
.impact-stat strong { display: block; font-size: 28px; color: var(--accent); }
.impact-stat span { color: rgba(255,255,255,.72); font-size: 13px; }
.more-list { display: grid; gap: 16px; }
.more-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.more-item h3 { margin: 0 0 4px; font-size: 16px; }
.spotlight-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(6, 40, 50, .08);
}
.quote { font-size: 18px; line-height: 1.45; }
.quote-who { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tint);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 800;
}
.logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
main { min-height: 52vh; }
.logo-pill {
    min-width: 0;
    height: 88px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 16px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-pill img { max-height: 36px; max-width: 140px; width: auto; object-fit: contain; }
.logo-pill:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--primary) 40%, white);
    box-shadow: 0 18px 36px rgba(6, 40, 50, .1);
}
.loy-integrations .section-head { max-width: none; }
.loy-integrations .section-head h2 { max-width: 22em; margin-inline: auto; }
.loy-integrations .view-all .btn { min-width: 200px; }

.trust-bar {
    background: #fff;
    padding: 0 0 8px;
    margin-top: -28px;
    position: relative;
    z-index: 4;
}
.trust-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 800;
    margin: 0 0 12px;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px 28px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 28px;
    box-shadow: 0 12px 30px rgba(6, 40, 50, .08);
}
.trust-row strong { color: var(--ink); font-weight: 800; }
.trust-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    min-width: 88px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
}
.trust-brand img {
    display: block;
    max-height: 40px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}
.integration-card { text-align: left; }
.integration-logo {
    display: block;
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0 0 14px;
}
.industry-grid, .stories-grid { grid-template-columns: repeat(3, 1fr); }
.industry-grid { display: grid; gap: 18px; }
.loy-stories .section-head { max-width: none; }
.loy-stories .section-head h2 { max-width: 18em; margin-inline: auto; }
.loy-stories .stories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.loy-stories .story-card {
    padding: 26px 24px;
    border-radius: 20px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.loy-stories .story-card h3 { font-size: 18px; letter-spacing: -0.03em; line-height: 1.25; }
.loy-stories .story-card .section-kicker { margin-bottom: 8px; }
.loy-stories .story-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--primary) 40%, white);
    box-shadow: 0 18px 36px rgba(6, 40, 50, .1);
}
.loy-stories .view-all .btn { min-width: 200px; }
.loy-blog { background: var(--bg); }
.loy-blog .section-head { max-width: none; }
.loy-blog .section-head h2 { max-width: 16em; margin-inline: auto; }
.loy-blog .section-head h2 em { color: var(--accent); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.blog-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    padding: 0;
    border-radius: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--primary) 36%, white);
    box-shadow: 0 22px 44px rgba(6, 40, 50, .12);
}
.blog-card-media {
    height: 188px;
    background: #0E7A88;
    overflow: hidden;
}
.blog-card-media img,
.blog-card-media svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.blog-card-body { padding: 20px 22px 22px; }
.blog-card-kicker {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.blog-card h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.loy-blog .view-all .btn { min-width: 200px; }
.avatar-lg { width: 56px; height: 56px; font-size: 22px; margin-bottom: 12px; }
.page-aside { display: grid; gap: 16px; align-content: start; }
.page-aside-stats { display: grid; gap: 12px; }
.page-aside-stats strong { display: block; font-size: 22px; color: var(--primary); }
.prose h2 { margin: 1.6em 0 .4em; font-size: 26px; letter-spacing: -0.03em; }
.prose h3 { margin: 1.2em 0 .35em; }
.prose .saas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0;
}
.prose .saas-tile {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    background: #fff;
}
.prose details {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    margin: 0 0 10px;
    background: #fff;
}
.prose summary { cursor: pointer; font-weight: 700; }
.prose details p { margin: 8px 0 0; }
.prose .step-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.prose .step-list li {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px 16px 56px;
    position: relative;
    background: #fff;
}
.prose .step-list li:before {
    content: attr(data-step);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tint);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.cta-band { padding: 8px 0 72px; }
.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px 32px;
    padding: 36px 40px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 20%, rgba(240,195,26,.16), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(14,122,136,.45), transparent 32%),
        linear-gradient(135deg, #041c24 0%, #0a4a54 56%, #062832 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 50px rgba(6, 40, 50, .22);
}
.cta-inner:before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent 72%);
}
.cta-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.cta-inner h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 34px);
    letter-spacing: -0.03em;
    line-height: 1.18;
    max-width: 16ch;
}
.cta-inner h2 em { color: var(--accent); font-style: normal; }
.cta-inner .cta-copy > p:not(.cta-kicker) {
    margin: 0;
    color: rgba(255,255,255,.74);
    max-width: 46ch;
}
.cta-copy { min-width: 0; }
.cta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.cta-meta li {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 220px;
}
.cta-inner .btn { white-space: nowrap; border-radius: 999px; }
.cta-inner .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.04);
}
.cta-inner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.cta-art {
    width: 96px;
    height: 96px;
    flex: none;
    filter: drop-shadow(0 0 18px rgba(240,195,26,.22));
}
.cta-cart { width: 96px; height: 96px; display: block; }

.site-footer {
    background: #041c24;
    color: #c5d8dc;
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr .7fr .7fr;
    gap: 28px;
    padding-bottom: 36px;
}
.site-footer .brand, .site-footer .brand-lead { color: #fff; }
.site-footer a { color: #c5d8dc; text-decoration: none; display: block; margin: 0 0 8px; }
.site-footer a:hover { color: var(--accent); }
.site-footer h3 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.socials { display: flex; gap: 8px; margin-top: 12px; }
.socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0a3a44;
    margin: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
    color: #8aa4aa;
    font-size: 13px;
}

.page-hero { padding: 48px 0 8px; background: linear-gradient(#fff, var(--bg)); }
.page-layout { display: grid; gap: 28px; }
.page-layout--split { grid-template-columns: 1.3fr .7fr; }
.page-cover { width: 100%; border-radius: 20px; margin-bottom: 20px; }
.prose :where(p, ul, ol) { color: var(--muted); }
.prose h3 { margin: 1.4em 0 .4em; }
.page-aside-card,
.contact-form-card,
.contact-item,
.prod-panel,
.demo-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
}
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-list { display: grid; gap: 10px; }
.contact-item { display: flex; gap: 12px; text-decoration: none; color: inherit; align-items: center; }
.contact-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--tint);
    color: var(--primary);
    flex: none;
}
.contact-item strong, .contact-item span { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 6px; margin: 0 0 14px; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}
.form-error { color: #b91c1c; font-size: 13px; }
.form-honeypot { position: absolute; left: -9999px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.price-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; gap: 8px; }
.price-card.is-featured {
    border-color: var(--primary);
    box-shadow: 0 18px 40px var(--glow);
    transform: translateY(-6px);
}
.price-sum { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; margin: 0; }
.price-card .btn { margin-top: auto; }
.price-body ul { padding-left: 18px; }
.crumb { font-size: 13px; }
.crumb a { text-decoration: none; font-weight: 700; }
.card-cover { width: 100%; height: 150px; object-fit: cover; border-radius: 14px; margin-bottom: 14px; }
.detail-panel, .page-aside-card { margin-bottom: 16px; }
.detail-creds { display: grid; gap: 8px; }
.detail-creds dt { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.detail-creds dd { margin: 0 0 8px; font-weight: 700; }
.prod-hero-grid, .prod-split, .demo-card { display: grid; gap: 20px; }
.prod-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-tabs a {
    text-decoration: none;
    color: var(--muted);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 600;
}
.product-card-actions { display: flex; gap: 8px; margin-top: 12px; }
.product-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 960px) {
    .loy-hero-grid,
    .loy-dash-grid,
    .loy-impact-grid,
    .loy-more-grid,
    .page-layout--split,
    .contact-layout,
    .footer-grid { grid-template-columns: 1fr; }
    .feat-grid, .quote-grid, .price-grid, .client-grid, .card-grid, .industry-grid, .stories-grid, .prose .saas-grid, .int-cat-grid { grid-template-columns: 1fr 1fr; }
    .loy-features .feat-grid,
    .loy-industries .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .logo-cloud { grid-template-columns: 1fr 1fr; }
    .loy-stories .stories-grid,
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .phone-chrome { position: relative; right: auto; bottom: auto; margin-top: 16px; }
}
@media (max-width: 720px) {
    .header-bar { grid-template-columns: 1fr auto auto; }
    .nav-burger { display: grid; }
    .nav, .header-login { display: none; }
    .nav-toggle:checked ~ .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: #062832;
        padding: 16px 20px 20px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        z-index: 40;
        align-items: flex-start;
        gap: 16px;
    }
    .nav-item.has-sub { width: 100%; }
    .nav-item.has-sub .nav-sub {
        display: flex;
        position: static;
        transform: none;
        min-width: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 8px 0 0 12px;
    }
    .nav-toggle:checked ~ .header-actions .header-login { display: inline-flex; }
    .journey-grid, .feat-grid, .quote-grid, .price-grid, .client-grid, .card-grid, .svc-grid, .svc-grid-5, .form-grid, .impact-stats, .industry-grid, .stories-grid, .prose .saas-grid, .loy-features .feat-grid, .loy-industries .industry-grid, .logo-cloud, .loy-stories .stories-grid, .blog-grid, .int-cat-grid { grid-template-columns: 1fr; }
    .journey-step:not(:last-child):after { display: none; }
    .loy-email { flex-direction: column; border-radius: 22px; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; justify-items: center; }
    .cta-inner h2 { max-width: none; }
    .cta-meta { justify-content: center; }
    .cta-actions { width: 100%; max-width: 280px; }
    .price-card.is-featured { transform: none; }
}
