/* Shared layout for the informational service and company pages. */
.content-page {
    color: #1d1d1f;
    background: #fff;
}
.content-page main {
    --content-accent: #7c3aed;
    --content-muted: #58627c;
}
.content-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}
.content-hero {
    padding: 170px 0 78px;
    background: radial-gradient(ellipse at top right, #eee1f6 0%, transparent 60%), #faf8fc;
    border-bottom: 1px solid #eee7f2;
}
.content-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.12);
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.content-hero h1 {
    max-width: 1000px;
    margin-bottom: 24px;
    font-size: clamp(36px, 5.3vw, 66px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
    overflow-wrap: break-word;
}
.content-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
}
.content-hero-content {
    min-width: 0;
}
.content-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-hero-phone {
    width: 100%;
    max-width: 440px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}
.content-hero-phone:hover {
    transform: translateY(-4px);
}
.content-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
.content-lead {
    max-width: 810px;
    color: var(--content-muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.75;
}
.content-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}
.content-page .content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #d60087 0%, #6f42c1 100%);
    box-shadow: 0 6px 18px rgba(214, 0, 135, 0.25);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.content-page .content-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(214, 0, 135, 0.35);
    color: #fff;
}
.content-page .content-button-secondary {
    color: #6f42c1;
    background: #fff;
    border: 1px solid #d9c5e3;
    box-shadow: none;
}
.content-page .content-button-secondary:hover {
    background: #faf7fd;
    border-color: #7c3aed;
    color: #5E2B97;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}
.content-page a:focus-visible,
.content-page button:focus-visible {
    outline: 3px solid #7c3aed;
    outline-offset: 5px;
}
.content-section {
    padding: 72px 0;
    scroll-margin-top: 110px;
}
.content-section-muted {
    background: #faf8fc;
}
.content-section-heading {
    max-width: 810px;
    margin-bottom: 32px;
}
.content-page main h2 {
    margin-bottom: 20px;
    font-size: clamp(27px, 3.1vw, 40px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.025em;
}
.content-page main h3 {
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
}
.content-section p,
.content-section li,
.content-cta p {
    color: var(--content-muted);
    font-size: 17px;
    line-height: 1.8;
}
.content-section p + p,
.content-prose p + ul,
.content-card p + ul {
    margin-top: 18px;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.content-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.content-card {
    min-width: 0;
    padding: 30px;
    border: 1px solid #e8e0ed;
    border-radius: 24px;
    background: #fff;
}
.content-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 15px;
    background: #f3e8ff;
    color: var(--content-accent);
    font-size: 23px;
}
.content-card ul,
.content-prose ul {
    padding-left: 22px;
}
.content-card ul li,
.content-prose ul li {
    list-style: disc;
    margin-top: 10px;
}
.content-card li::marker,
.content-prose li::marker {
    color: var(--content-accent);
}
.content-steps {
    counter-reset: content-step;
}
.content-steps > li {
    counter-increment: content-step;
}
.content-steps > li::before {
    content: counter(content-step, decimal-leading-zero);
    display: block;
    margin-bottom: 22px;
    color: #7c3aed;
    font-size: 28px;
    font-weight: 500;
}
.content-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 56px;
}
.content-split > * {
    min-width: 0;
}
.content-media {
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    background: #f5eff8;
}
.content-media img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: contain;
}
.content-media figcaption {
    margin-top: 16px;
    color: var(--content-muted);
    font-size: 14px;
    line-height: 1.6;
}
.content-prose {
    max-width: 810px;
}
.content-page .content-inline-link {
    color: #6f42c1;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.content-page .content-inline-link:hover {
    color: #d60087;
}
.content-quote {
    margin: 24px 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid #c58ddc;
}
.content-quote p {
    color: #111827;
    font-size: 19px;
}
.content-quote cite,
.content-quote footer {
    display: block;
    margin-top: 14px;
    color: var(--content-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}
.content-logo {
    display: block;
    width: 140px;
    height: 80px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left center;
}
.content-cta {
    padding: 68px 0;
    background: #f1e7f6;
    border-block: 1px solid #e7d9ed;
}
.content-cta p {
    max-width: 760px;
}
.content-cta .content-container > .content-button,
.content-cta .content-actions {
    margin-top: 26px;
}
.content-prose > .content-inline-link {
    display: inline-block;
    margin-top: 20px;
}
@media (max-width: 991px) {
    .content-hero { padding-top: 142px; }
    .content-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .content-hero-phone { max-width: 360px; margin: 0 auto; }
    .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .content-split { gap: 30px; }
}
@media (max-width: 680px) {
    .content-container { width: calc(100% - 36px); }
    .content-hero { padding: 128px 0 48px; }
    .content-hero h1 { font-size: clamp(32px, 8.2vw, 46px); }
    .content-hero-phone { max-width: 290px; }
    .content-section, .content-cta { padding: 48px 0; }
    .content-grid, .content-split { grid-template-columns: 1fr; }
    .content-card { padding: 24px; }
    .content-actions { align-items: stretch; flex-direction: column; }
    .content-media { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .content-page *, .content-page *::before, .content-page *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
