body.schedule-home,
body.schedule-blog,
body.schedule-article {
    --schedule-bg: #f7f2e8;
    --schedule-surface: rgba(255, 252, 247, 0.76);
    --schedule-surface-strong: #fffdf8;
    --schedule-surface-dark: #18324a;
    --schedule-text: #1b2430;
    --schedule-muted: #58636f;
    --schedule-border: rgba(24, 50, 74, 0.12);
    --schedule-border-strong: rgba(24, 50, 74, 0.22);
    --schedule-accent: #2c6df6;
    --schedule-accent-2: #56c59a;
    --schedule-accent-3: #ff8e63;
    --schedule-shadow: 0 28px 80px rgba(22, 43, 67, 0.12);
    --schedule-shadow-soft: 0 20px 45px rgba(22, 43, 67, 0.08);
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
    color: var(--schedule-text);
    background:
        radial-gradient(circle at top left, rgba(86, 197, 154, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(44, 109, 246, 0.18), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f4eee1 100%);
}

body.schedule-home::before,
body.schedule-blog::before,
body.schedule-article::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 50, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 50, 74, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: -2;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
}

body.schedule-home::after,
body.schedule-blog::after,
body.schedule-article::after {
    content: "";
    position: fixed;
    width: min(38vw, 540px);
    height: min(38vw, 540px);
    right: -8vw;
    bottom: -12vw;
    background: radial-gradient(circle, rgba(44, 109, 246, 0.16), transparent 68%);
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
}

.schedule-home body,
.schedule-blog body,
.schedule-article body {
    background: transparent;
}

.schedule-home .container,
.schedule-blog .container,
.schedule-article .container {
    max-width: 1240px;
    padding: 0 28px;
}

.schedule-home .header,
.schedule-blog .header,
.schedule-article .header {
    background: rgba(249, 245, 238, 0.74);
    backdrop-filter: blur(18px);
    box-shadow: none;
    border-bottom: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .header.scrolled,
.schedule-blog .header.scrolled,
.schedule-article .header.scrolled {
    background: rgba(255, 251, 245, 0.9);
    box-shadow: 0 14px 40px rgba(24, 50, 74, 0.08);
}

.schedule-home .navbar,
.schedule-blog .navbar,
.schedule-article .navbar {
    padding: 1.15rem 0;
}

.schedule-home .nav-brand,
.schedule-blog .nav-brand,
.schedule-article .nav-brand {
    gap: 14px;
}

.schedule-home .logo,
.schedule-blog .logo,
.schedule-article .logo,
.schedule-home .footer-logo,
.schedule-blog .footer-logo,
.schedule-article .footer-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(44, 109, 246, 0.18);
}

.schedule-home .brand-name,
.schedule-blog .brand-name,
.schedule-article .brand-name,
.schedule-home .footer-brand-name,
.schedule-blog .footer-brand-name,
.schedule-article .footer-brand-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--schedule-text);
}

.schedule-home .nav-menu,
.schedule-blog .nav-menu,
.schedule-article .nav-menu {
    gap: 1.2rem;
}

.schedule-home .nav-menu a:not(.btn),
.schedule-blog .nav-menu a:not(.btn),
.schedule-article .nav-menu a:not(.btn) {
    color: var(--schedule-muted);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.schedule-home .nav-menu a:not(.btn):hover,
.schedule-home .nav-menu a:not(.btn).active,
.schedule-blog .nav-menu a:not(.btn):hover,
.schedule-blog .nav-menu a:not(.btn).active,
.schedule-article .nav-menu a:not(.btn):hover,
.schedule-article .nav-menu a:not(.btn).active {
    color: var(--schedule-text);
}

.schedule-home .btn,
.schedule-blog .btn,
.schedule-article .btn {
    border-radius: 999px;
    padding: 0.95rem 1.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.schedule-home .btn-primary,
.schedule-blog .btn-primary,
.schedule-article .btn-primary {
    background: linear-gradient(135deg, #2f78ff, #204db7);
    box-shadow: 0 18px 28px rgba(44, 109, 246, 0.24);
}

.schedule-home .btn-primary:hover,
.schedule-blog .btn-primary:hover,
.schedule-article .btn-primary:hover {
    background: linear-gradient(135deg, #255fd3, #183b8b);
    transform: translateY(-2px);
}

.schedule-home .btn-secondary,
.schedule-blog .btn-secondary,
.schedule-article .btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(24, 50, 74, 0.12);
    color: var(--schedule-text);
}

.schedule-home .btn-secondary:hover,
.schedule-blog .btn-secondary:hover,
.schedule-article .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.schedule-home .btn svg,
.schedule-blog .btn svg,
.schedule-article .btn svg {
    width: 19px;
    height: 19px;
}

.schedule-home .scroll-progress,
.schedule-blog .scroll-progress,
.schedule-article .scroll-progress {
    background: linear-gradient(90deg, var(--schedule-accent-2), var(--schedule-accent));
    height: 4px;
}

.schedule-home .hero {
    position: relative;
    padding: 148px 0 52px;
    overflow: hidden;
}

.schedule-home .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.schedule-home .hero-copy,
.schedule-home .hero-stage,
.schedule-home .home-card,
.schedule-home .feature-card,
.schedule-home .comparison-card,
.schedule-home .workflow-shell,
.schedule-home .installation-panel,
.schedule-home .testimonial-card,
.schedule-home .faq-item,
.schedule-home .article-highlight,
.schedule-blog .blog-hero,
.schedule-blog .featured-insight,
.schedule-blog .blog-post,
.schedule-article .article-hero,
.schedule-article .article-sidebar,
.schedule-article .article-body-card,
.schedule-home .footer,
.schedule-blog .footer,
.schedule-article .footer {
    background: var(--schedule-surface);
    border: 1px solid var(--schedule-border);
    box-shadow: var(--schedule-shadow-soft);
    backdrop-filter: blur(14px);
}

.schedule-home .hero-copy {
    padding: 38px;
    border-radius: 32px;
}

.section-kicker,
.schedule-home .eyebrow,
.schedule-blog .eyebrow,
.schedule-article .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(24, 50, 74, 0.06);
    color: var(--schedule-muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.schedule-home .hero-title,
.schedule-blog .blog-title,
.schedule-article .article-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3.25rem, 6vw, 5.35rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 1.15rem;
    color: var(--schedule-text);
}

.schedule-home .hero-description,
.schedule-blog .blog-description,
.schedule-article .article-intro {
    max-width: 640px;
    font-size: clamp(1.08rem, 2.2vw, 1.24rem);
    line-height: 1.75;
    color: var(--schedule-muted);
}

.schedule-home .hero-actions,
.schedule-home .hero-tags,
.schedule-home .hero-stats,
.schedule-home .feature-grid,
.schedule-home .comparison-grid,
.schedule-home .process-grid,
.schedule-home .testimonial-grid,
.schedule-home .faq-grid,
.schedule-home .footer-grid,
.schedule-blog .blog-grid,
.schedule-blog .blog-meta-row,
.schedule-blog .footer-grid,
.schedule-article .article-layout,
.schedule-article .related-grid,
.schedule-article .footer-grid {
    display: grid;
}

.schedule-home .hero-actions {
    grid-template-columns: repeat(2, max-content);
    gap: 14px;
    margin: 2rem 0 1.4rem;
}

.schedule-home .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.schedule-home .mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 50, 74, 0.08);
    color: var(--schedule-text);
    font-size: 0.95rem;
    font-weight: 600;
}

.schedule-home .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.schedule-home .stat-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .stat-number {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--schedule-text);
}

