        :root {
            --primary: #0891b2;
            --primary-dark: #0e7490;
            --accent: #f97316;
            --dark: #f8fafc;
            --dark-light: #f1f5f9;
            --text-dark: #0f172a;
            --text-body: #334155;
            --gray: #64748b;
            --gray-light: #94a3b8;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
            --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--dark);
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        
        /* Container */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Section Base */
        section {
            padding: 100px 0;
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
        }
        
        .section-title {
            font-size: clamp(24px, 5vw, 40px);
            font-weight: 900;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        @media (max-width: 768px) {
            .section-title {
                margin-bottom: 32px;
            }
        }
        
        .section-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        /* Zigzag decoration to match logo style */
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 6px;
            background: var(--accent);
            margin: 20px auto 0;
            clip-path: polygon(
                0% 0%, 100% 0%, 
                95% 100%, 90% 0%, 
                85% 100%, 80% 0%, 
                75% 100%, 70% 0%, 
                65% 100%, 60% 0%, 
                55% 100%, 50% 0%, 
                45% 100%, 40% 0%, 
                35% 100%, 30% 0%, 
                25% 100%, 20% 0%, 
                15% 100%, 10% 0%, 
                5% 100%, 0% 0%
            );
            /* Simple jagged line */
            mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            opacity: 0.8;
        }

        /* Add sharp angles to containers */
        .deliverable-card, .option-card, .pro-deliverable-item {
            position: relative;
            overflow: hidden;
        }
        
        .deliverable-card::before, .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            clip-path: polygon(0 0, 100% 0, 0 10px, 100% 20px, 0 30px, 100% 40px, 0 50px, 100% 60px, 0 70px, 100% 80px, 0 90px, 100% 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .deliverable-card:hover::before, .option-card:hover::before {
            opacity: 1;
        }
        
        /* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 60px; /* Reduced from 100px */
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 20px;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    width: 100%;
    max-width: 900px;
}

.hero-logo {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto -25px; /* Increased negative margin */
    background: transparent;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: 30px 0 40px; /* Reduced from 50px */
        align-items: flex-start;
    }
    .hero-content {
        width: 100%;
        padding: 0 16px;
        margin: 0;
    }
    .hero-logo {
        max-width: 85%;
        margin-bottom: -20px; /* Increased negative margin */
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(8, 145, 178, 0); }
}

