/* スティッキーヘッダー */
.hacktsu-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

.sticky-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sticky-logo-img {
    height: 32px;
    width: auto;
}

.sticky-logo:hover {
    opacity: 0.8;
}

.sticky-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hacktsu-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 12px 30px 12px;
    font-family: inherit;
    background: radial-gradient(circle at top left, #fff1f2 0%, #f0f9ff 35%, #ffffff 70%);
    border-radius: 28px
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    padding: 40px 0;
    gap: 32px
}

.hero-content {
    max-width: 640px
}

.hero-tagline {
    font-size: .95rem;
    color: #ff6b6b;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 12px
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a2e;
    margin-bottom: 18px
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-note {
    font-size: .85rem;
    color: #888;
    margin-top: 10px
}

.hero-login-link {
    font-size: .9rem;
    color: #666;
    margin-top: 8px;
}

.hero-login-link a {
    color: #ff6b6b;
    text-decoration: underline;
    font-weight: 600;
}

.hero-login-link a:hover {
    color: #e55a5a;
}

/* デモ結果CTAの強化 */
.result-cta .cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.result-cta .cta-sub {
    font-size: .85rem;
    color: #666;
    margin-top: 12px;
}

.result-cta .cta-sub a {
    color: #ff6b6b;
    text-decoration: underline;
    font-weight: 600;
}

.result-cta .cta-sub a:hover {
    color: #e55a5a;
}

.how-section,
.for-who-section,
.pricing-section {
    padding: 48px 0
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a2e;
    text-align: center
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap
}

.step-card {
    background: #fff;
    border: 2px solid #f8d1d1;
    border-radius: 18px;
    padding: 28px 24px;
    width: 220px;
    text-align: center;
    position: relative;
    transition: .3s
}

.step-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(255, 107, 107, .18)
}

.step-icon {
    font-size: 40px;
    margin-bottom: 12px
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.step-arrow {
    font-size: 1.5rem;
    color: #ff6b6b
}

.persona-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.persona-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    width: 300px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05)
}

.persona-icon {
    font-size: 38px;
    margin-bottom: 12px
}

.persona-card ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.persona-card li {
    padding: 6px 0;
    color: #555
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    width: 280px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    position: relative
}

.pricing-card.featured {
    border: 2px solid #ff6b6b;
    transform: scale(1.03)
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    color: #fff;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: .8rem;
    font-weight: 600
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e
}

.plan-price {
    margin-bottom: 16px
}

.price-value {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.price-unit {
    font-size: .9rem;
    color: #888
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left
}

.plan-features li {
    padding: 6px 0;
    color: #555
}

.final-cta {
    padding: 48px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    text-align: center;
    color: #fff;
    border-radius: 20px
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 10px
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 18px;
    opacity: .9
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1
}

.hero-video-frame {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 16px 40px rgba(255, 107, 107, .18);
    max-width: 420px;
    width: 100%
}

.hero-video {
    width: 100%;
    border-radius: 16px;
    display: block
}

.video-caption {
    text-align: center;
    font-size: .85rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 10px
}

.pain-points {
    background: linear-gradient(to bottom, #fff, #fff4f4);
    padding: 56px 20px;
    text-align: center;
    border-radius: 24px
}

.pain-title {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 28px
}

.pain-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.pain-card {
    background: #fff;
    border: 2px solid #ffe0e0;
    border-radius: 16px;
    padding: 22px;
    width: 210px;
    transition: .3s
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: #ff6b6b;
    box-shadow: 0 14px 30px rgba(255, 107, 107, .18)
}

.pain-icon {
    font-size: 44px;
    margin-bottom: 10px
}

.pain-solution {
    margin-top: 12px
}

.solution-arrow {
    font-size: 2rem;
    color: #ff6b6b;
    margin: 12px 0
}

.solution-text {
    font-size: 1.1rem;
    color: #1a1a2e
}

.solution-text strong {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.demo-experience {
    background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
    padding: 64px 20px;
    margin: 48px 0;
    border-radius: 24px
}

.demo-desc {
    text-align: center;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 28px
}

.demo-container {
    max-width: 760px;
    margin: 0 auto
}

.demo-input-area {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
}

.demo-input-area h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: #1a1a2e
}

#demo-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: inherit;
    resize: vertical
}

#demo-input:focus {
    outline: none;
    border-color: #667eea
}

.demo-result {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 22px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, .15)
}

.result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.result-icon {
    font-size: 30px
}

.result-content {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.strength-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: .9rem
}

.result-insight {
    background: #f8faff;
    padding: 14px;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin-bottom: 18px;
    line-height: 1.6
}

.result-cta {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8
}

.cta-text {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e
}

.before-after {
    padding: 60px 20px
}

.comparison-table {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto
}