.schedule-home .stat-label {
    font-size: 0.92rem;
    color: var(--schedule-muted);
}

.schedule-home .hero-stage {
    position: relative;
    padding: 30px;
    border-radius: 36px;
    min-height: 620px;
    overflow: hidden;
}

.schedule-home .hero-stage::before {
    content: "";
    position: absolute;
    inset: 32px;
    background:
        linear-gradient(135deg, rgba(44, 109, 246, 0.16), transparent 60%),
        linear-gradient(315deg, rgba(86, 197, 154, 0.16), transparent 55%),
        rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    border: 1px solid rgba(24, 50, 74, 0.06);
}

.schedule-home .hero-screenshot-wrap {
    position: relative;
    z-index: 1;
    width: min(100%, 510px);
    margin: 54px auto 0;
}

.schedule-home .hero-screenshot {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--schedule-shadow);
    border: 1px solid rgba(24, 50, 74, 0.09);
}

.schedule-home .hero-float,
.schedule-home .workflow-float {
    position: absolute;
    z-index: 2;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(24, 50, 74, 0.08);
    box-shadow: 0 20px 40px rgba(24, 50, 74, 0.14);
    animation: scheduleFloat 6s ease-in-out infinite;
}

.schedule-home .hero-float h3,
.schedule-home .workflow-float h3 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.schedule-home .hero-float p,
.schedule-home .workflow-float p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--schedule-muted);
}

.schedule-home .hero-float--left {
    left: 16px;
    top: 120px;
    width: 210px;
}

.schedule-home .hero-float--right {
    right: 14px;
    top: 54px;
    width: 200px;
    animation-delay: 1.2s;
}

.schedule-home .hero-float--bottom {
    right: 34px;
    bottom: 42px;
    width: 220px;
    animation-delay: 2.1s;
}

.schedule-home .signal-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.55rem;
    color: var(--schedule-text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-home .signal-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--schedule-accent-2);
    box-shadow: 0 0 0 6px rgba(86, 197, 154, 0.16);
}

.schedule-home .section {
    padding: 34px 0 18px;
}

.schedule-home .section-header,
.schedule-blog .blog-header,
.schedule-article .article-header {
    margin-bottom: 1.8rem;
}

.schedule-home .section-title,
.schedule-blog .section-title,
.schedule-article .section-title {
    max-width: 780px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.7rem;
}

.schedule-home .section-subtitle,
.schedule-blog .section-subtitle,
.schedule-article .section-subtitle {
    max-width: 720px;
    color: var(--schedule-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.schedule-home .feature-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.schedule-home .feature-card {
    padding: 24px;
    border-radius: 28px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.25s ease;
}

.schedule-home .feature-card.visible,
.schedule-home .process-step.visible,
.schedule-home .testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.schedule-home .feature-card:hover,
.schedule-home .testimonial-card:hover,
.schedule-blog .blog-post:hover,
.schedule-article .related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schedule-shadow);
}

.schedule-home .feature-card:nth-child(1) {
    grid-column: span 5;
}

.schedule-home .feature-card:nth-child(2) {
    grid-column: span 4;
}

.schedule-home .feature-card:nth-child(3) {
    grid-column: span 3;
}

.schedule-home .feature-card:nth-child(4),
.schedule-home .feature-card:nth-child(5),
.schedule-home .feature-card:nth-child(6) {
    grid-column: span 4;
}

.schedule-home .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 109, 246, 0.12);
    color: var(--schedule-accent);
    font-size: 1.25rem;
}

.schedule-home .feature-card h3,
.schedule-home .comparison-card h3,
.schedule-home .process-step h3,
.schedule-home .testimonial-card h3,
.schedule-home .article-highlight h3,
.schedule-blog .featured-insight h2,
.schedule-blog .blog-post h2,
.schedule-article .article-sidebar h3,
.schedule-article .article-body-card h2,
.schedule-article .related-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.03em;
}

.schedule-home .feature-card p,
.schedule-home .comparison-card p,
.schedule-home .process-step p,
.schedule-home .testimonial-card p,
.schedule-home .article-highlight p,
.schedule-blog .featured-insight p,
.schedule-blog .blog-post p,
.schedule-article .article-sidebar p,
.schedule-article .article-body-card p,
.schedule-article .article-body-card li,
.schedule-article .related-card p {
    color: var(--schedule-muted);
}

.schedule-home .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.schedule-home .comparison-card {
    padding: 22px;
    border-radius: 28px;
}

.schedule-home .comparison-card img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 1rem;
    border: 1px solid rgba(24, 50, 74, 0.09);
}

.schedule-home .comparison-card--after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(225, 242, 234, 0.72)),
        var(--schedule-surface);
}

.schedule-home .comparison-card--before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 228, 0.75)),
        var(--schedule-surface);
}

