:root {
    --bg-main: #f4f7fb;
    --paper: rgba(255, 255, 255, 0.98);
    --ink: #1f2937;
    --muted: #667085;
    --line: rgba(36, 52, 77, 0.12);
    --accent: #bf2f1f;
    --accent-strong: #8f1c14;
    --tech-accent: #4db6c8;
    --tech-accent-soft: rgba(77, 182, 200, 0.14);
    --surface-dark: #182235;
    --surface-dark-2: #24344d;
    --shadow-soft: 0 18px 42px rgba(24, 34, 53, 0.1);
    --shadow-card: 0 14px 34px rgba(24, 34, 53, 0.08);
    --radius-xl: 14px;
    --radius-lg: 12px;
    --radius-md: 10px;
    --content-width: 1180px;
    --font-display: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-body: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 22%),
        radial-gradient(circle at right top, rgba(77, 182, 200, 0.12), transparent 20%),
        radial-gradient(circle at 68% 18%, rgba(191, 47, 31, 0.06), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, var(--bg-main) 44%, #eef3f9 100%);
}

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

.site-shell {
    width: min(100%, calc(var(--content-width) + 48px));
    margin: 0 auto;
    padding: 20px 24px 48px;
}

.site-shell-festive::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 14%, rgba(191, 47, 31, 0.06), transparent 18%),
        radial-gradient(circle at 86% 8%, rgba(224, 163, 59, 0.08), transparent 16%),
        radial-gradient(circle at 92% 72%, rgba(191, 47, 31, 0.05), transparent 14%);
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(36, 52, 77, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(24, 34, 53, 0.08);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 10px 20px rgba(143, 28, 20, 0.16);
    font-size: 24px;
    font-weight: 800;
}

.site-brand-copy strong,
.site-brand-copy em {
    display: block;
}

.site-brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.04em;
}

.site-brand-copy em {
    margin-top: 3px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 26px;
}

.site-nav a {
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-nav a.is-active {
    color: var(--accent-strong);
}

.site-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: #fff;
}

.site-nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.site-nav-toggle-label {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid rgba(191, 47, 31, 0.12);
    background: #fff;
    cursor: pointer;
}

.site-nav-toggle-label span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-strong);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.flash {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
}

.flash-success {
    border-color: rgba(39, 129, 89, 0.18);
    background: rgba(39, 129, 89, 0.08);
}

.flash-error {
    border-color: rgba(191, 47, 31, 0.2);
    background: rgba(191, 47, 31, 0.08);
}

.hero-section {
    display: block;
    padding: 20px 0 48px;
}

.page-hero-section {
    padding: 20px 0 20px;
}

.hero-visual {
    display: grid;
    gap: 16px;
}

.hero-visual-full {
    width: 100%;
}

.hero-visual-card,
.pain-card,
.feature-card,
.testimonial-card,
.pricing-card,
.cta-panel,
.site-footer,
.legal-card,
.contact-channel-card,
.page-hero-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--paper);
    box-shadow: var(--shadow-card);
}

.page-hero-card {
    padding: 30px;
}

.page-hero-card-accent {
    background:
        radial-gradient(circle at top right, rgba(77, 182, 200, 0.16), transparent 26%),
        linear-gradient(135deg, #182235 0%, #24344d 58%, #bf2f1f 100%);
    color: #fff8f2;
}

.product-hero-placeholder-card {
    padding: 0;
    overflow: hidden;
}

.product-hero-card-with-copy {
    position: relative;
}

.product-hero-card-with-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 20, 34, 0.68) 0%, rgba(18, 20, 34, 0.34) 44%, rgba(18, 20, 34, 0.12) 100%);
}

.product-hero-image {
    display: block;
    width: 100%;
    min-height: 340px;
    height: auto;
    border-radius: inherit;
    object-fit: cover;
}

.product-hero-copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 44px;
    color: #fff8f2;
}

.product-hero-copy-line {
    display: block;
    max-width: 720px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.16;
    color: #fff8f2;
}

.about-hero-card {
    position: relative;
}