.comparison-col {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.comparison-col.after {
    border: 3px solid #667eea
}

.col-header {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a2e
}

.col-header.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.comparison-col li {
    padding: 8px 0;
    line-height: 1.6
}

.comparison-arrow {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: 700
}

.social-proof {
    padding: 48px 20px;
    background: #f8faff;
    text-align: center;
    border-radius: 24px
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 26px
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-label {
    font-size: .9rem;
    color: #888;
    margin-top: 6px
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.trust-badge {
    background: #fff;
    border-radius: 14px;
    padding: 10px 18px;
    font-size: .9rem;
    color: #555;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .04)
}

.final-cta-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    border-radius: 24px;
    text-align: center;
    color: #fff
}

.cta-subtext {
    font-size: 1rem;
    opacity: .9;
    margin-bottom: 22px
}

.quick-register-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 20px
}

.quick-register-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 1rem
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .9rem;
    opacity: .9
}


.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 107, 107, .28)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b
}

.btn-ghost:hover {
    background: #ff6b6b;
    color: #fff
}

.btn-secondary {
    background: #fff;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #fff5f5;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 12px;
    font-size: .85rem
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem
}

@media (max-width:768px) {
    .hacktsu-sticky-header {
        padding: 6px 10px;
    }

    .sticky-logo-img {
        height: 26px;
    }

    .hacktsu-top {
        padding: 45px 6px 16px 6px;
        border-radius: 16px;
    }

    /* Hero余白削減 */
    .hero {
        min-height: auto;
        padding: 16px 0;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .hero-tagline {
        font-size: .85rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: .95rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn-lg {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-note {
        font-size: .8rem;
        margin-top: 8px;
    }

    .hero-login-link {
        font-size: .85rem;
        margin-top: 6px;
    }

    .hero-video-frame {
        max-width: 100%
    }

    /* セクション間余白削減 */
    .how-section,
    .for-who-section,
    .pricing-section {
        padding: 24px 0;
    }

    .pain-points,
    .before-after,
    .demo-experience,
    .final-cta-enhanced {
        padding: 24px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .pain-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    /* ステップカード */
    .steps-container {
        flex-direction: column;
        gap: 16px;
    }

    .step-card {
        padding: 18px 14px;
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
    }

    .step-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .step-card p {
        font-size: .9rem;
    }

    .step-arrow {
        display: none
    }

    /* ペインカード */
    .pain-cards {
        gap: 12px;
    }

    .pain-card {
        padding: 14px 10px;
    }

    .pain-icon {
        font-size: 28px;
    }

    .pain-card p {
        font-size: .9rem;
    }

    /* ペルソナカード */
    .persona-cards {
        gap: 16px;
    }

    .persona-card {
        padding: 18px 14px;
    }

    /* 料金カード */
    .pricing-cards {
        gap: 16px;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-card.featured {
        transform: none
    }

    /* 比較表 */
    .comparison-table {
        gap: 12px;
    }

    .comparison-arrow {
        transform: rotate(90deg)
    }

    /* デモ体験 */
    .demo-container {
        padding: 16px;
    }

    .demo-input-area h3 {
        font-size: 1rem;
    }

    /* 最終CTA */
    .final-cta-enhanced h2 {
        font-size: 1.3rem;
    }

    .quick-register-form {
        flex-direction: column
    }

    .result-cta .btn-lg {
        width: 100%;
        max-width: 100%;
    }
}

/* === LINE連携メリットセクション === */
.line-benefit-section {
    padding: 48px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #eff6ff 100%);
    border-radius: 20px;
    margin: 0 12px 24px;
}

.line-benefit-section .section-title {
    margin-bottom: 8px;
}

.line-benefit-section .section-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 28px;
}

.line-benefit-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.line-benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    width: 220px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.line-benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.line-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.line-benefit-card p {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.line-benefit-cta {
    margin-top: 8px;
}

.btn-line-landing {
    display: inline-block;
    background: #06c755;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-line-landing:hover {
    background: #05a847;
    color: #fff;
}

.line-benefit-note {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .line-benefit-cards {
        gap: 12px;
    }

    .line-benefit-card {
        width: 100%;
        max-width: 300px;
        padding: 18px 14px;
    }

    .line-benefit-section {
        padding: 32px 16px;
        margin: 0 8px 16px;
    }
}

/* ============================
 * Facility Landing (Scoped)
 * ============================ */
.hacktsu-sticky-header--facility {
    border-bottom: 1px solid #e5e7eb;
}

.hacktsu-top--facility {
    background: radial-gradient(circle at top left, #eef6ff 0%, #f8fafc 45%, #ffffff 75%);
}

.hacktsu-top--facility .hero--facility {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 40px 0 28px;
}

.hacktsu-top--facility .hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: center;
}

.hacktsu-top--facility .hero-left {
    min-width: 0;
}

.hacktsu-top--facility .hero-right {
    min-width: 0;
}

.hacktsu-top--facility .hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid #99f6e4;
    margin-bottom: 10px;
}

.hacktsu-top--facility .hero-title {
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    line-height: 1.3;
    margin-bottom: 14px;
    color: #0f172a;
}

.hacktsu-top--facility .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 14px;
}

.hacktsu-top--facility .hero-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 8px;
}

.hacktsu-top--facility .hero-trust .trust-item {
    font-size: 0.78rem;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 5px 10px;
    background: #fff;
}

.hacktsu-top--facility .hero-disclaimer {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.6;
    color: #64748b;
}

.hacktsu-top--facility .hero-shot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hacktsu-top--facility .hero-shot-grid .shot:last-child {
    grid-column: 1 / -1;
}

.hacktsu-top--facility .shot,
.hacktsu-top--facility .ss {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.hacktsu-top--facility .facility-shot-trigger {
    display: block;
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    text-align: left;
}

.hacktsu-top--facility .facility-shot-trigger:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}

.hacktsu-top--facility .shot img,
.hacktsu-top--facility .ss img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hacktsu-top--facility .shot figcaption,
.hacktsu-top--facility .ss figcaption {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #334155;
    padding: 10px;
    background: #f8fafc;
}

.hacktsu-top--facility .ss-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background:
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
}

.hacktsu-top--facility .is-placeholder {
    border-style: dashed;
    border-color: #94a3b8;
}

.hacktsu-top--facility .facility-pain-solution,
.hacktsu-top--facility .how-it-works,
.hacktsu-top--facility .screenshots-section,
.hacktsu-top--facility .facility-faq,
.hacktsu-top--facility .pricing-section {
    padding: 44px 0;
}

.hacktsu-top--facility .pain-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hacktsu-top--facility .ps-card {
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 18px 18px 14px;
}

.hacktsu-top--facility .ps-card--pain {
    background: #fff7ed;
    border-color: #fed7aa;
}

.hacktsu-top--facility .ps-card--solution {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.hacktsu-top--facility .ps-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.hacktsu-top--facility .ps-card ul {
    margin: 0;
    padding-left: 18px;
}

.hacktsu-top--facility .ps-card li {
    margin-bottom: 8px;
    color: #334155;
    line-height: 1.6;
}

.hacktsu-top--facility .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hacktsu-top--facility .step {
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.hacktsu-top--facility .step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    background: #2563eb;
    color: #fff;
    margin-bottom: 8px;
}

.hacktsu-top--facility .step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #0f172a;
}

.hacktsu-top--facility .step p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hacktsu-top--facility .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hacktsu-top--facility .facility-check-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.hacktsu-top--facility .pricing-cards--single {
    justify-content: center;
}

.hacktsu-top--facility .pricing-cards--single .pricing-card {
    width: min(420px, 100%);
}

.hacktsu-top--facility .plan-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #64748b;
}