.schedule-home .workflow-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1.04fr);
    gap: 22px;
    padding: 28px;
    border-radius: 32px;
    overflow: hidden;
}

.schedule-home .workflow-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-home .workflow-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-home .workflow-toggle {
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 50, 74, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--schedule-text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.schedule-home .workflow-toggle.active {
    background: linear-gradient(135deg, rgba(44, 109, 246, 0.14), rgba(86, 197, 154, 0.16));
    border-color: rgba(44, 109, 246, 0.24);
}

.schedule-home .workflow-toggle:hover {
    transform: translateY(-1px);
}

.schedule-home .workflow-panels {
    position: relative;
    min-height: 300px;
}

.schedule-home .workflow-panel {
    padding: 1.6rem 0 0;
}

.schedule-home .workflow-panel[hidden] {
    display: none;
}

.schedule-home .workflow-summary {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--schedule-muted);
}

.schedule-home .workflow-list {
    display: grid;
    gap: 12px;
    margin-top: 1.4rem;
}

.schedule-home .workflow-list li {
    list-style: none;
    padding: 1rem 1rem 1rem 3.2rem;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 50, 74, 0.08);
    color: var(--schedule-text);
}

.schedule-home .workflow-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(44, 109, 246, 0.18), rgba(86, 197, 154, 0.18));
    box-shadow: inset 0 0 0 1px rgba(44, 109, 246, 0.16);
}

.schedule-home .workflow-visual {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(44, 109, 246, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 246, 241, 0.88));
    border: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .workflow-visual img {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(100%, 520px);
    border-radius: 26px;
    border: 1px solid rgba(24, 50, 74, 0.1);
    box-shadow: var(--schedule-shadow);
}

.schedule-home .workflow-meter {
    position: relative;
    z-index: 2;
    width: min(100%, 300px);
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .workflow-meter strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.schedule-home .workflow-track {
    margin-top: 0.85rem;
    height: 12px;
    border-radius: 999px;
    background: rgba(24, 50, 74, 0.08);
    overflow: hidden;
}

.schedule-home .workflow-track span {
    display: block;
    height: 100%;
    width: 72%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--schedule-accent-2), var(--schedule-accent));
}

.schedule-home .workflow-shell[data-mode="meetings"] .workflow-track span {
    width: 88%;
}

.schedule-home .workflow-shell[data-mode="plan"] .workflow-track span {
    width: 64%;
}

.schedule-home .workflow-shell[data-mode="meetings"] .workflow-float {
    background: rgba(255, 251, 247, 0.88);
}

.schedule-home .workflow-shell[data-mode="plan"] .workflow-float {
    background: rgba(247, 252, 255, 0.88);
}

.schedule-home .workflow-float {
    right: 20px;
    top: 160px;
    width: 230px;
}

.schedule-home .article-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    padding: 30px;
    border-radius: 32px;
}

.schedule-home .article-highlight .article-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-home .article-highlight .article-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1rem 0;
    color: var(--schedule-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.schedule-home .article-highlight .article-preview {
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 246, 255, 0.88));
    border: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .article-preview ul {
    display: grid;
    gap: 10px;
    margin-top: 1rem;
}

.schedule-home .article-preview li {
    list-style: none;
    padding-left: 1.2rem;
    position: relative;
    color: var(--schedule-text);
}

.schedule-home .article-preview li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--schedule-accent-3);
}

.schedule-home .installation-panel {
    padding: 30px;
    border-radius: 32px;
}

.schedule-home .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}

.schedule-home .process-step {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 50, 74, 0.08);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.schedule-home .step-index {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(44, 109, 246, 0.16), rgba(86, 197, 154, 0.16));
    color: var(--schedule-text);
    font-weight: 800;
}

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

.schedule-home .testimonial-card {
    padding: 26px;
    border-radius: 28px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.schedule-home .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.schedule-home .avatar {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 109, 246, 0.18), rgba(86, 197, 154, 0.18));
    color: var(--schedule-text);
    font-weight: 800;
}

.schedule-home .rating {
    color: var(--schedule-accent-3);
    letter-spacing: 0.14em;
    font-size: 0.9rem;
}

.schedule-home .faq-grid {
    gap: 14px;
}

.schedule-home .faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.schedule-home .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 1.25rem 1.4rem;
    cursor: pointer;
}

.schedule-home .faq-question h3 {
    margin: 0;
    font-size: 1.08rem;
}

.schedule-home .faq-toggle {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--schedule-accent);
}

.schedule-home .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.schedule-home .faq-answer p {
    padding: 0 1.4rem 1.35rem;
    margin: 0;
}

.schedule-home .faq-item.active .faq-answer {
    max-height: 260px;
}

.schedule-home .footer,
.schedule-blog .footer,
.schedule-article .footer {
    margin: 48px 0 30px;
    padding: 26px 0 0;
    border-radius: 30px;
}

.schedule-home .footer .container,
.schedule-blog .footer .container,
.schedule-article .footer .container {
    padding-top: 0;
    padding-bottom: 0;
}

.schedule-home .footer-grid,
.schedule-blog .footer-grid,
.schedule-article .footer-grid {
    grid-template-columns: 1.2fr repeat(2, minmax(0, 0.6fr));
    gap: 18px;
    padding: 0 0 24px;
}

.schedule-home .footer-card,
.schedule-blog .footer-card,
.schedule-article .footer-card {
    padding: 10px 0;
}

.schedule-home .footer-card h4,
.schedule-blog .footer-card h4,
.schedule-article .footer-card h4 {
    margin-bottom: 0.85rem;
}

.schedule-home .footer-links,
.schedule-blog .footer-links,
.schedule-article .footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.schedule-home .footer-links a,
.schedule-blog .footer-links a,
.schedule-article .footer-links a,
.schedule-home .footer-description,
.schedule-blog .footer-description,
.schedule-article .footer-description,
.schedule-home .text-link,
.schedule-blog .text-link,
.schedule-article .text-link,
.schedule-blog .read-more,
.schedule-article .read-more {
    color: var(--schedule-muted);
    text-decoration: none;
}

