@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #0ea5e9 100%);
    --fg-primary: #0f172a;
    --fg-secondary: #475569;
    --accent: #f97316;
    --accent-secondary: #38bdf8;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.18);
    --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Noto Sans JP', sans-serif;
    background: var(--bg-body);
    color: var(--fg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, all 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--fg-secondary);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--fg-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-login {
    background: var(--bg-gradient);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-login::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--fg-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* デスクトップでメニューが狭くなった場合の対策 */
@media (max-width: 1000px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .nav-login {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
                                .hero-meta,
                                .cta-buttons {
                                    justify-content: center;
                                }
}

/* より小さい幅でのメニュー調整 */
@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .nav-login {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem;
    }
}

/* 追加：確実に横スクロールを防ぐ */
html {
    overflow-x: hidden;
}

/* デスクトップでは2つ目のhero-metaを非表示 */
.hero-meta-mobile {
    display: none;
}

/* 大画面でのhero-meta位置調整 */
@media (min-width: 799px) {
    .hero-meta-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 1200px;
        margin: 2rem auto 0;
        padding: 0 1.5rem;
        justify-content: flex-start;
    }

    .hero-copy .hero-meta {
        display: none;
    }
}

/* 798px以下での表示切り替え */
@media (max-width: 798px) {
    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-copy {
        order: 1;
    }

    /* hero-copy内の元のhero-metaを非表示 */
    .hero-copy .hero-meta {
        display: none;
    }

    .console-scene {
        order: 2;
        margin: 2rem 0;
        align-self: center;
        transform: scale(0.8);
    }

    /* console-sceneの下に表示される2つ目のhero-meta */
    .hero-meta-mobile {
        display: block;
        order: 3;
        margin-top: 2rem;
    }
}