.about-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 34, 53, 0.76) 0%, rgba(24, 34, 53, 0.46) 42%, rgba(24, 34, 53, 0.16) 100%);
}

.about-hero-image {
    min-height: 360px;
}

.about-hero-copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 44px;
    color: #fff8f2;
}

.about-hero-copy .section-heading,
.about-hero-copy .page-hero-title,
.about-hero-copy .page-hero-lead,
.about-hero-copy > p:first-child {
    margin: 0;
}

.about-hero-copy > p:first-child {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 248, 242, 0.12);
    color: #fff8f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-copy .page-hero-title {
    max-width: 620px;
    color: #fff8f2;
}

.about-hero-copy .page-hero-lead {
    max-width: 560px;
}

.product-hero-placeholder {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    text-align: center;
    color: #fff8f2;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 222, 173, 0.18), transparent 18%),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.12), transparent 16%),
        linear-gradient(135deg, #86180f 0%, #b32a1b 46%, #d9692a 100%);
}

.product-hero-placeholder::before,
.product-hero-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.product-hero-placeholder::before {
    width: 260px;
    height: 160px;
    right: 10%;
    bottom: 18%;
    transform: rotate(-8deg);
}

.product-hero-placeholder::after {
    width: 150px;
    height: 100px;
    left: 12%;
    top: 18%;
    transform: rotate(10deg);
}

.product-hero-placeholder-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff8f2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-hero-placeholder strong,
.product-hero-placeholder p {
    position: relative;
    z-index: 1;
}

.product-hero-placeholder strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.06;
}

.product-hero-placeholder p {
    margin: 0;
    max-width: 460px;
    color: rgba(255, 248, 242, 0.84);
    font-size: 16px;
    line-height: 1.8;
}

.page-hero-title {
    margin: 12px 0 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
}

.page-hero-lead {
    max-width: 860px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.page-hero-lead-light {
    color: rgba(255, 248, 242, 0.84);
}

.hero-visual-card {
    overflow: hidden;
}

.hero-visual-card-banner {
    position: relative;
    min-height: 520px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.hero-banner-surface {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-banner-slide,
.hero-banner-orb,
.hero-banner-card,
.hero-banner-indicators {
    position: absolute;
}

.hero-banner-slide {
    inset: 0;
    opacity: 0;
    animation: heroBannerRotate 18s infinite;
}

.hero-banner-slide-one {
    background: url('/static/website/images/1.png') center/cover no-repeat;
}

.hero-banner-slide-two {
    background: url('/static/website/images/2.png') center/cover no-repeat;
    animation-delay: 6s;
}

.hero-banner-slide-three {
    background: url('/static/website/images/3.png') center/cover no-repeat;
    animation-delay: 12s;
}

.hero-banner-orb {
    border-radius: 999px;
    z-index: 2;
}

.hero-banner-orb-left {
    left: 56px;
    bottom: 88px;
    width: 220px;
    height: 220px;
    display: none;
}

.hero-banner-orb-right {
    top: 66px;
    right: 72px;
    width: 280px;
    height: 280px;
    display: none;
}

.hero-banner-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
    display: none;
}

.hero-banner-card-large {
    right: 110px;
    bottom: 92px;
    width: 260px;
    height: 170px;
    transform: rotate(-8deg);
}

.hero-banner-card-small {
    right: 276px;
    bottom: 58px;
    width: 140px;
    height: 102px;
    transform: rotate(8deg);
}

.hero-banner-indicators {
    top: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-banner-indicators i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    animation: heroIndicatorRotate 18s infinite;
}

.hero-banner-indicators i:first-child {
    box-shadow: 0 0 0 3px rgba(77, 182, 200, 0.18);
}

.hero-banner-indicators i:nth-child(2) {
    animation-delay: 6s;
}

.hero-banner-indicators i:nth-child(3) {
    animation-delay: 12s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 38px;
}

.hero-copy {
    padding-right: 18px;
}

.hero-copy-overlay {
    max-width: 620px;
    padding-right: 0;
    color: #fff9f4;
}

.hero-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tag,
.legal-card .hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff8f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
}

.hero-copy h1 span {
    display: block;
    margin-top: 8px;
}

.hero-copy-overlay h1,
.hero-copy-overlay .hero-text {
    color: #fff9f4;
}

.hero-text,
.contact-copy p,
.legal-card p,
.legal-card li {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.hero-copy-overlay .hero-text {
    max-width: 560px;
    color: rgba(255, 249, 244, 0.88);
}

.hero-text-strong {
    font-weight: 700;
}

.hero-occasion-strip,
.hero-note-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-occasion-strip span,
.hero-note-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-copy-overlay .hero-occasion-strip span {
    color: #fff9f4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-note-tags span {
    color: #fff9f4;
    background: rgba(255, 255, 255, 0.1);
}

.hero-occasion-strip span::before,
.hero-note-tags span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
}

.btn-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(191, 47, 31, 0.12);
}