.schedule-home .footer-links a:hover,
.schedule-blog .footer-links a:hover,
.schedule-article .footer-links a:hover,
.schedule-home .text-link:hover,
.schedule-blog .text-link:hover,
.schedule-article .text-link:hover,
.schedule-blog .read-more:hover,
.schedule-article .read-more:hover {
    color: var(--schedule-text);
}

.schedule-home .footer-bottom,
.schedule-blog .footer-bottom,
.schedule-article .footer-bottom {
    padding: 1.15rem 0 1.5rem;
    border-top: 1px solid rgba(24, 50, 74, 0.08);
}

.schedule-home .footer-bottom p,
.schedule-blog .footer-bottom p,
.schedule-article .footer-bottom p {
    color: var(--schedule-muted);
    margin: 0;
}

.schedule-home .back-to-top,
.schedule-blog .back-to-top,
.schedule-article .back-to-top {
    background: linear-gradient(135deg, var(--schedule-accent), #163b8b);
    box-shadow: 0 14px 34px rgba(44, 109, 246, 0.26);
}

.schedule-home .floating-cta,
.schedule-blog .floating-cta,
.schedule-article .floating-cta {
    background: linear-gradient(135deg, #143654, #215ab1);
    box-shadow: 0 18px 38px rgba(20, 54, 84, 0.22);
}

.schedule-blog .blog-main,
.schedule-article .blog-main {
    padding-top: 132px;
}

.schedule-blog .blog-hero {
    padding: 34px;
    border-radius: 34px;
    margin-bottom: 22px;
}

.schedule-blog .blog-title {
    max-width: 760px;
}

.schedule-blog .blog-meta-row {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-top: 1.8rem;
}

.schedule-blog .featured-insight {
    padding: 28px;
    border-radius: 28px;
}

.schedule-blog .featured-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 109, 246, 0.12);
    color: var(--schedule-accent);
    font-weight: 700;
}

.schedule-blog .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.schedule-blog .blog-post {
    overflow: hidden;
    border-radius: 28px;
}

.schedule-blog .blog-post-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.schedule-blog .blog-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.schedule-blog .blog-post:hover img {
    transform: scale(1.03);
}

.schedule-blog .blog-post-content {
    padding: 24px;
}

.schedule-blog .blog-post h2 {
    font-size: 1.72rem;
    margin-bottom: 0.8rem;
}

.schedule-blog .blog-post h2 a {
    color: var(--schedule-text);
    text-decoration: none;
}

.schedule-blog .blog-meta,
.schedule-article .article-meta,
.schedule-article .article-breadcrumbs {
    color: var(--schedule-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.schedule-blog .read-more,
.schedule-article .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-weight: 700;
}

.schedule-article .article-hero {
    padding: 34px;
    border-radius: 34px;
    margin-bottom: 22px;
}

.schedule-article .article-breadcrumbs {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.schedule-article .article-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(240px, 0.26fr);
    gap: 20px;
    align-items: start;
}

.schedule-article .article-body-card,
.schedule-article .article-sidebar {
    padding: 28px;
    border-radius: 28px;
}

.schedule-article .article-cover {
    width: 100%;
    margin: 1.6rem 0 1.8rem;
    border-radius: 26px;
    border: 1px solid rgba(24, 50, 74, 0.1);
    box-shadow: var(--schedule-shadow-soft);
}

.schedule-article .article-body-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.schedule-article .article-body-card h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.55rem;
}

.schedule-article .article-body-card ul,
.schedule-article .article-body-card ol {
    padding-left: 1.25rem;
    display: grid;
    gap: 10px;
    margin: 1rem 0 1.4rem;
}

.schedule-article .article-note,
.schedule-article .article-cta {
    margin: 1.6rem 0;
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    background: rgba(232, 244, 255, 0.8);
    border: 1px solid rgba(44, 109, 246, 0.12);
}

.schedule-article .article-cta {
    background: rgba(236, 248, 243, 0.88);
    border-color: rgba(86, 197, 154, 0.22);
}

.schedule-article .article-sidebar {
    position: sticky;
    top: 110px;
}

.schedule-article .article-sidebar ul {
    display: grid;
    gap: 10px;
    margin: 1rem 0 1.4rem;
    list-style: none;
}

.schedule-article .article-sidebar li {
    padding-left: 1.1rem;
    position: relative;
}

.schedule-article .article-sidebar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--schedule-accent);
}

.schedule-article .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.schedule-article .related-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 50, 74, 0.08);
    box-shadow: var(--schedule-shadow-soft);
}

