:root {
    --bg: #fffafe;
    --paper: rgba(255, 255, 255, 0.78);
    --ink: #171221;
    --muted: #645d73;
    --line: rgba(91, 78, 119, 0.14);
    --accent: #f378bf;
    --accent-strong: #55cfe0;
    --lilac: #ccb8f2;
    --card: rgba(255, 255, 255, 0.7);
    --shadow: 0 28px 80px rgba(148, 122, 191, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 20%, rgba(243, 120, 191, 0.22), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(85, 207, 224, 0.2), transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(204, 184, 242, 0.18), transparent 26%),
        linear-gradient(180deg, #fffafd 0%, #fbf7ff 100%);
    font-family: "Manrope", sans-serif;
}

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

p {
    margin: 0;
    line-height: 1.7;
}

.site-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

.site-header,
.site-footer,
.hero,
.trust-bar,
.intro,
.services,
.use-cases,
.metrics,
.process,
.objections,
.contact-callout,
.content-hero,
.content-body {
    animation: rise 0.7s ease both;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.86);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 16px;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img,
.panel-list span {
    display: block;
}

.brand img {
    width: 164px;
    height: auto;
}

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

.site-nav a:hover,
.footer-meta a:hover {
    color: var(--accent-strong);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, #171221 0%, #4f3a7a 100%);
    color: white;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    margin-top: 22px;
}

.hero-copy,
.hero-panel,
.services,
.contact-callout,
.content-hero,
.content-body {
    border-radius: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
}

.hero-copy h1,
.section-heading h2,
.intro h2,
.contact-callout h2,
.content-hero h1 {
    margin: 0;
    font-family: "Newsreader", serif;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.8rem);
    max-width: 12ch;
}

.lead,
.section-text,
.service-card p,
.contact-callout p,
.rich-text {
    color: var(--muted);
    font-size: 1.05rem;
}

.lead {
    margin-top: 18px;
    max-width: 48ch;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-points span,
.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(204, 184, 242, 0.4);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.eyebrow,
.section-kicker,
.panel-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero-panel {
    padding: 26px;
    background:
        linear-gradient(145deg, rgba(243, 120, 191, 0.24), rgba(85, 207, 224, 0.22) 48%, rgba(204, 184, 242, 0.28)),
        rgba(255, 255, 255, 0.75);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.panel-title {
    font-family: "Newsreader", serif;
    font-size: 2rem;
    line-height: 1.02;
    margin-bottom: 12px;
}

.panel-text {
    color: var(--muted);
    font-size: 1rem;
}

.panel-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.panel-list span {
    padding: 11px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(204, 184, 242, 0.4);
    font-size: 0.95rem;
    font-weight: 700;
}

.section-grid,
.contact-callout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.intro {
    margin: 28px 0;
    padding: 24px 6px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 28px;
}

.intro h2,
.section-heading h2,
.contact-callout h2,
.content-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.services,
.contact-callout,
.content-hero,
.content-body {
    padding: 42px;
}

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

.section-sidecopy {
    max-width: 34ch;
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 230px;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 252, 0.92)),
        linear-gradient(135deg, rgba(243, 120, 191, 0.08), rgba(85, 207, 224, 0.08));
    border: 1px solid rgba(204, 184, 242, 0.34);
}

.service-card h3,
.metric strong {
    margin: 0 0 12px;
}

.service-card h3 {
    font-size: 1.35rem;
}

.use-cases,
.objections {
    margin-top: 28px;
    padding: 42px;
    border-radius: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.use-case-grid,
.objection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.use-case,
.objection-card,
.process-steps article {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(204, 184, 242, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 244, 255, 0.84));
}

.use-case-index {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.use-case h3,
.objection-card h3,
.process-steps strong {
    display: block;
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.metric {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 243, 255, 0.8));
}

.metric strong {
    display: block;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1;
}

.metric span,
.footer-meta {
    color: var(--muted);
}

.process {
    margin-top: 28px;
}

.process-steps {
    display: grid;
    gap: 14px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 255, 0.76));
}

.contact-details a {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-caption {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.contact-button {
    margin-top: 8px;
}

.content-hero {
    margin-top: 28px;
}

.content-body {
    margin-top: 18px;
}

.rich-text p + p {
    margin-top: 16px;
}

.site-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding: 8px 4px 2px;
    align-items: center;
}

.footer-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.92rem;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .site-header,
    .hero,
    .section-grid,
    .card-grid,
    .use-case-grid,
    .objection-grid,
    .metrics,
    .contact-callout,
    .site-footer {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .site-header {
        align-items: flex-start;
    }

    .site-nav,
    .footer-meta {
        flex-wrap: wrap;
    }

    .hero-copy,
    .services,
    .contact-callout,
    .content-hero,
    .content-body {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 20px, 1160px);
    }

    .site-header {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .site-nav {
        gap: 12px;
        font-size: 0.9rem;
    }

    .brand {
        font-size: 1.6rem;
    }
}