.hero-copy-overlay .btn-secondary {
    color: #fff9f4;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-block {
    width: 100%;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    max-width: 720px;
}

.hero-proof-item {
    padding: 16px 16px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.hero-proof-item strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
    color: #fff9f4;
}

.hero-proof-item span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 249, 244, 0.82);
    font-size: 13px;
    line-height: 1.7;
}

.hero-visual-note {
    padding: 20px 22px;
    border-radius: 16px;
}

.hero-visual-note-floating {
    width: min(100%, 316px);
    margin-left: auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(112, 28, 18, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff9f4;
}

.hero-note-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 249, 244, 0.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-visual-note strong {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.3;
}

.hero-visual-note p {
    display: block;
    margin-top: 8px;
    color: rgba(255, 249, 244, 0.82);
    line-height: 1.7;
}

.content-section {
    padding: 28px 0 24px;
}

.content-section-intro {
    position: relative;
    z-index: 4;
    margin-top: -18px;
    padding-top: 10px;
}

.section-heading p,
.cta-copy p:first-child {
    margin: 0;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2,
.cta-copy h2,
.legal-card h1 {
    margin: 12px 0 0;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.3vw, 36px);
    line-height: 1.14;
}

.pain-grid,
.feature-grid,
.pricing-grid {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.company-story-grid,
.mode-grid,
.service-grid,
.entry-grid,
.step-grid,
.workflow-grid {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-story-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-card,
.feature-card,
.pricing-card,
.testimonial-card {
    padding: 24px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card-header h3 {
    margin: 0;
}

.feature-preview {
    position: relative;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(191, 47, 31, 0.1) 0%, rgba(191, 47, 31, 0.03) 100%);
    border: 1px solid rgba(191, 47, 31, 0.12);
}

.feature-preview-screen {
    position: relative;
    min-height: 280px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(134, 24, 15, 0.26) 100%),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.26), transparent 42%),
        linear-gradient(160deg, #f8d7c7 0%, #f4c0a4 38%, #d9692a 100%);
    aspect-ratio: 9 / 18;
}

.feature-preview-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.feature-preview-screen::before,
.feature-preview-screen::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 248, 242, 0.78);
}

.feature-preview-screen::before {
    top: 12px;
    width: 88px;
    height: 6px;
    border-radius: 999px;
}

.feature-preview-screen::after {
    bottom: 10px;
    width: 92px;
    height: 4px;
    border-radius: 999px;
    opacity: 0.6;
}

.feature-preview-badge,
.feature-preview-screen strong,
.feature-preview-screen p {
    position: relative;
    z-index: 1;
}

.feature-preview-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 16, 14, 0.56);
    color: #fff8f2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.company-story-card,
.pricing-panel,
.workflow-card,
.workflow-pricing-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--paper);
    box-shadow: var(--shadow-card);
}

.section-card-index,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--surface-dark-2);
    background: rgba(77, 182, 200, 0.12);
    font-weight: 800;
}

.pain-card h3,
.feature-card h3,
.pricing-card h3,
.testimonial-card p {
    margin: 0;
}

.pain-card p,
.feature-card p,
.pricing-card p,
.cta-copy p:last-child,
.site-footer p {
    color: var(--muted);
    line-height: 1.82;
}