/* 1000px以下でHEROアプリ画面をタブレット状態に */
@media (max-width: 1000px) {
    .console-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        padding: 1.5rem;
        font-size: 0.85rem;
    }

    .sync-status {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .sync-circle {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }

    .sync-card {
        grid-column: 1;
        grid-row: 2;
        padding: 0.8rem;
        text-align: center;
    }

    .auto-sync-row {
        grid-column: 1;
        grid-row: 3;
        padding: 1rem;
        font-size: 0.75rem;
    }

    .sync-feed {
        grid-column: 2;
        grid-row: 1 / span 3;
        display: grid;
        gap: 0.6rem;
        align-content: start;
    }

    .feed-item {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 280px;
        height: calc(100vh - 70px);
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        padding: 0 2rem;
        margin: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }

    .nav-login {
        margin: 1rem 2rem;
        text-align: center;
        border-radius: var(--radius-sm);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
                                .hero-meta,
                                .cta-buttons {
                                    justify-content: center;
                                }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.brand-logo {
    height: 14px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--fg-secondary);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--fg-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-login {
    background: var(--bg-gradient);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-login::after {
    display: none;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    color: #f8fafc;
    padding: clamp(7rem, 8vw, 8rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 5vw, 5rem);
}

.touchdeorder-promo {
    background: var(--bg-surface);
    padding: clamp(1rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2rem);
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.touchdeorder-link {
    display: inline-flex;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    padding: clamp(1rem, 2.8vw, 1.8rem) clamp(1.4rem, 3.5vw, 2.4rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    color: #0f172a;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    width: min(100%, 960px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.touchdeorder-image {
    max-height: 140px;
    width: auto;
}

.touchdeorder-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.touchdeorder-heading {
    display: inline-block;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.05rem 0.2rem;
    border-radius: 6px;
    background: linear-gradient(transparent 52%, rgba(253, 224, 33, 0.82) 52%);
}
.touch{
    rotate: 10deg;
    font-size: 120%;
    font-weight: 700;
    font-style: italic;
}

.touchdeorder-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight:900;
}

.touchdeorder-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.32);
}

@media (max-width: 640px) {
    .touchdeorder-link {
        flex-direction: column;
        text-align: center;
    }

    .touchdeorder-price {
        margin: 0 auto;
    }

    .touchdeorder-image {
        max-height: 120px;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 1.4rem;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.75;
}

.hero-title {
    font-size: clamp(2.0rem, 3.1vw, 3.4rem);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    opacity: 0.9;
}
                .meta-card {
                    background: rgba(248, 250, 252, 0.12);
                    padding: 1rem 1.3rem;
                    border-radius: 14px;
                    border: 1px solid rgba(226, 232, 240, 0.15);
                    min-width: 160px;
                }
                                                .meta-label {
                                                    font-size: 0.75rem;
                                                    text-transform: uppercase;
                                                    letter-spacing: 0.18em;
                                                    opacity: 0.7;
                                                }
                        
                                                .meta-value {
                                                    font-size: 1.4rem;
                                                    font-weight: 600;
                                                    margin-top: 0.3rem;
                                                    color: #ffffff;
                                                }
                        
                                                .meta-card small {
                                                    display: block;
                                                    margin-top: 0.4rem;
                                                    font-size: 0.75rem;
                                                    opacity: 0.75;
                                                }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
                .hero-meta {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 1rem;
                    margin-top: 0.5rem;
                }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #fb7185, #f97316);
    color: #fff;
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.25);
    color: #fff;
    border: 1px solid rgba(248, 250, 252, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(15, 23, 42, 0.4);
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.hero-points li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.hero-points li::before {
    content: '•';
    color: var(--accent-secondary);
    font-weight: 700;
}

.hero-visual {
    background: rgba(248, 250, 252, 0.1);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.15);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.1);
    color: #1d4ed8;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}
.section-title-w {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}
.section-subtitle {
    color: var(--fg-secondary);
}

.feature-section {
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
    background-image: url(src/toiawase.jpg);
    background-size: cover;
}

.feature-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    display: grid;
    gap: 1.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.feature-icon {
    width: 48px;
    height: 48px;
    filter: invert(25%) sepia(86%) saturate(3427%) hue-rotate(205deg) brightness(98%) contrast(101%);
}

.benefit-section {
    background: #0f172a;
    color: #e2e8f0;
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.benefit-section .section-subtitle {
    color: rgba(226, 232, 240, 0.75);
}

.benefit-table {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.benefit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.6rem;
}

.benefit-row img {
    width: 28px;
    height: 28px;
    margin-right: 0.6rem;
}

.benefit-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.benefit-value {
    font-size: 0.95rem;
}

.highlight {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.35);
}

.positive {
    color: #38bdf8;
}

.workflow-section {
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.workflow-steps {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.workflow-steps li {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.workflow-steps img {
    width: 40px;
    height: 40px;
    filter: invert(29%) sepia(79%) saturate(3544%) hue-rotate(203deg) brightness(95%) contrast(102%);
}

.cta-section {
    padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.monitor-campaign {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    color:#ddd;
}

.monitor-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent);
}

.monitor-campaign::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.campaign-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    z-index: 1;
}

.badge-text {
    font-size: 0.75rem;
}

.badge-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.campaign-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.campaign-eyebrow {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 1rem;
}

.campaign-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
    letter-spacing: 0.02em;
}

.campaign-benefits {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
}

.bonus-card::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.bonus-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.benefit-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.bonus-card .benefit-number {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-size: 1.2rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.price-strike {
    text-decoration: line-through;
    color: #64748b;
    margin-right: 0.4rem;
}

.price-highlight {
    color: #60a5fa;
    font-weight: 600;
}

.campaign-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
    position: relative;
    z-index: 1;
}

.btn-monitor-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-monitor-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-monitor-primary:hover::before {
    left: 100%;
}

.btn-monitor-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-monitor-secondary {
    background: transparent;
    color: #94a3b8;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-monitor-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.5);
    color: #f1f5f9;
    transform: translateY(-2px);
}

.campaign-note {
    text-align: center;
    position: relative;
    z-index: 1;
}

.campaign-note p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(29, 78, 216, 0.9));
    color: #fff;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.cta-inner figure {
    background: rgba(248, 250, 252, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.cta-copy {
    display: grid;
    gap: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: var(--fg-secondary);
    font-size: 0.9rem;
}

/* Console Mockup Animation */
.console-scene {
    perspective: 1600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.console-floating {
    position: relative;
    transform-style: preserve-3d;
    animation: consoleFloat 18s ease-in-out infinite;
    transition: transform 0.8s ease;
}

.console-floating::after {
    content: '';
    position: absolute;
    inset: auto;
    bottom: -80px;
    left: 10%;
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
    filter: blur(20px);
    z-index: 0;
    opacity: 0.8;
}

@keyframes consoleFloat {
    0% {
        transform: translate3d(0, -8px, 0) rotateX(16deg) rotateY(-18deg) rotateZ(0deg);
    }
    25% {
        transform: translate3d(0, 6px, 25px) rotateX(12deg) rotateY(-4deg) rotateZ(2deg);
    }
    50% {
        transform: translate3d(0, -4px, 0) rotateX(10deg) rotateY(12deg) rotateZ(-2deg);
    }
    75% {
        transform: translate3d(0, 8px, -18px) rotateX(14deg) rotateY(-10deg) rotateZ(1deg);
    }
    100% {
        transform: translate3d(0, -8px, 0) rotateX(16deg) rotateY(-18deg) rotateZ(0deg);
    }
}

.console-scene:hover .console-floating {
    animation: none;
    transform: translate3d(0, -6px, 30px) rotateX(8deg) rotateY(-2deg) rotateZ(0deg);
}

.console-mockup {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 420px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.console-scene:hover .console-mockup {
    transform: scale(1.02);
}

.console-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px 16px 0px 0px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.console-chip {
    background: rgba(15, 23, 42, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.console-body {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-radius: 0 0 16px 16px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

@media (max-width: 480px) {
    .console-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.4rem;
        padding: 1rem;
        font-size: 0.7rem;
    }

    .sync-status {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .sync-circle {
        width: 50px;
        height: 50px;
        font-size: 0.55rem;
    }

    .sync-card {
        grid-column: 1;
        grid-row: 2;
        padding: 0.3rem;
        text-align: center;
        background: #f8fafc;
        border-radius: 12px;
        box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.3);
    }

    .sync-time {
        font-size: 0.7rem;
    }

    .sync-label {
        font-size: 0.55rem;
    }

    .sync-card small {
        font-size: 0.55rem;
    }

    .auto-sync-row {
        grid-column: 1;
        grid-row: 3;
        padding: 1rem;
        font-size: 0.65rem;
    }

    .auto-sync-label {
        font-size: 0.65rem;
    }

    .auto-sync-time {
        display: flex;
        align-items: center;
    }

    .auto-sync-time span:first-child {
        display: none;
    }

    .status-pill {
        padding: 0.1rem 0.4rem;
        font-size: 0.55rem;
    }

    .sync-feed {
        grid-column: 2;
        grid-row: 1 / -1;
        gap: 0.4rem;
        display: grid;
        align-content: start;
    }

    .feed-item {
        padding: 0.4rem;
        font-size: 0.6rem;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .feed-text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .feed-text strong {
        font-size: 0.6rem;
        color: #0f172a;
        font-weight: 600;
    }

    .feed-text small {
        font-size: 0.42rem;
        color: #64748b;
    }

    .feed-content div:first-child {
        font-size: 0.65rem;
    }

    .feed-content div:last-child {
        font-size: 0.5rem;
    }

    .feed-check {
        font-size: 0.8rem;
        margin-left: auto;
    }

    .feed-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.3rem;
        margin-right: 0.4rem;
    }

    .feed-status {
        font-size: 0.55rem;
    }
}

.sync-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-circle {
    width: 120px;
    height: 120px;
    background: conic-gradient(from 180deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    animation: consolePulse 2.2s infinite ease-in-out;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
}

.sync-circle div {
    text-align: center;
    letter-spacing: 0.08em;
}

@keyframes consolePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.sync-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.sync-card {
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.3);
}

.sync-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
}

.sync-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.auto-sync-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0.3rem 0.9rem 0.7rem;
    background: #e2e8f0;
    border-radius: 12px;
}

.auto-sync-label {
    font-weight: 600;
    color: #0f172a;
}

.auto-sync-time {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.status-pill {
    background: #22c55e;
    color: white;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sync-feed {
    display: grid;
    gap: 0.8rem;
}

.feed-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}


.feed-badge {
    background: #1d4ed8;
    color: white;
    padding: 0.14rem 0.34rem;
    border-radius: 8px;
    font-size: 0.44rem;
    font-weight: 600;
    margin-right: 0.3rem;
}

.feed-check {
    color: #22c55e;
    font-size: 1rem;
    font-weight: 700;
    margin-left: auto;
}

/* Syncless Brand Title */
.brand-wordmark {
    font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #f8fafc, #c4e1fb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    
}
.brand-mark {
height: 44px;
width: auto;
display: inline-flex;
align-items: center;
margin: 15px 20px;
opacity: 0.6;
}

.brand-wordmark::before,
.brand-wordmark::after {
    content: '◦';
    font-size: 0.75em;
    opacity: 0.6;
}

/* Sync Demo Animation */
.sync-demo-section {
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2e 100%);
}

.sync-demo-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.sync-demo-copy {
    display: grid;
    gap: 1.2rem;
}

.sync-demo-copy h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
}

.sync-demo-copy p {
    color: #e2e8f0;
}

.sync-demo-copy .section-eyebrow {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.sync-trigger {
    width: fit-content;
    padding: 0.85rem 2.1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #fb7185, #f97316);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sync-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(249, 115, 22, 0.38);
}

.sync-trigger:active {
    transform: translateY(0);
}

/* 新しいアニメーション */
.sync-animation-container {
    position: relative;
    width: min(600px, 90vw);
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid #333;
}

.app-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.syncless-app {
    width: 180px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.syncless-app.multi-view {
    left: 25%;
}

.app-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    padding: 8px 8px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.app-logo {
    height: 10px;
    width: auto;
    filter: brightness(0) invert(1);
}

.app-content {
    padding: 15px 10px;
    height: calc(100% - 32px);
    position: relative;
}

.sync-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: greenGlow 2s ease-in-out infinite;
}

.sync-button.syncing {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes greenGlow {
    0% { box-shadow: 0 2px 10px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7); }
    100% { box-shadow: 0 2px 10px rgba(16, 185, 129, 0.5); }
}

.sync-info {
    position: absolute;
    bottom: 40px;
    left: 10px;
    right: 10px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.info-label {
    color: #666;
    margin-bottom: 2px;
}

.info-value {
    color: #333;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
}

.info-value.updating {
    color: #3b82f6;
    transform: scale(1.2);
    animation: countUpdate 0.6s ease;
}

@keyframes countUpdate {
    0% {
        transform: scale(1);
        color: #333;
    }
    50% {
        transform: scale(1.3);
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.2);
        border-radius: 4px;
        padding: 2px 4px;
    }
    100% {
        transform: scale(1);
        color: #3b82f6;
    }
}

.restaurant-board {
    width: 180px;
    height: 240px;
    top: 50%;
    left: -50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 11;
}

.restaurant-board.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    left: 75%;
}

.board-header {
    background: #ff6b6b;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

.reservation-list {
    padding: 10px;
    height: calc(100% - 32px);
}

.reservation-item {
    background: #f8f9fa;
    padding: 8px;
    margin: 6px 0;
    border-radius: 6px;
    border-left: 3px solid #ff6b6b;
    font-size: 11px;
}

.reservation-item.scan {
    animation: scanEffect 1s ease;
}

@keyframes scanEffect {
    0% { background: #f8f9fa; }
    50% { background: #ffe3e3; box-shadow: 0 0 15px rgba(255, 107, 107, 0.3); }
    100% { background: #f8f9fa; }
}

.reservation-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.platform {
    width: 150px;
    height: 120px;
    opacity: 0;
    transform: scale(0.8);
    z-index: 8;
}

.platform.show {
    opacity: 1;
    transform: scale(1);
}

.platform.tabelog {
    top: 20%;
    right: -50%;
}

.platform.tabelog.show {
    right: 10%;
}

.platform.gurunavi {
    bottom: 20%;
    right: -50%;
}

.platform.gurunavi.show {
    right: 10%;
}

.platform-header {
    padding: 6px 0;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 10px;
}

.tabelog .platform-header {
    background: #ff7a00;
}

.gurunavi .platform-header {
    background: #f03c42;
}

.reservation-grid {
    height: calc(100% - 24px);
    padding: 8px;
}

.grid-table {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 15px 1fr 1fr 1fr;
    grid-template-rows: 12px 1fr 1fr;
    font-size: 7px;
    border: 1px solid #ddd;
}

.grid-cell {
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.grid-header, .grid-row-header {
    background: #f5f5f5;
    font-weight: bold;
    color: #666;
}

.grid-cell.reserved {
    background: #ff4757;
    animation: fillCell 0.5s ease;
}

@keyframes fillCell {
    0% { background: white; }
    50% { background: #ff6b7d; }
    100% { background: #ff4757; }
}

.sync-complete {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    z-index: 200;
}

.sync-complete.show {
    opacity: 1;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4ecdc4;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px #4ecdc4;
    z-index: 100;
}

.data-particle.animate {
    animation: dataTransfer 1s ease forwards;
}

@keyframes dataTransfer {
    0% { opacity: 0; transform: scale(0); }
    20% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* セクション共通 */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(30, 64, 175, 0.1);
    color: #1d4ed8;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #1d4ed8, #3b82f6, transparent);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.section-title-w {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    color: #dde7ff;
    position: relative;
    padding-bottom: 1rem;
}

.section-title-w::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, #3b82f6, #60a5fa, transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

.section-title-w::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #475569;
    margin: 0 auto 3.5rem;
    max-width: 680px;
    line-height: 1.7;
}

/* 比較表 */
.comparison-section {
    padding: 5.5rem 1.5rem;
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-table thead {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.1rem 1rem;
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.95rem;
    color: #475569;
}

.table-highlight {
    background: rgba(14, 165, 233, 0.15);
    color: #0f172a;
    font-weight: 600;
}

/* 対象店舗 */
.audience-section {
    padding: 5.5rem 1.5rem;
    background: #f8fafc;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
}

.audience-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.audience-card p {
    color: #475569;
    font-size: 0.95rem;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.audience-tag {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.08);
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 600;
}

/* プライシング */
.pricing {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.pricing .section-eyebrow {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.35);
}

.price-card.popular {
    border: 2px solid rgba(251, 113, 133, 0.8);
    background: rgba(255, 255, 255, 0.18);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fb7185, #f97316);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.price-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-plan {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-amount-suffix {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.85;
}

.price-features {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    font-weight: 700;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-visual {
        order: -1;
    }

    .benefit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .sync-demo-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sync-animation-container {
        width: min(500px, 95vw);
        height: 320px;
    }

    .syncless-app {
        width: 140px;
        height: 180px;
    }

    .restaurant-board {
        width: 140px;
        height: 180px;
    }

    .platform {
        width: 120px;
        height: 100px;
    }

    .sync-button {
        width: 50px;
        height: 50px;
        font-size: 9px;
        font-weight: bold;
    }

    .app-header {
        font-size: 12px;
        padding: 14px 10px;
    }

    .sync-info {
        font-size: 9px;
        padding: px;
        bottom: 10px;
    }

    .info-value {
        font-size: 10px;
    }

    .reservation-item {
        font-size: 9px;
        padding: 6px;
    }

    .grid-table {
        font-size: 7px;
    }

    .sync-complete {
        font-size: 14px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .sync-animation-container {
        width: min(400px, 90vw);
        height: 280px;
    }

    .syncless-app {
        width: 120px;
        height: 160px;
    }

    .restaurant-board {
        width: 120px;
        height: 160px;
    }

    .platform {
        width: 100px;
        height: 80px;
    }

    .sync-button {
        width: 40px;
        height: 40px;
        font-size: 8px;
    }

    .console-mockup {
        max-width: 100%;
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 0.85rem;
        padding: 0.9rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .console-scene {
        transform: scale(0.92);
    }

    .console-floating {
        animation: consoleFloatMobile 16s ease-in-out infinite;
    }

    .console-mockup {
        font-size: 0.85rem;
    }

    .console-header {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .sync-circle {
        width: 80px;
        height: 80px;
    }


    @keyframes consoleFloatMobile {
        0% {
            transform: translate3d(0, -6px, 0) rotateX(18deg) rotateY(-15deg) rotateZ(0deg);
        }
        50% {
            transform: translate3d(0, 4px, 15px) rotateX(12deg) rotateY(-5deg) rotateZ(2deg);
        }
        100% {
            transform: translate3d(0, -6px, 0) rotateX(18deg) rotateY(-15deg) rotateZ(0deg);
        }
    }
}