.hero h1 {
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

        
        .mobile-br {
            display: none;
        }
        
        @media (max-width: 768px) {
            .mobile-br {
                display: block;
            }
        }
        
        .hero h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-sub {
            font-size: clamp(14px, 3vw, 20px);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 768px) {
            .hero-sub {
                font-size: 14px;
                margin-bottom: 24px;
                line-height: 1.6;
            }
        }
        
        .hero-trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .trust-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-dark);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .hero-trust-badges {
                gap: 8px;
            }
            .trust-badge {
                font-size: 11px;
                padding: 6px 12px;
            }
        }
        
        .cta-pulse {
            animation: ctaPulse 2s ease-in-out infinite;
        }
        
        @keyframes ctaPulse {
            0%, 100% { 
                box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
            }
            50% { 
                box-shadow: 0 10px 40px rgba(8, 145, 178, 0.6), 0 0 0 8px rgba(8, 145, 178, 0.1);
            }
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
        }
        
        @media (max-width: 768px) {
            .cta-button {
                padding: 14px 28px;
                font-size: 15px;
                gap: 8px;
            }
            .hero-target {
                display: none;
            }
            .hero-note {
                font-size: 12px;
                margin-top: 16px;
            }
        }
        
        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.5);
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        }
        
        .cta-button::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover::after {
            transform: translateX(8px);
        }
        
        /* Inline CTA */
        .inline-cta {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(
                90deg,
                #0891b2 0%,
                #0e7490 16.67%,
                #0891b2 33.33%,
                #06b6d4 50%,
                #0891b2 66.67%,
                #0e7490 83.33%,
                #0891b2 100%
            );
            background-size: 300% 100%;
            animation: ctaGradientSlide 12s linear infinite;
            position: relative;
            overflow: hidden;
        }
        
        .inline-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .inline-cta > * {
            position: relative;
            z-index: 1;
        }
        
        .inline-cta p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
        }
        
        .hero-note {
            margin-top: 24px;
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Deliverables Section */
        .deliverables {
            background: var(--white);
        }
        
        .deliverables-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
            color: var(--gray);
            font-size: 16px;
        }
        
        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 768px) {
            .deliverables-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .deliverable-card {
            background: var(--dark-light);
            border-radius: 16px;
            padding: 28px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .deliverable-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .deliverable-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .deliverable-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .deliverable-card h3 svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
        }
        
        .deliverable-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 16px;
            line-height: 1.7;
        }
        
        .deliverable-preview {
            background: var(--white);
            border-radius: 10px;
            padding: 16px;
            font-size: 12px;
        }
        
        .deliverable-preview-title {
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .deliverable-preview-content {
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .deliverable-preview-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .deliverable-preview-item:last-child {
            border-bottom: none;
        }
        
        .preview-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .preview-dot.green { background: #22c55e; }
        .preview-dot.yellow { background: #eab308; }
        .preview-dot.red { background: #ef4444; }
        .preview-dot.blue { background: var(--primary); }
        
        .deliverables-note {
            text-align: center;
            margin-top: 40px;
            font-size: 14px;
            color: var(--gray);
        }
        
        .deliverables-note a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .deliverables-note a:hover {
            text-decoration: underline;
        }
        
        /* Options Section */
        .options-section {
            margin-top: 48px;
            padding-top: 48px;
            border-top: 2px dashed rgba(0, 0, 0, 0.1);
        }
        
        .options-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            text-align: center;
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .options-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .option-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }
        
        .option-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .option-card p {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .option-price {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Pro Combined Card */
        .pro-combined-card {
            grid-column: 1 / -1;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .pro-deliverables-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }
        
        .pro-deliverable-item {
            background: var(--white);
            border-radius: 10px;
            padding: 14px 16px;
        }
        
        .pro-deliverable-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .pro-deliverable-desc {
            font-size: 12px;
            color: var(--gray);
            line-height: 1.5;
        }
        
        /* Plan Comparison Table */
        .plan-comparison-section {
            margin-top: 48px;
            padding-top: 48px;
            border-top: 2px dashed rgba(0, 0, 0, 0.1);
        }
        
        .comparison-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            text-align: center;
        }
        
        .comparison-table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            background: var(--white);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 600px;
        }
        
        .comparison-table thead {
            background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
            color: var(--white);
        }
        
        .comparison-table th {
            padding: 16px 12px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
        }
        
        .comparison-table th.feature-col {
            text-align: left;
            min-width: 180px;
        }
        
        .comparison-table th.plan-col {
            min-width: 100px;
        }
        
        .comparison-table th .plan-price {
            display: block;
            font-size: 12px;
            font-weight: 500;
            opacity: 0.9;
            margin-top: 4px;
        }
        
        .comparison-table th.pro {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .comparison-table tbody tr:hover {
            background: rgba(14, 165, 233, 0.03);
        }
        
        .comparison-table td {
            padding: 14px 12px;
            text-align: center;
            color: var(--text-body);
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .comparison-table .check {
            color: #22c55e;
            font-size: 16px;
            font-weight: 700;
        }
        
        .comparison-table .dash {
            color: #cbd5e1;
            font-size: 16px;
        }
        
        .comparison-note {
            text-align: center;
            margin-top: 16px;
            font-size: 12px;
            color: var(--gray);
        }
        
        @media (max-width: 768px) {
            .comparison-table {
                font-size: 12px;
            }
            .comparison-table th {
                padding: 12px 8px;
                font-size: 12px;
            }
            .comparison-table td {
                padding: 10px 8px;
            }
        }
        
        /* Mid-page CTA */
        .mid-cta {
            background: var(--gradient-primary);
            padding: 60px 0;
        }
        
        .mid-cta .inline-cta-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .mid-cta h3 {
            font-size: clamp(24px, 5vw, 32px);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 12px;
        }
        
        .mid-cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 24px;
        }
        
        .mid-cta .inline-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .mid-cta .cta-button {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        .mid-cta .cta-button:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .mid-cta .cta-button::after {
            content: '→';
        }
        
        .mid-cta .cta-button-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mid-cta .cta-button-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        
        .mid-cta .cta-subtext {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 16px;
            margin-bottom: 0;
        }
        
        /* Stats Section (Loss Aversion) */
        .stats {
            background: var(--white);
            padding: 80px 0;
        }
        
        .stats-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
        }
        
        .stats-intro h2 {
            font-size: clamp(20px, 4vw, 32px);
            font-weight: 900;
            margin-bottom: 16px;
            color: var(--text-dark);
        }
        
        .stats-intro h2 span {
            color: #ef4444;
        }
        
        .stats-intro p {
            color: var(--gray);
            font-size: 15px;
        }
        
        @media (max-width: 768px) {
            .stats-intro p {
                font-size: 13px;
            }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 16px;
                padding: 8px 0 16px;
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .stats-grid::-webkit-scrollbar {
                display: none;
            }
            .stats-grid .stat-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid .stat-card {
                flex: 0 0 260px;
            }
        }
        
        .stat-card {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid #fecaca;
        }
        
        @media (max-width: 768px) {
            .stat-card {
                padding: 24px 20px;
                border-radius: 12px;
            }
        }
        
        .stat-number {
            font-size: 56px;
            font-weight: 900;
            color: #dc2626;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .stat-number {
                font-size: 32px;
                margin-bottom: 4px;
            }
        }
        
        .stat-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .stat-label {
                font-size: 12px;
                margin-bottom: 4px;
                line-height: 1.4;
            }
        }
        
        .stat-source {
            font-size: 11px;
            color: var(--gray);
        }
        
        @media (max-width: 768px) {
            .stat-source {
                display: none;
            }
        }
        
        .stats-note {
            text-align: center;
            margin-top: 32px;
            font-size: 14px;
            color: var(--gray);
        }
        
        .stats-example {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 16px;
            padding: 24px 32px;
            margin-top: 32px;
            text-align: center;
            border: 1px solid #fcd34d;
        }
        
        .stats-example p {
            margin-bottom: 8px;
            font-size: 15px;
            color: var(--text-dark);
        }
        
        .stats-example p:last-child {
            margin-bottom: 0;
        }
        
        .stats-source-small {
            font-size: 12px !important;
            color: var(--gray) !important;
            margin-top: 12px !important;
        }
        
        /* Store Selector */
        .store-selector {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 16px;
            padding: 32px;
            margin-top: 32px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .store-selector {
                padding: 20px 16px;
                margin-top: 20px;
                border-radius: 12px;
            }
        }
        
        .selector-question {
            font-size: 18px;
            color: var(--text-dark);
            margin-bottom: 24px;
        }
        
        @media (max-width: 768px) {
            .selector-question {
                font-size: 14px;
                margin-bottom: 16px;
            }
        }
        
        .selector-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        @media (max-width: 768px) {
            .selector-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
        }
        
        .selector-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px 16px;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            animation: cardPulse 2s ease-in-out infinite;
        }
        
        .selector-card:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .selector-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        @keyframes cardPulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(8, 145, 178, 0.1); }
            50% { box-shadow: 0 8px 25px rgba(8, 145, 178, 0.25); }
        }
        
        .selector-card.selected {
            animation: none;
        }
        
        @media (max-width: 768px) {
            .selector-card {
                padding: 12px 8px;
                border-radius: 8px;
                border-width: 2px;
            }
        }
        
        .selector-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
            animation: none;
        }
        
        .selector-card.selected {
            border-color: var(--primary);
            background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
            transform: scale(1.02);
        }
        
        .selector-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 15px;
            color: #ea580c;
            font-weight: 700;
            animation: hintBounce 1.5s ease-in-out infinite;
            background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
            padding: 12px 24px;
            border-radius: 50px;
            border: 2px solid #f97316;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
        }
        
        .selector-hint svg {
            width: 20px;
            height: 20px;
            stroke: #ea580c;
            stroke-width: 2;
            fill: #ea580c;
        }
        
        @keyframes hintBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        
        .selector-hint.hidden {
            display: none;
        }
        
        .selector-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }
        
        @media (max-width: 768px) {
            .selector-icon {
                font-size: 24px;
                margin-bottom: 4px;
            }
        }
        
        .selector-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .selector-title {
                font-size: 12px;
                margin-bottom: 4px;
            }
        }
        
        .selector-desc {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .selector-desc {
                display: none;
            }
        }
        
        .selector-revenue {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .selector-revenue {
                font-size: 10px;
            }
        }
        
        /* Loss Result */
        .loss-result {
            margin-top: 24px;
            animation: fadeInUp 0.5s ease;
        }
        
        @media (max-width: 768px) {
            .loss-result {
                margin-top: 16px;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .loss-card {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            border: 2px solid #fecaca;
        }
        
        @media (max-width: 768px) {
            .loss-card {
                padding: 20px 16px;
                border-radius: 12px;
            }
        }
        
        .loss-intro {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 12px;
        }
        
        @media (max-width: 768px) {
            .loss-intro {
                font-size: 12px;
                margin-bottom: 8px;
            }
        }
        
        .loss-amount {
            font-size: 20px;
            color: #dc2626;
            margin-bottom: 16px;
        }
        
        @media (max-width: 768px) {
            .loss-amount {
                font-size: 16px;
                margin-bottom: 12px;
            }
        }
        
        .loss-amount strong {
            font-size: 48px;
            font-weight: 900;
        }
        
        @media (max-width: 768px) {
            .loss-amount strong {
                font-size: 32px;
            }
        }
        
        .loss-note {
            font-size: 12px;
            color: var(--gray);
        }
        
        /* Problem Section */
        .problem {
            background: var(--dark-light);
        }
        
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 900px) {
            .problem-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .problem-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .problem-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        
        .problem-card:hover {
            border-color: rgba(239, 68, 68, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .problem-icon {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            width: 140px;
            height: 140px;
            opacity: 0.06;
            pointer-events: none;
        }
        
        .problem-icon svg {
            width: 100%;
            height: 100%;
            stroke: #b91c1c;
            stroke-width: 1;
            fill: none;
        }
        
        .problem-card h3,
        .problem-card p {
            position: relative;
            z-index: 1;
        }
        
        .visual-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }
        
        .visual-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--primary);
            stroke-width: 1.5;
            fill: none;
        }
        
        .problem-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ef4444;
        }
        
        .problem-card p {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Solution Section */
        .solution {
            background: var(--dark);
        }
        
        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .solution-content {
                grid-template-columns: 1fr;
            }
        }
        
        .solution-text h2 {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.4;
        }
        
        .solution-text h2 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .solution-list {
            list-style: none;
            margin-top: 32px;
        }
        
        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .solution-list .check {
            width: 28px;
            height: 28px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .solution-visual {
            background: rgba(8, 145, 178, 0.06);
            border-radius: 24px;
            padding: 40px;
            position: relative;
        }
        
        .solution-visual::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        
        .visual-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        
        .visual-item:last-child {
            margin-bottom: 0;
        }
        

        
        .visual-text {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Pricing Section */
        .pricing {
            background: var(--dark-light);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }
        
        .pricing-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: rgba(8, 145, 178, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        
        .pricing-card.popular {
            background: var(--gradient-primary);
            border: none;
        }
        
        .pricing-card.popular::before {
            content: 'おすすめ';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
        
        .pricing-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .pricing-target {
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 16px;
        }
        
        .pricing-card.popular .pricing-target {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-card.recommended {
            box-shadow: 0 0 0 4px #f97316;
            position: relative;
        }
        
        .pricing-card.recommended:not(.popular)::after {
            content: 'あなたにおすすめ';
            position: absolute;
            top: -12px;
            right: 16px;
            background: #f97316;
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }
        
        .pricing-price {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 8px;
        }
        
        .pricing-price span {
            font-size: 16px;
            font-weight: 400;
        }
        
        .pricing-note {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 32px;
        }
        
        .pricing-card.popular .pricing-note {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 32px;
        }
        
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .pricing-features li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: rgba(8, 145, 178, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .pricing-card.popular .pricing-features li::before {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }
        
        .pricing-cta {
            display: block;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .pricing-card:not(.popular) .pricing-cta {
            background: var(--gradient-primary);
            color: var(--white);
        }
        
        .pricing-card:not(.popular) .pricing-cta:hover {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            transform: translateY(-2px);
        }
        
        .pricing-card.popular .pricing-cta {
            background: var(--white);
            color: var(--primary-dark);
        }
        
        .pricing-card.popular .pricing-cta:hover {
            background: #fff7ed;
            color: #ea580c;
            transform: translateY(-2px);
        }
        
        /* Sample Section */
        .sample {
            background: var(--dark);
        }
        
        .sample-category {
            margin-bottom: 64px;
        }
        
        .sample-category:last-child {
            margin-bottom: 0;
        }
        
        .sample-category-title {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 16px;
            border-bottom: 2px solid;
        }
        
        .sample-category-title.negative {
            color: #ef4444;
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        .sample-category-title.positive {
            color: #22c55e;
            border-color: rgba(34, 197, 94, 0.3);
        }
        
        .sample-slider-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            /* マウス操作時のテキスト選択を無効化 */
            user-select: none;
            -webkit-user-select: none;
        }
        
        .sample-slider {
            display: flex;
            gap: 24px;
            width: max-content;
            cursor: grab;
            /* JSで制御するためCSSアニメーションは削除 */
        }
        
        .sample-slider:active {
            cursor: grabbing;
        }
        
        .sample-card {
            /* デスクトップ：幅を400pxに拡大 */
            flex: 0 0 400px;
            background: var(--white);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .sample-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .sample-card.negative {
            border-top: 4px solid #ef4444;
        }
        
        .sample-card.positive {
            border-top: 4px solid #22c55e;
        }
        
        .sample-card-review,
        .sample-card-reply {
            padding: 16px 0;
        }
        
        .sample-card-label {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            color: var(--white);
            background: var(--gray);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .sample-card.negative .sample-card-reply .sample-card-label {
            background: #ef4444;
        }
        
        .sample-card.positive .sample-card-reply .sample-card-label {
            background: #22c55e;
        }
        
        .sample-card-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(100, 116, 139, 0.2), transparent);
            margin: 8px 0;
        }
        
        .sample-card .sample-stars {
            margin-bottom: 12px;
            font-size: 16px;
            color: #fbbf24;
            letter-spacing: 2px;
        }
        
        .sample-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-body);
            margin: 0;
            /* テキストの折り返しを強制しない */
        }
        
        .sample-card-reply p {
            color: var(--text-dark);
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .sample-card {
                /* モバイル：幅を320pxに拡大 */
                flex: 0 0 320px;
                padding: 20px;
            }
            .sample-card p {
                font-size: 13px;
            }
            .sample-category-title {
                font-size: 18px;
            }
        }
        
        /* Flow Section */
        .flow {
            background: var(--dark-light);
        }
        
        .flow-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .flow-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
        }
        
        .flow-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -40px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        
        @media (max-width: 768px) {
            .flow-step:not(:last-child)::after {
                display: none;
            }
        }
        
        .flow-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 700;
            margin: 0 auto 24px;
            color: var(--white);
        }
        
        .flow-number svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            stroke-width: 2;
            fill: none;
        }
        
        .flow-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .flow-step p {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* FAQ Section */
        .faq {
            background: var(--dark);
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .faq-question {
            width: 100%;
            padding: 24px 32px;
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 300;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 32px 24px;
            max-height: 500px;
        }
        
        .faq-answer p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.9;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(
                90deg,
                #0891b2 0%,
                #0e7490 16.67%,
                #0891b2 33.33%,
                #06b6d4 50%,
                #0891b2 66.67%,
                #0e7490 83.33%,
                #0891b2 100%
            );
            background-size: 300% 100%;
            animation: ctaGradientSlide 12s linear infinite;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes ctaGradientSlide {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-size: clamp(28px, 5vw, 44px);
            font-weight: 900;
            margin-bottom: 16px;
            color: var(--white);
        }
        
        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            color: var(--white);
        }
        
        .cta-section .cta-button {
            background: var(--white);
            color: var(--primary-dark);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        .cta-section .cta-button:hover {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: var(--white);
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.5);
        }
        
        .cta-section .cta-subtext {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 24px;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background: var(--dark-light);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        
        footer p {
            font-size: 13px;
            color: var(--gray);
        }
        
        footer .note {
            margin-top: 8px;
            font-size: 12px;
            color: var(--gray);
            opacity: 0.6;
        }
        /* Stats Slider & Modal Styles */
        .stats-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .stat-card {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-more-hint {
            font-size: 12px;
            color: var(--primary);
            margin-top: 8px;
            opacity: 0.8;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .stats-slider {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding-bottom: 24px;
                gap: 16px;
                grid-template-columns: none;
                margin: 0 -16px; /* Break container padding */
                padding: 0 16px 24px 16px; /* Add padding back for content */
            }
            .stat-card {
                min-width: 85%;
                scroll-snap-align: center;
                flex-shrink: 0;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            padding: 16px;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .stat-modal {
            background: var(--white);
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            padding: 32px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .modal-overlay.active .stat-modal {
            transform: translateY(0);
        }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #f1f5f9;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.2s;
        }
        .modal-close:hover {
            background: #e2e8f0;
            color: var(--text-dark);
        }
        .modal-stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        .modal-stat-label {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .modal-stat-label::after {
            content: '';
            flex: 1;
            height: 2px;
            background: var(--gradient-primary);
            opacity: 0.2;
        }
        .modal-section-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .modal-description {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 24px;
            background: #f8fafc;
            padding: 16px;
            border-radius: 12px;
        }
        .modal-source-box {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
        }
        .modal-source-text {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Slider Arrows */
        .stats-slider-wrapper {
            position: relative;
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            cursor: pointer;
            z-index: 10;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s;
        }
        @media (max-width: 768px) {
            .slider-arrow {
                opacity: 1;
                pointer-events: auto;
            }
            .slider-arrow.prev { left: -12px; }
            .slider-arrow.next { right: -12px; }
            .slider-arrow.hidden {
                opacity: 0;
                pointer-events: none;
            }
        }