.feature-card > p {
    margin: 0;
}

.section-lead,
.company-story-card p,
.solution-item p,
.pricing-panel p {
    color: var(--muted);
    line-height: 1.82;
}

.section-lead {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 16px;
}

.company-story-lead {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.company-story-card-values {
    background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.98));
}

.company-story-card-values h3 {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.28;
}

.company-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.company-highlight-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(77, 182, 200, 0.08);
    border: 1px solid rgba(36, 52, 77, 0.1);
    color: var(--surface-dark-2);
    font-weight: 700;
}

.mode-card h3 {
    font-size: 28px;
}

.workflow-card h3 {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.3;
}

.workflow-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.workflow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.workflow-card-pain {
    background: linear-gradient(180deg, rgba(24, 34, 53, 0.98), rgba(36, 52, 77, 0.98));
    border-color: rgba(77, 182, 200, 0.22);
    box-shadow: 0 18px 34px rgba(24, 34, 53, 0.18);
}

.workflow-card-pain::before {
    background: radial-gradient(circle at top right, rgba(77, 182, 200, 0.12), transparent 28%);
}

.workflow-card-solution {
    background: linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(255, 255, 255, 0.99));
    border-color: rgba(36, 52, 77, 0.12);
    box-shadow: 0 18px 34px rgba(24, 34, 53, 0.08);
}

.workflow-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-card-tag-pain {
    background: rgba(255, 255, 255, 0.12);
    color: #fff4ef;
}

.workflow-card-tag-solution {
    background: var(--tech-accent-soft);
    color: var(--surface-dark-2);
}

.workflow-card-pain h3,
.workflow-card-pain .workflow-list,
.workflow-card-pain .workflow-list li {
    color: #fff4ef;
}

.workflow-card-pain .workflow-list li {
    border-color: rgba(255, 255, 255, 0.12);
}

.workflow-card-solution h3 {
    color: var(--ink);
}

.workflow-list {
    margin: 18px 0 0;
    padding-left: 0;
    list-style: none;
    color: var(--muted);
}

.workflow-list li {
    margin-bottom: 12px;
    padding: 0 0 12px 18px;
    position: relative;
    border-bottom: 1px solid rgba(36, 52, 77, 0.08);
    line-height: 1.85;
}

.workflow-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.72;
}

.workflow-card .workflow-list li:last-child {
    margin-bottom: 0;
}

.workflow-divider {
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 24px;
    width: 0;
    transform: translateX(-50%);
    border-left: 1px dashed rgba(191, 47, 31, 0.22);
    pointer-events: none;
}

.workflow-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #fff8f5;
    border: 1px solid rgba(191, 47, 31, 0.16);
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(143, 28, 20, 0.08);
}

.workflow-inline-pricing {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(191, 47, 31, 0.12);
}

.workflow-inline-pricing-label {
    display: block;
    color: var(--accent-strong);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.workflow-inline-pricing strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
    color: var(--accent-strong);
    letter-spacing: 0.01em;
}

.workflow-inline-pricing-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.workflow-pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.entry-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--accent-strong);
    font-weight: 700;
}

.scenario-board {
    padding: 30px;
    border-radius: 14px;
}

.festive-board {
    background:
        radial-gradient(circle at top right, rgba(77, 182, 200, 0.16), transparent 24%),
        linear-gradient(145deg, #182235 0%, #24344d 54%, #bf2f1f 100%);
    color: #fff8f2;
    box-shadow: 0 18px 38px rgba(24, 34, 53, 0.16);
}

.section-heading-light p,
.section-heading-light h2,
.scenario-pill {
    color: #fff8f2;
}

.scenario-list,
.trust-strip,
.site-footer-contact,
.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scenario-list {
    margin-top: 24px;
}

.scenario-description {
    margin: 18px 0 0;
    max-width: 720px;
    color: rgba(255, 248, 242, 0.82);
    font-size: 16px;
    line-height: 1.85;
}

.scenario-pill,
.trust-logo-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 700;
}

.scenario-pill {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(77, 182, 200, 0.2);
}