@keyframes scheduleFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1080px) {
    .schedule-home .hero-grid,
    .schedule-home .workflow-shell,
    .schedule-home .article-highlight,
    .schedule-blog .blog-meta-row,
    .schedule-article .article-layout {
        grid-template-columns: 1fr;
    }

    .schedule-home .hero-stage {
        min-height: auto;
        padding-bottom: 180px;
    }

    .schedule-home .hero-screenshot-wrap {
        margin-top: 26px;
    }

    .schedule-home .hero-float--left,
    .schedule-home .hero-float--right,
    .schedule-home .hero-float--bottom,
    .schedule-home .workflow-float {
        width: auto;
        max-width: 220px;
    }

    .schedule-home .feature-card:nth-child(1),
    .schedule-home .feature-card:nth-child(2),
    .schedule-home .feature-card:nth-child(3),
    .schedule-home .feature-card:nth-child(4),
    .schedule-home .feature-card:nth-child(5),
    .schedule-home .feature-card:nth-child(6) {
        grid-column: span 6;
    }

    .schedule-home .testimonial-grid,
    .schedule-home .process-grid,
    .schedule-blog .blog-grid,
    .schedule-article .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 960px) {
    .schedule-home .hamburger,
    .schedule-blog .hamburger,
    .schedule-article .hamburger {
        display: flex;
    }

    .schedule-home .nav-menu,
    .schedule-blog .nav-menu,
    .schedule-article .nav-menu {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding: 1.2rem;
        border-radius: 24px;
        background: rgba(255, 252, 247, 0.95);
        border: 1px solid rgba(24, 50, 74, 0.08);
        box-shadow: var(--schedule-shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 1001;
    }

    .schedule-home .nav-menu.active,
    .schedule-blog .nav-menu.active,
    .schedule-article .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .schedule-home .nav-menu li:last-child,
    .schedule-blog .nav-menu li:last-child,
    .schedule-article .nav-menu li:last-child {
        margin-top: 0.3rem;
    }

    .schedule-home .hero-tags,
    .schedule-home .hero-actions {
        grid-template-columns: 1fr;
    }

    .schedule-home .hero-stats,
    .schedule-home .comparison-grid,
    .schedule-home .footer-grid,
    .schedule-blog .footer-grid,
    .schedule-article .footer-grid {
        grid-template-columns: 1fr;
    }

    .schedule-home .process-grid,
    .schedule-home .testimonial-grid,
    .schedule-blog .blog-grid,
    .schedule-article .related-grid {
        grid-template-columns: 1fr;
    }

    .schedule-home .workflow-visual {
        min-height: 360px;
    }

    .schedule-home .workflow-visual img {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .schedule-home .workflow-float {
        top: 20px;
    }

    .schedule-article .article-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .schedule-home .container,
    .schedule-blog .container,
    .schedule-article .container {
        padding: 0 18px;
    }

    .schedule-home .hero {
        padding-top: 128px;
    }

    .schedule-home .hero-copy,
    .schedule-home .hero-stage,
    .schedule-home .workflow-shell,
    .schedule-home .article-highlight,
    .schedule-home .installation-panel,
    .schedule-blog .blog-hero,
    .schedule-blog .featured-insight,
    .schedule-blog .blog-post-content,
    .schedule-article .article-hero,
    .schedule-article .article-body-card,
    .schedule-article .article-sidebar {
        padding: 22px;
    }

    .schedule-home .hero-title,
    .schedule-blog .blog-title,
    .schedule-article .article-title {
        font-size: clamp(2.6rem, 13vw, 4.1rem);
    }

    .schedule-home .hero-stage {
        padding-bottom: 250px;
    }

    .schedule-home .hero-float--left {
        left: 10px;
        top: auto;
        bottom: 116px;
    }

    .schedule-home .hero-float--right {
        right: 10px;
        top: 22px;
    }

    .schedule-home .hero-float--bottom {
        right: 12px;
        bottom: 18px;
    }

    .schedule-home .feature-grid {
        grid-template-columns: 1fr;
    }

    .schedule-home .feature-card:nth-child(1),
    .schedule-home .feature-card:nth-child(2),
    .schedule-home .feature-card:nth-child(3),
    .schedule-home .feature-card:nth-child(4),
    .schedule-home .feature-card:nth-child(5),
    .schedule-home .feature-card:nth-child(6) {
        grid-column: auto;
    }

    .schedule-home .hero-float,
    .schedule-home .workflow-float {
        max-width: calc(100% - 24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .schedule-home *,
    .schedule-blog *,
    .schedule-article * {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Product alignment refresh */
.schedule-home,
.schedule-blog,
.schedule-article {
    --schedule-bg: #f4f8ff;
    --schedule-surface: rgba(255, 255, 255, 0.84);
    --schedule-surface-strong: #ffffff;
    --schedule-surface-dark: #17345e;
    --schedule-text: #17243a;
    --schedule-muted: #5d6d83;
    --schedule-border: rgba(23, 52, 94, 0.11);
    --schedule-border-strong: rgba(23, 52, 94, 0.2);
    --schedule-accent: #2d67f6;
    --schedule-accent-2: #7fc3ff;
    --schedule-accent-3: #8f9bff;
    --schedule-shadow: 0 30px 80px rgba(23, 52, 94, 0.13);
    --schedule-shadow-soft: 0 18px 38px rgba(23, 52, 94, 0.08);
    background:
        radial-gradient(circle at top left, rgba(127, 195, 255, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(143, 155, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #f9fbff 0%, #f0f5ff 100%);
}

.schedule-home::before,
.schedule-blog::before,
.schedule-article::before {
    background-image:
        linear-gradient(rgba(45, 103, 246, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 103, 246, 0.025) 1px, transparent 1px);
    background-size: 84px 84px;
}

.schedule-home .brand-name,
.schedule-blog .brand-name,
.schedule-article .brand-name,
.schedule-home .footer-brand-name,
.schedule-blog .footer-brand-name,
.schedule-article .footer-brand-name,
.schedule-home .hero-title,
.schedule-blog .blog-title,
.schedule-article .article-title,
.schedule-home .section-title,
.schedule-blog .section-title,
.schedule-article .section-title,
.schedule-home .feature-card h3,
.schedule-home .comparison-card h3,
.schedule-home .process-step h3,
.schedule-home .testimonial-card h3,
.schedule-home .article-highlight h3,
.schedule-blog .featured-insight h2,
.schedule-blog .blog-post h2,
.schedule-article .article-sidebar h3,
.schedule-article .article-body-card h2,
.schedule-article .related-card h3 {
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
}

.schedule-home .brand-name,
.schedule-blog .brand-name,
.schedule-article .brand-name,
.schedule-home .footer-brand-name,
.schedule-blog .footer-brand-name,
.schedule-article .footer-brand-name {
    font-weight: 700;
    letter-spacing: -0.03em;
}

.schedule-home .hero-title,
.schedule-blog .blog-title,
.schedule-article .article-title {
    font-size: clamp(2.85rem, 6vw, 4.65rem);
    font-weight: 700;
    line-height: 0.94;
}

.schedule-home .section-title,
.schedule-blog .section-title,
.schedule-article .section-title {
    font-weight: 700;
}

.schedule-home .hero-copy,
.schedule-home .hero-stage,
.schedule-home .home-card,
.schedule-home .feature-card,
.schedule-home .comparison-card,
.schedule-home .workflow-shell,
.schedule-home .installation-panel,
.schedule-home .testimonial-card,
.schedule-home .faq-item,
.schedule-home .article-highlight,
.schedule-blog .blog-hero,
.schedule-blog .featured-insight,
.schedule-blog .blog-post,
.schedule-article .article-hero,
.schedule-article .article-sidebar,
.schedule-article .article-body-card,
.schedule-home .footer,
.schedule-blog .footer,
.schedule-article .footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.86));
}

.schedule-home .hero {
    padding: 138px 0 46px;
}

.schedule-home .hero-grid {
    gap: 30px;
}

.schedule-home .hero-copy {
    padding: 34px;
}

.schedule-home .eyebrow,
.schedule-blog .eyebrow,
.schedule-article .eyebrow {
    background: rgba(45, 103, 246, 0.08);
    color: #4d6280;
    font-size: 0.84rem;
}

.schedule-home .hero-description {
    max-width: 560px;
    font-size: 1.12rem;
}

.schedule-home .hero-actions {
    margin: 1.7rem 0 1.1rem;
}

.schedule-home .hero-actions--insights {
    margin: 1.3rem 0 0;
}

.schedule-home .hero-tags {
    margin-bottom: 1.4rem;
}

.schedule-home .hero-stage {
    padding: 18px 12px 132px;
    min-height: 690px;
    border: none;
    box-shadow: none;
    background: transparent;
}

.schedule-home .hero-stage::before {
    inset: 28px 14px 18px;
    background:
        radial-gradient(circle at top right, rgba(127, 195, 255, 0.14), transparent 26%),
        radial-gradient(circle at bottom left, rgba(143, 155, 255, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(242, 247, 255, 0.84));
    border: none;
    border-radius: 32px;
}

.schedule-home .hero-float,
.schedule-home .workflow-float {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.schedule-home .hero-note {
    position: absolute;
    z-index: 4;
    max-width: 220px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(23, 52, 94, 0.08);
    box-shadow: 0 16px 32px rgba(23, 52, 94, 0.12);
}

.schedule-home .hero-note--timeline {
    left: -6px;
    top: 138px;
}

.schedule-home .hero-note--chip {
    right: 0;
    top: 66px;
}

.schedule-home .hero-note--quick-add {
    right: 22px;
    bottom: 48px;
}

.schedule-home .hero-note h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.schedule-home .hero-note p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--schedule-muted);
}

.schedule-home .hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.schedule-home .hero-proof {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 52, 94, 0.08);
}

.schedule-home .hero-proof strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: var(--schedule-text);
}

.schedule-home .hero-proof span {
    color: var(--schedule-muted);
    font-size: 0.94rem;
}

.product-mockup {
    position: relative;
    z-index: 2;
    width: min(100%, 540px);
    margin: 0 auto;
    padding: 0;
    border-radius: 30px;
    background: transparent;
    border: none;
    box-shadow: 0 22px 44px rgba(23, 52, 94, 0.16);
}

.product-mockup.is-compact {
    width: min(100%, 460px);
}

.mockup-shell {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: none;
    box-shadow:
        0 1px 0 rgba(23, 52, 94, 0.06) inset,
        0 10px 24px rgba(23, 52, 94, 0.08);
}

.mockup-shell.is-short {
    min-height: 540px;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(23, 52, 94, 0.06);
}

.mockup-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mockup-brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(143, 155, 255, 0.2), rgba(45, 103, 246, 0.14));
    color: var(--schedule-accent);
    font-size: 1.15rem;
    font-weight: 800;
}

.mockup-brand-text strong,
.mockup-day strong,
.mockup-range-label,
.mockup-tab,
.mockup-footer span,
.ui-pill,
.anatomy-card strong,
.task-card strong,
.compare-fit-card strong,
.checker-feature strong,
.quick-answer strong {
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
}

.mockup-brand-text strong {
    display: block;
    font-size: 1rem;
}

.mockup-brand-text span {
    color: var(--schedule-muted);
    font-size: 0.9rem;
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(23, 52, 94, 0.08);
    background: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--schedule-text);
    font-size: 0.95rem;
}

.mockup-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #198b88, #0f6b7a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mockup-nav {
    display: flex;
    gap: 10px;
    padding: 14px 18px 8px;
}