.hacktsu-top--facility .facility-faq .faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.hacktsu-top--facility .facility-faq .faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}

.hacktsu-top--facility .facility-faq .faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
}

.hacktsu-top--facility .facility-faq .faq-body {
    margin-top: 8px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.65;
}

.hacktsu-top--facility .final-cta-enhanced--facility {
    margin-top: 10px;
}

.hacktsu-top--facility .final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

body.hacktsu-facility-shot-modal-open {
    overflow: hidden;
}

.hacktsu-top-facility-page .facility-shot-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hacktsu-top-facility-page .facility-shot-modal.is-open {
    display: flex;
}

.hacktsu-top-facility-page .facility-shot-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.76);
}

.hacktsu-top-facility-page .facility-shot-modal-panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 40px);
    background: #0f172a;
    border-radius: 14px;
    overflow: auto;
    padding: 12px 12px 8px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
}

.hacktsu-top-facility-page .facility-shot-modal-close {
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.hacktsu-top-facility-page .facility-shot-modal-image {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.hacktsu-top-facility-page .facility-shot-modal-caption {
    margin: 10px 2px 4px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hacktsu-top--facility .hero--facility {
        padding: 20px 0 14px;
    }

    .hacktsu-top--facility .hero-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hacktsu-top--facility .hero-shot-grid {
        grid-template-columns: 1fr;
    }

    .hacktsu-top--facility .hero-shot-grid .shot:last-child {
        grid-column: auto;
    }

    .hacktsu-top--facility .facility-pain-solution,
    .hacktsu-top--facility .how-it-works,
    .hacktsu-top--facility .screenshots-section,
    .hacktsu-top--facility .facility-faq,
    .hacktsu-top--facility .pricing-section {
        padding: 24px 0;
    }

    .hacktsu-top--facility .pain-solution-grid,
    .hacktsu-top--facility .steps,
    .hacktsu-top--facility .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .hacktsu-top--facility .hero-cta .btn-lg,
    .hacktsu-top--facility .final-cta-actions .btn-lg {
        width: 100%;
        max-width: 100%;
    }

    .hacktsu-top--facility .hero-subtitle {
        font-size: 0.93rem;
        line-height: 1.7;
    }

    .hacktsu-top--facility .section-title {
        font-size: 1.32rem;
    }

    .hacktsu-top-facility-page .facility-shot-modal {
        padding: 12px;
    }

    .hacktsu-top-facility-page .facility-shot-modal-panel {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 10px 10px 8px;
    }

    .hacktsu-top-facility-page .facility-shot-modal-image {
        max-height: calc(100vh - 140px);
    }
}

.final-cta-enhanced h2,
.final-cta-enhanced h2::before,
.final-cta-enhanced h2::after {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
}