.trust-strip {
    margin-top: 24px;
}

.trust-logo-pill {
    background: rgba(77, 182, 200, 0.08);
    border: 1px solid rgba(36, 52, 77, 0.1);
    color: var(--accent-strong);
}

.testimonial-card {
    margin-top: 20px;
}

.solution-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.solution-compact-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    margin-top: 24px;
    align-items: start;
}

.solution-compact-panel {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-compact-panel-pain {
    background: rgba(24, 34, 53, 0.28);
}

.solution-compact-panel-solution {
    background: rgba(255, 255, 255, 0.06);
}

.solution-compact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.solution-compact-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(77, 182, 200, 0.16);
    color: #fff8f2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-workflow-grid {
    margin-top: 24px;
}

.solution-workflow-card {
    padding: 22px;
}

.solution-workflow-card h3 {
    font-size: 24px;
    line-height: 1.35;
}

.solution-workflow-list {
    margin-top: 16px;
}

.solution-workflow-list li {
    margin-bottom: 10px;
    padding: 0 0 10px 16px;
    line-height: 1.72;
}

.solution-workflow-list li::before {
    top: 10px;
    width: 7px;
    height: 7px;
}

.solution-subtitle {
    margin: 0 0 14px;
    font-size: 22px;
    color: #fff8f2;
}

.solution-pain-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-pain-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff8f2;
    font-weight: 700;
}

.solution-list {
    display: grid;
    gap: 14px;
}

.solution-list-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.solution-item {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
}

.solution-item-compact {
    padding: 16px;
    min-height: 100%;
}

.solution-item strong,
.solution-value-box span,
.pricing-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-item strong {
    background: rgba(255, 255, 255, 0.14);
    color: #fff8f2;
}

.solution-item p {
    margin: 12px 0 0;
    color: rgba(255, 248, 242, 0.84);
}

.solution-value-box {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(24, 34, 53, 0.34);
    border: 1px solid rgba(77, 182, 200, 0.18);
}

.solution-value-box span {
    background: rgba(255, 255, 255, 0.14);
    color: #fff8f2;
}

.solution-value-box p {
    margin: 14px 0 0;
    color: #fff8f2;
    font-size: 20px;
    line-height: 1.7;
}

.testimonial-card p {
    font-size: 20px;
    color: var(--ink);
}

.testimonial-card footer {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

.pricing-card-head strong {
    display: block;
    margin-top: 12px;
    font-size: 28px;
    color: var(--accent-strong);
}

.pricing-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    background: linear-gradient(180deg, rgba(255, 244, 239, 0.95), rgba(255, 255, 255, 0.98));
}

.pricing-panel-tag {
    background: rgba(191, 47, 31, 0.08);
    color: var(--accent-strong);
}

.pricing-panel strong {
    display: block;
    margin-top: 14px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.05;
    color: var(--accent-strong);
}

.pricing-panel p {
    max-width: 640px;
    margin: 14px 0 0;
}

.pricing-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.pricing-list,
.legal-card ul {
    margin: 18px 0 22px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.pricing-card-highlight {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 244, 239, 0.95), rgba(255, 255, 255, 0.98));
    border-color: rgba(191, 47, 31, 0.18);
    transform: translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(145deg, #d94e30, #8f1c14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pricing-footnote {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.cta-section {
    padding-top: 48px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(191, 47, 31, 0.96), rgba(143, 28, 20, 0.96));
    color: #fff;
}

.cta-copy p,
.cta-copy h2 {
    color: #fff;
}