.mockup-tab {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border-radius: 18px 18px 0 0;
    background: rgba(143, 155, 255, 0.1);
    color: #4d6280;
    font-size: 0.98rem;
    font-weight: 700;
}

.mockup-tab.is-active {
    background: #ffffff;
    color: var(--schedule-text);
    box-shadow: 0 -1px 0 rgba(23, 52, 94, 0.08) inset;
}

.mockup-days {
    display: flex;
    gap: 8px;
    padding: 14px 16px 18px;
    align-items: center;
    border-top: 1px solid rgba(23, 52, 94, 0.06);
    border-bottom: 1px solid rgba(23, 52, 94, 0.06);
}

.mockup-day {
    min-width: 62px;
    text-align: center;
    color: var(--schedule-muted);
}

.mockup-day strong {
    display: block;
    margin-top: 4px;
    color: var(--schedule-text);
    font-size: 1.5rem;
    line-height: 1;
}

.mockup-day.is-active {
    padding: 10px 0;
    border-radius: 18px;
    background: rgba(179, 209, 255, 0.62);
    color: #314964;
}

.mockup-view-pill {
    margin-left: auto;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(23, 52, 94, 0.14);
    color: #415773;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mockup-timeline {
    position: relative;
    min-height: 410px;
    padding: 30px 18px 40px 82px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 253, 255, 1));
}

.mockup-range-label {
    position: absolute;
    left: 0;
    right: 0;
    color: rgba(93, 109, 131, 0.7);
    font-size: 0.88rem;
    font-style: italic;
    text-align: center;
}

.mockup-range-label.is-top {
    top: 18px;
}

.mockup-range-label.is-bottom {
    bottom: 24px;
}

.mockup-time {
    position: absolute;
    left: 18px;
    color: #6a778b;
    font-size: 0.96rem;
}

.mockup-gridline {
    position: absolute;
    left: 82px;
    right: 18px;
    height: 1px;
    background: rgba(23, 52, 94, 0.1);
}

.mockup-time--10 {
    top: 42px;
}

.mockup-time--11 {
    top: 112px;
}

.mockup-time--12 {
    top: 182px;
}

.mockup-time--14 {
    top: 302px;
}

.mockup-time--15 {
    top: 386px;
}

.mockup-time--compact-12 {
    top: 84px;
}

.mockup-time--compact-14 {
    top: 176px;
}

.mockup-gridline--1 {
    top: 34px;
}