.cta-copy p:last-child {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-section-inline {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.single-contact-card {
    height: 100%;
}

.contact-channel-grid {
    display: grid;
    gap: 18px;
}

.contact-channel-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 18px;
    align-items: center;
    padding: 22px;
    background: linear-gradient(180deg, rgba(247, 250, 253, 0.98), rgba(255, 255, 255, 0.98));
}

.contact-channel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(77, 182, 200, 0.12);
    color: var(--surface-dark-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-channel-copy h3 {
    margin: 14px 0 0;
    font-size: 24px;
    line-height: 1.3;
}

.contact-channel-copy p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.contact-channel-copy strong {
    display: block;
    margin-top: 16px;
    color: var(--accent-strong);
    font-size: 15px;
}

.contact-channel-qr-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(191, 47, 31, 0.08);
}

.contact-channel-qr {
    width: 100%;
    max-width: 160px;
    display: block;
    border-radius: 10px;
}

.contact-notes {
    margin: 20px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.brand-wall-section {
    padding-top: 20px;
}

.brand-wall-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.brand-wall-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(191, 47, 31, 0.08);
    border: 1px solid rgba(191, 47, 31, 0.1);
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 700;
}

.brand-wall-board {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(42, 87, 119, 0.12);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(74, 153, 211, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(245, 249, 252, 0.98));
    box-shadow: 0 14px 34px rgba(18, 57, 84, 0.08);
    overflow: hidden;
}

.brand-wall-row {
    position: relative;
    overflow: hidden;
}

.brand-wall-row + .brand-wall-row {
    margin-top: 12px;
}

.brand-wall-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: brandWallMarquee 56s linear infinite;
}

.brand-wall-row:hover .brand-wall-track {
    animation-play-state: paused;
}

.brand-wall-row-reverse .brand-wall-track {
    animation-name: brandWallMarqueeReverse;
    animation-duration: 64s;
}

.brand-wall-row-slow .brand-wall-track {
    animation-duration: 72s;
}

.brand-wall-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 64px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(42, 87, 119, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.92));
    color: rgba(23, 45, 61, 0.82);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-wall-logo {
    display: block;
    max-width: 96px;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-wall-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-wall-row::before,
.brand-wall-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.brand-wall-row::before {
    left: 0;
    background: linear-gradient(90deg, rgba(247, 251, 253, 1), rgba(247, 251, 253, 0));
}

.brand-wall-row::after {
    right: 0;
    background: linear-gradient(270deg, rgba(247, 251, 253, 1), rgba(247, 251, 253, 0));
}

.site-footer {
    margin-top: 34px;
    padding: 26px 28px;
}

.site-footer-main,
.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(191, 47, 31, 0.08);
    color: var(--muted);
    font-size: 14px;
}

.legal-page-shell {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 48px 20px 60px;
}

.legal-card {
    padding: 30px;
}

.legal-card h2 {
    margin-top: 26px;
    font-size: 22px;
}

@keyframes heroBannerRotate {
    0% {
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    34% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes heroIndicatorRotate {
    0% {
        width: 10px;
        background: rgba(255, 255, 255, 0.38);
    }
    4% {
        width: 28px;
        background: rgba(255, 255, 255, 0.96);
    }
    30% {
        width: 28px;
        background: rgba(255, 255, 255, 0.96);
    }
    34% {
        width: 10px;
        background: rgba(255, 255, 255, 0.38);
    }
    100% {
        width: 10px;
        background: rgba(255, 255, 255, 0.38);
    }
}

@keyframes brandWallMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 7px));
    }
}