.mockup-gridline--2 {
    top: 62px;
}

.mockup-gridline--3 {
    top: 132px;
}

.mockup-gridline--4 {
    top: 202px;
}

.mockup-gridline--5 {
    top: 322px;
}

.mockup-gridline--6 {
    top: 392px;
}

.mockup-gridline--7 {
    top: 482px;
}

.mockup-gridline--compact-1 {
    top: 108px;
}

.mockup-gridline--compact-2 {
    top: 200px;
}

.mockup-gridline.is-dashed {
    background: none;
    border-top: 1px dashed rgba(23, 52, 94, 0.18);
}

.mockup-nowline {
    position: absolute;
    left: 82px;
    right: 18px;
    height: 2px;
    background: #ff7e74;
}

.mockup-nowline--current {
    top: 174px;
}

.mockup-nowline span {
    position: absolute;
    left: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: #ff7e74;
}

.mockup-event {
    position: absolute;
    left: 86px;
    right: 26px;
    padding: 14px 18px;
    border-radius: 22px;
    border: none;
    background: linear-gradient(180deg, rgba(238, 249, 255, 0.9), rgba(240, 249, 252, 0.92));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 8px 18px rgba(23, 52, 94, 0.08);
}

.mockup-event--one {
    top: 186px;
}

.mockup-event--two {
    top: 302px;
}

.mockup-event--compact-one {
    top: 118px;
}

.mockup-event--compact-two {
    top: 238px;
}

.mockup-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mockup-event-title {
    color: var(--schedule-text);
    font-size: 1rem;
    font-weight: 700;
}

.mockup-event-time {
    color: #405572;
    font-size: 0.92rem;
}

.mockup-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(221, 234, 255, 0.92);
    color: var(--schedule-accent);
    font-size: 0.88rem;
    font-weight: 700;
}

.mockup-chip.is-muted {
    background: rgba(240, 232, 244, 0.92);
    color: #5f5664;
}

.mockup-fab {
    position: absolute;
    right: 24px;
    bottom: 72px;
    width: 76px;
    height: 76px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(183, 211, 255, 0.95), rgba(165, 198, 255, 0.95));
    color: #163b8b;
    font-size: 3rem;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(23, 52, 94, 0.16);
}

.mockup-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px 16px;
    border-top: 1px solid rgba(23, 52, 94, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.mockup-footer span {
    color: #4a576d;
    font-size: 0.92rem;
    font-weight: 600;
}

.mockup-footer span.is-primary {
    color: var(--schedule-text);
}

.ui-annotation {
    position: absolute;
    z-index: 5;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 52, 94, 0.08);
    box-shadow: 0 18px 32px rgba(23, 52, 94, 0.12);
    max-width: 220px;
}

.ui-annotation--top {
    left: 18px;
    top: 92px;
}

.ui-annotation--middle {
    right: 12px;
    top: 214px;
}

.ui-annotation--bottom {
    left: 26px;
    bottom: 108px;
}

.ui-pill {
    display: inline-flex;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(45, 103, 246, 0.08);
    color: #446385;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 20px;
    align-items: center;
}

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

.anatomy-card {
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(23, 52, 94, 0.08);
}

.anatomy-card strong {
    display: block;
    margin-bottom: 0.32rem;
    color: var(--schedule-text);
    font-size: 1rem;
}

.anatomy-card p {
    margin: 0;
    color: var(--schedule-muted);
}

.schedule-home .feature-grid {
    gap: 14px;
}

.schedule-home .feature-card {
    padding: 22px;
}

.schedule-home .workflow-shell {
    gap: 18px;
}

.schedule-home .workflow-toggle-row {
    gap: 8px;
}

.schedule-home .workflow-toggle {
    padding: 0.78rem 0.95rem;
}

.schedule-home .article-highlight {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
}

.schedule-home .article-highlight .article-preview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 255, 0.88));
}

.schedule-home .testimonial-grid {
    gap: 14px;
}

.schedule-home .testimonial-card p {
    margin: 0;
}

.schedule-home .faq-grid {
    gap: 12px;
}

.schedule-article .page-main {
    padding-top: 132px;
}

.schedule-article .page-hero,
.schedule-article .page-content-card,
.schedule-article .page-aside,
.schedule-article .task-card,
.schedule-article .compare-fit-card,
.schedule-article .checker-feature,
.schedule-article .quick-answer,
.schedule-article .step-card,
.schedule-article .legal-header,
.schedule-article .table-of-contents,
.schedule-article .legal-section,
.schedule-article .legal-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
    border: 1px solid rgba(23, 52, 94, 0.08);
    box-shadow: var(--schedule-shadow-soft);
    backdrop-filter: blur(12px);
}

.schedule-article .page-hero {
    padding: 30px;
    border-radius: 32px;
    margin-bottom: 20px;
}

.schedule-article .page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
    gap: 18px;
    align-items: start;
}

.schedule-article .page-content-card,
.schedule-article .page-aside {
    padding: 26px;
    border-radius: 28px;
}

.schedule-article .page-aside {
    position: sticky;
    top: 110px;
}

.schedule-article .task-grid,
.schedule-article .checker-grid,
.schedule-article .compare-fit-grid,
.schedule-article .step-grid,
.schedule-article .quick-answers {
    display: grid;
    gap: 14px;
}

.schedule-article .task-grid,
.schedule-article .checker-grid,
.schedule-article .compare-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.2rem 0 1.6rem;
}

.schedule-article .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.2rem 0 1.6rem;
}

.schedule-article .quick-answers {
    margin-top: 1.1rem;
}

.schedule-article .task-card,
.schedule-article .checker-feature,
.schedule-article .compare-fit-card,
.schedule-article .quick-answer,
.schedule-article .step-card {
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
}

.schedule-article .task-card strong,
.schedule-article .checker-feature strong,
.schedule-article .compare-fit-card strong,
.schedule-article .quick-answer strong,
.schedule-article .step-card strong {
    display: block;
    margin-bottom: 0.38rem;
    font-size: 1rem;
    color: var(--schedule-text);
}

.schedule-article .task-card p,
.schedule-article .checker-feature p,
.schedule-article .compare-fit-card p,
.schedule-article .quick-answer p,
.schedule-article .step-card p {
    margin: 0;
    color: var(--schedule-muted);
}