@keyframes brandWallMarqueeReverse {
    0% {
        transform: translateX(calc(-50% - 7px));
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1080px) {
    .contact-section,
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .contact-section-inline,
    .entry-grid,
    .step-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .brand-wall-card {
        min-width: 128px;
        min-height: 56px;
        font-size: 17px;
    }

    .workflow-divider {
        display: none;
    }

    .company-story-grid,
    .solution-layout {
        grid-template-columns: 1fr;
    }

    .solution-compact-layout {
        grid-template-columns: 1fr;
    }

    .solution-list-compact {
        grid-template-columns: 1fr;
    }

    .pricing-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .mode-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual-card-banner,
    .hero-banner-surface {
        min-height: 500px;
    }

    .hero-overlay {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .product-hero-copy {
        padding: 32px;
    }

    .product-hero-copy-line {
        max-width: 560px;
        font-size: clamp(24px, 4.8vw, 38px);
    }

    .hero-visual-note-floating {
        margin-left: 0;
    }

    .hero-proof-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .contact-channel-card {
        grid-template-columns: minmax(0, 1fr) 160px;
    }

    .hero-banner-card-large {
        right: 52px;
        bottom: 76px;
    }

    .hero-banner-card-small {
        right: 208px;
        bottom: 44px;
    }
}

@media (max-width: 720px) {
    .site-shell {
        padding: 16px 16px 36px;
    }

    .site-header,
    .site-footer-main,
    .site-footer-bottom,
    .cta-panel,
    .hero-actions,
    .cta-actions {
        display: grid;
        justify-content: stretch;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        gap: 12px;
        padding: 14px;
        border: 1px solid rgba(191, 47, 31, 0.1);
        border-radius: 14px;
        background: rgba(255, 250, 247, 0.98);
        box-shadow: 0 14px 28px rgba(143, 28, 20, 0.08);
    }

    .site-nav a {
        min-height: 44px;
        padding: 0 10px;
        border-radius: 10px;
        background: rgba(191, 47, 31, 0.04);
        font-size: 15px;
    }

    .site-nav-toggle-label {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav-toggle:checked + .site-nav-toggle-label + .site-nav {
        display: grid;
    }

    .site-nav-toggle:checked + .site-nav-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-nav-toggle:checked + .site-nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .site-nav-toggle:checked + .site-nav-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-copy h1,
    .section-heading h2,
    .cta-copy h2,
    .legal-card h1 {
        font-size: 30px;
    }

    .feature-grid,
    .pricing-grid,
    .mode-grid,
    .service-grid,
    .entry-grid,
    .step-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .brand-wall-board {
        padding: 16px;
    }

    .brand-wall-card {
        min-width: 112px;
        min-height: 52px;
        padding: 0 16px;
        font-size: 15px;
    }

    .workflow-card,
    .workflow-inline-pricing {
        padding: 18px;
    }

    .workflow-card h3 {
        font-size: 24px;
    }

    .workflow-inline-pricing-label {
        font-size: 16px;
    }

    .workflow-inline-pricing strong {
        font-size: 30px;
    }

    .workflow-inline-pricing-note {
        font-size: 12px;
    }

    .company-story-card,
    .pricing-panel {
        padding: 18px;
    }

    .company-story-card-values h3,
    .mode-card h3,
    .solution-subtitle {
        font-size: 24px;
    }

    .solution-layout {
        grid-template-columns: 1fr;
    }

    .solution-value-box p,
    .pricing-panel strong {
        font-size: 28px;
    }

    .pricing-panel-actions {
        justify-content: stretch;
    }

    .hero-visual-card-banner,
    .hero-banner-surface {
        min-height: 480px;
    }

    .feature-preview-screen {
        min-height: 240px;
    }

    .product-hero-placeholder {
        min-height: 260px;
    }

    .product-hero-placeholder::before {
        width: 180px;
        height: 110px;
    }

    .product-hero-placeholder::after {
        width: 110px;
        height: 72px;
    }

    .hero-overlay {
        padding: 20px;
        gap: 16px;
    }

    .hero-copy-overlay {
        max-width: none;
    }

    .hero-copy-overlay h1 {
        font-size: 30px;
    }

    .hero-copy-overlay .hero-text {
        font-size: 15px;
    }

    .hero-proof-grid {
        max-width: none;
        gap: 10px;
        margin-top: 22px;
    }

    .hero-proof-item {
        padding: 14px 14px 12px;
    }

    .hero-proof-item strong {
        font-size: 18px;
    }

    .hero-visual-note-floating {
        width: 100%;
        padding: 16px;
    }

    .hero-banner-orb-right,
    .hero-banner-card-small {
        display: none;
    }

    .hero-banner-card-large {
        right: 20px;
        bottom: 118px;
        width: 172px;
        height: 112px;
    }

    .hero-banner-indicators {
        top: 16px;
        right: 16px;
    }

    .contact-channel-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .contact-channel-qr-wrap {
        justify-content: flex-start;
    }

    .contact-channel-qr {
        max-width: 148px;
    }

    .content-section-intro {
        margin-top: -10px;
        padding-top: 8px;
    }
}