.schedule-article .step-number-badge {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(45, 103, 246, 0.1);
    color: var(--schedule-accent);
    font-weight: 700;
}

.schedule-article .aside-links {
    display: grid;
    gap: 10px;
    margin-top: 1rem;
}

.schedule-article .aside-links a {
    text-decoration: none;
    color: var(--schedule-muted);
}

.schedule-article .aside-links a:hover {
    color: var(--schedule-text);
}

.schedule-article .inline-note {
    margin: 1.3rem 0;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(236, 245, 255, 0.92);
    border: 1px solid rgba(45, 103, 246, 0.12);
}

.schedule-article .comparison-table-modern {
    width: 100%;
    border-collapse: collapse;
    margin: 1.3rem 0 1.7rem;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.schedule-article .comparison-table-modern th,
.schedule-article .comparison-table-modern td {
    padding: 1rem 0.95rem;
    border-bottom: 1px solid rgba(23, 52, 94, 0.08);
    text-align: left;
    vertical-align: top;
}

.schedule-article .comparison-table-modern th {
    color: var(--schedule-text);
    background: rgba(45, 103, 246, 0.06);
}

.schedule-article .comparison-table-modern td strong {
    display: inline;
}

.schedule-article .legal-page {
    max-width: 1200px;
    padding-top: 132px;
}

.schedule-article .legal-header,
.schedule-article .table-of-contents,
.schedule-article .legal-section,
.schedule-article .legal-footer {
    padding: 26px;
    border-radius: 28px;
}

.schedule-article .table-of-contents,
.schedule-article .legal-section,
.schedule-article .legal-footer {
    margin-bottom: 18px;
}

.schedule-article .legal-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    color: var(--schedule-text);
}

.schedule-article .legal-section ul,
.schedule-article .legal-section ol {
    display: grid;
    gap: 10px;
}

.schedule-article .blog-article {
    padding-top: 132px;
}

.schedule-article .blog-article article {
    display: grid;
    gap: 18px;
}

.schedule-article .blog-article .article-header,
.schedule-article .blog-article .article-content {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
    border: 1px solid rgba(23, 52, 94, 0.08);
    box-shadow: var(--schedule-shadow-soft);
}

.schedule-article .blog-article .article-featured-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(23, 52, 94, 0.08);
    box-shadow: var(--schedule-shadow-soft);
}

.schedule-article .blog-article .article-content h2,
.schedule-article .blog-article .article-content h3 {
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
}

.schedule-article .blog-article .article-content ul,
.schedule-article .blog-article .article-content ol {
    display: grid;
    gap: 10px;
    margin: 1rem 0 1.2rem 1.2rem;
}

.schedule-article .blog-article .cta-section {
    margin-top: 1.6rem;
    padding: 1.25rem 1.3rem;
    border-radius: 22px;
    background: rgba(235, 245, 255, 0.9);
    border: 1px solid rgba(45, 103, 246, 0.12);
}

@media (max-width: 1080px) {
    .schedule-home .hero-proof-grid,
    .anatomy-grid,
    .schedule-article .page-layout {
        grid-template-columns: 1fr;
    }

    .schedule-home .hero-stage {
        min-height: auto;
        padding-bottom: 170px;
    }

    .schedule-home .hero-note--timeline {
        left: 18px;
        top: auto;
        bottom: 126px;
    }

    .schedule-home .hero-note--chip {
        right: 18px;
        top: 42px;
    }

    .schedule-home .hero-note--quick-add {
        right: 22px;
        bottom: 32px;
    }

    .schedule-article .page-aside {
        position: static;
    }
}

@media (max-width: 960px) {
    .schedule-home .hero-grid {
        grid-template-columns: 1fr;
    }

    .schedule-home .hero-stage {
        min-height: auto;
    }

    .schedule-home .product-mockup {
        width: 100%;
    }

    .schedule-article .task-grid,
    .schedule-article .checker-grid,
    .schedule-article .compare-fit-grid,
    .schedule-article .step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .schedule-home .hero-copy,
    .schedule-home .hero-stage,
    .schedule-home .workflow-shell,
    .schedule-home .article-highlight,
    .schedule-home .installation-panel,
    .schedule-blog .blog-hero,
    .schedule-blog .featured-insight,
    .schedule-blog .blog-post-content,
    .schedule-article .page-hero,
    .schedule-article .page-content-card,
    .schedule-article .page-aside,
    .schedule-article .blog-article .article-header,
    .schedule-article .blog-article .article-content,
    .schedule-article .legal-header,
    .schedule-article .table-of-contents,
    .schedule-article .legal-section,
    .schedule-article .legal-footer {
        padding: 22px;
    }

    .mockup-shell {
        min-height: 560px;
    }

    .mockup-shell.is-short {
        min-height: 500px;
    }

    .mockup-topbar {
        padding: 14px 14px 10px;
    }

    .mockup-nav {
        padding: 12px 14px 6px;
    }

    .mockup-days {
        gap: 4px;
        padding: 12px 10px 14px;
    }

    .mockup-day {
        min-width: 46px;
        font-size: 0.84rem;
    }

    .mockup-day strong {
        font-size: 1.2rem;
    }

    .mockup-view-pill {
        padding: 0.7rem 0.8rem;
        font-size: 0.92rem;
    }

    .mockup-timeline {
        min-height: 380px;
        padding-left: 62px;
    }

    .mockup-gridline,
    .mockup-nowline {
        left: 62px;
    }

    .mockup-event {
        left: 66px;
        right: 14px;
        padding: 12px 14px;
    }

    .mockup-event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mockup-fab {
        width: 64px;
        height: 64px;
        right: 16px;
        bottom: 70px;
        font-size: 2.5rem;
    }

    .mockup-footer {
        gap: 8px;
        font-size: 0.82rem;
        padding: 12px 14px 14px;
    }

    .schedule-home .hero-note,
    .ui-annotation {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .schedule-home .hero-stage {
        padding-bottom: 22px;
    }

    .schedule-home .hero-proof-grid {
        grid-template-columns: 1fr;
    }
}
