/* ============================================
   PEPPER Web LP - CSS
   Design System Variables & Reset
   ============================================ */

:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #DBEAFE;
    --accent-blue: #4A90D9;
    --accent-green: #7ED321;
    --accent-orange: #F5A623;
    --bg-dark: #0F172A;
    --bg-light: #F0F4FA;
    --bg-white: #FFFFFF;
    --border-light: #D6E0EE;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

.brand-text-img {
    display: inline-block;
    height: 1em;
    vertical-align: baseline;
    object-fit: contain;
    margin: 0 0.15em;
}

@media (max-width: 768px) {
    .brand-text-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-text-wrap .brand-text-img {
        display: block;
        height: 1.2em;
        margin: 0.3em 0;
    }
}

.brand-text-sm {
    height: 0.85em;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.pc-only { display: inline; }
.sp-only { display: none !important; }

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background 0.3s;
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* ============================================
   Header
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
}

.header-logo {
    flex-shrink: 0;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s;
}

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

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.3s;
}

.header-cta-btn:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 120px 100px;
    position: relative;
    min-height: 939px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    z-index: 2;
}

.hero-heading {
    font-size: 92px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(90deg, #34EEC6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 618px;
}

.hero-card {
    display: contents;
}

.hero-subhead {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.hero-btn-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
}

.hero-points {
    background: var(--bg-white);
    border-radius: 0;
    padding: 40px 60px 40px 24px;
    max-width: 502px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.point-item:first-child {
    padding-top: 0;
    padding-bottom: 24px;
}

.point-item.no-border {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 24px;
}

.point-num {
    font-size: 48px;
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.point-num.purple { background: linear-gradient(180deg, #A855F7, #D8B4FE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.point-num.blue { background: linear-gradient(180deg, #3B82F6, #93C5FD); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.point-num.green { background: linear-gradient(180deg, #34D399, #A7F3D0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.point-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.point-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.point-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-image {
    position: absolute;
    right: -200px;
    bottom: 0;
    width: 860px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* ============================================
   Blue Banner
   ============================================ */

.blue-banner {
    background-image: url('assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: -1px;
}

.blue-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1E293BCC;
    z-index: 1;
}

.blue-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 120px;
    min-height: 700px;
}

.blue-banner-heading {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.5;
}

.pain-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.pain-row {
    display: flex;
    gap: 80px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 380px;
    white-space: nowrap;
}

.pain-icon {
    color: var(--accent-orange);
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.pain-item span:last-child {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.pain-list-sp {
    display: none;
}

.blue-banner-vcut {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 3;
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
}

/* ============================================
   Solution Cards
   ============================================ */

.solution {
    padding: 64px 120px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.solution-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    width: 100%;
}

.solution-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 28px;
    border-radius: 16px;
    min-height: 490px;
    height: auto;
}

.purple-card { background: #F5F0FF; border: 1px solid #E9D5FF; }
.blue-card { background: #EFF6FF; border: 1px solid #BFDBFE; }
.green-card { background: #ECFDF5; border: 1px solid #A7F3D0; }

.card-num {
    font-size: 40px;
    font-weight: 900;
    opacity: 0.5;
}

.purple-title { color: #7C3AED; }
.blue-title { color: #2563EB; }
.green-title { color: #059669; }

.card-title {
    font-size: 20px;
    font-weight: 700;
}

.card-img {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.card-img-md {
    width: 260px;
    height: 260px;
}

.card-img-lg {
    width: 300px;
    height: 300px;
}

.card-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ============================================
   Comparison Table
   ============================================ */

.comparison {
    padding: 64px 120px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.comparison-table-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
}

.comparison-table thead tr {
    background: var(--bg-light);
    height: 60px;
}

.comparison-table th {
    padding: 0 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    vertical-align: middle;
}

.comparison-table th.col-label {
    width: 120px;
    text-align: left;
}

.comparison-table th.col-pepper {
    background: var(--primary);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.comparison-table tbody tr {
    height: 56px;
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

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

.comparison-table td {
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    vertical-align: middle;
}

.comparison-table td.row-label {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    width: 120px;
}

.comparison-table td.col-pepper-val {
    background: #3B82F60D;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.comparison-table td.col-pepper-val.highlight {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

/* ============================================
   Features List (Tags)
   ============================================ */

.features-list {
    padding: 64px 120px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.feature-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-white);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: all 1s ease;
    text-decoration: none;
}

.feature-tag:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ============================================
   Feature Details (alternating)
   ============================================ */

.feature-detail {
    padding: 64px 120px;
}

.feature-detail.bg-white { background: var(--bg-white); }
.feature-detail.bg-light { background: var(--bg-light); }

.feature-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.feature-detail-inner.reverse {
    flex-direction: row-reverse;
}

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

.feature-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.feature-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullets li {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    padding-left: 20px;
    position: relative;
}

.feature-bullets li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

/* ============================================
   Flow Section
   ============================================ */

.flow-section {
    background: var(--bg-light);
    padding: 80px 120px;
}

.flow-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.flow-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.flow-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    height: 110px;
    border-radius: 12px;
    color: #FFFFFF;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-label {
    font-size: 13px;
    font-weight: 700;
}

.step-num {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-text h4 {
    font-size: 24px;
    font-weight: 700;
}

.step-text p {
    font-size: 16px;
    font-weight: 400;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
    padding: 80px;
    background: var(--bg-white);
}

.pricing-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

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

.pricing-card {
    flex: 1;
    border-radius: 16px;
    background: var(--bg-white);
    box-shadow: 0 4px 20px #0F172A1A;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 860px;
}

.pricing-card.starter {
    border: 2px solid #475569;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px #3B82F633;
}

.pricing-card.premium {
    border: 2px solid #DAA520;
}

.pricing-card-header {
    padding: 28px 24px 24px;
    height: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gray-header {
    background: #475569;
    border-radius: 16px 16px 0 0;
}

.blue-header {
    background: var(--primary);
}

.gold-header {
    background: linear-gradient(180deg, #B8860B, #DAA520, #FFD700);
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.pricing-card-header p {
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.8;
}

.pricing-card-price {
    padding: 28px 24px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-prefix {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-suffix {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-init {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Premium price area */
.premium-price {
    padding: 20px 24px 16px;
    gap: 6px;
    align-items: flex-start;
}

.price-init-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-init-label {
    font-size: 14px;
    color: #E74C3C;
}

.price-strike {
    font-size: 28px;
    font-weight: 700;
    color: #E74C3C;
    text-decoration: line-through;
}

.price-sale-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sale-badge {
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(180deg, #B8860B, #DAA520);
    padding: 4px 10px;
    border-radius: 20px;
}

.sale-price {
    font-size: 36px;
    font-weight: 700;
    color: #DAA520;
}

.sale-unit {
    font-size: 14px;
    color: #DAA520;
}

.sale-badge-gray {
    background: linear-gradient(180deg, #475569, #64748B);
}
.sale-price-gray { color: #64748B; }
.sale-unit-gray { color: #64748B; }

.sale-badge-blue {
    background: linear-gradient(180deg, #1D4ED8, #3B82F6);
}
.sale-price-blue { color: #3B82F6; }
.sale-unit-blue { color: #3B82F6; }

.pricing-divider {
    height: 1px;
    background: var(--border-light);
}

.pricing-card-features {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
}

.check {
    font-size: 19px;
    font-weight: 700;
    flex-shrink: 0;
}

.gray-check { color: #475569; }
.blue-check { color: var(--primary); }
.gold-check { color: #DAA520; }

.pricing-card-recommend {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommend-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-card-recommend p:not(.recommend-heading) {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   Business Support
   ============================================ */

.business-support {
    background: var(--bg-light);
    padding: 80px 40px 100px;
    position: relative;
}

.business-support-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
}

.business-support-img {
    flex-shrink: 0;
    width: 600px;
    align-self: flex-end;
    z-index: 1;
    margin-left: 80px;
}

.business-support-img img {
    width: 100%;
    transform: scaleX(-1);
    display: block;
}

.business-support-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.business-support-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-line1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
}

.bs-line2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.bs-accent {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
}

.bs-line3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
}

.bs-big {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-dark);
}

.bs-btn {
    font-size: 18px;
    padding: 14px 28px;
    border-width: 1px;
    width: fit-content;
}

.business-support-card {
    max-width: 1342px;
    padding: 20px 28px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 6px 24px #0F172A18;
    position: relative;
    margin: -20px auto 0;
    z-index: 3;
}

.business-support-card p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #3870BE;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    background: var(--bg-white);
    padding: 80px 120px;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item.open {
    gap: 12px;
}

.faq-q {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
    content: '−';
}

.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.faq-item.open .faq-a-wrap {
    grid-template-rows: 1fr;
}

.faq-a {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    min-height: 0;
    overflow: hidden;
}

/* ============================================
   Contact Form
   ============================================ */

.contact {
    padding: 80px 120px;
    background: var(--bg-light);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.contact-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.contact-form {
    width: 720px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Inter', var(--font-body);
}

.badge.optional {
    background: #EEF2FF;
    color: var(--text-tertiary);
}

.badge.required {
    background: #FEF2F2;
    color: #EF4444;
}

.form-input {
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus {
    border-color: var(--primary);
}

.form-textarea {
    height: 180px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    resize: vertical;
    outline: none;
    transition: border-color 0.3s;
}

.form-textarea::placeholder {
    color: var(--text-tertiary);
}

.form-textarea:focus {
    border-color: var(--primary);
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.submit-btn {
    width: 280px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
}

.privacy-note {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
}

/* ============================================
   CTA Footer
   ============================================ */

.cta-footer {
    background: linear-gradient(180deg, #0F172A, #162D50);
}

.cta-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.cta-area {
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
}

.cta-sub {
    font-size: 16px;
    color: #B0C4DE;
}

.cta-footer-btn {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    width: fit-content;
    gap: 8px;
    box-shadow: 0 4px 16px #1A56DB40;
    border-radius: 8px;
}

.arrow {
    font-size: 20px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #0B1222;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 13px;
    color: #7B8FA8;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-col a {
    font-size: 13px;
    color: #7B8FA8;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-divider {
    height: 1px;
    background: #1E3050;
}

.footer-bottom {
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #5A7089;
}

/* ============================================
   Mobile Styles (SP: 375px base)
   ============================================ */

@media (max-width: 1200px) {
    .pc-only { display: none; }
    .sp-only { display: inline !important; }
    .bs-btn-sp.sp-only { display: block !important; }

    /* Header */
    .header-inner {
        padding: 0 16px;
        height: 56px;
    }

    .logo-img {
        height: 20px;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .header-nav.active {
        display: flex;
    }

    .header-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        background: var(--bg-light);
    }

    .hero-inner {
        flex-direction: column;
        padding: 20px 24px 48px;
        min-height: auto;
        gap: 24px;
        overflow: visible;
    }

    .hero-text {
        gap: 24px;
    }

    .hero-card {
        background: none;
        border-radius: 0;
        padding: 0 0 120px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        overflow: visible;
        min-height: 420px;
    }

    .hero-heading {
        font-size: 38px;
        position: relative;
        z-index: 2;
        text-align: left;
        align-self: flex-start;
        margin-left: -20px;
    }

    .hero-subhead {
        font-size: 18px;
        line-height: 1.4;
        max-width: 200px;
        position: relative;
        z-index: 2;
        margin-top: 20px;
        margin-left: -20px;
        text-align: left;
        align-self: flex-start;
    }

    .hero-subhead br { display: inline; }

    .hero-btn-row {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-btn-row .btn-primary,
    .hero-btn-row .btn-outline {
        flex: 1;
        padding: 14px 0;
        font-size: 14px;
        max-width: none;
        border-radius: 8px;
        text-align: center;
    }

    .hero-desc {
        font-size: 12px;
        line-height: 1.6;
        background: var(--bg-white);
        border-radius: 16px;
        box-shadow: 0 6px 24px #0F172A18;
        padding: 16px 20px;
        position: relative;
        z-index: 2;
        margin-top: -80px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-pricing {
        background: var(--bg-white);
    }

    .hero-image {
        display: block;
        position: absolute;
        right: -120px;
        bottom: -140px;
        width: 340px;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .hero-points {
        padding: 20px 24px;
        border-radius: 0;
        max-width: none;
        width: calc(100% + 48px);
        margin-left: -24px;
        background: var(--bg-white);
        margin-top: 0px;
    }

    .point-num {
        font-size: 32px;
    }

    .point-item {
        gap: 12px;
        padding: 16px 0;
    }

    .point-item:first-child { padding-top: 0; padding-bottom: 16px; }
    .point-item.no-border { padding-top: 16px; padding-bottom: 0; }

    .point-text h3 { font-size: 14px; }
    .point-text p { font-size: 12px; line-height: 1.6; }

    /* Blue Banner */
    .blue-banner-inner {
        padding: 48px 24px;
        min-height: auto;
        gap: 24px;
    }

    .blue-banner-heading {
        font-size: 22px;
        text-align: center;
    }

    .pain-grid { display: none; }

    .pain-list-sp {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: fit-content;
        margin: 0 auto;
    }

    .pain-item-sp {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .pain-item-sp .pain-icon {
        font-size: 20px;
    }

    .pain-item-sp span:last-child {
        font-size: 13px;
        font-weight: 400;
        color: #FFFFFF;
        line-height: 1.5;
    }

    .blue-banner-vcut {
        height: 30px;
    }

    /* Solution */
    .solution {
        padding: 48px 24px;
        gap: 32px;
    }

    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }

    .solution-cards {
        flex-direction: column;
        gap: 24px;
    }

    .solution-card {
        height: auto;
        padding: 24px 20px;
    }

    .card-num { font-size: 32px; }
    .card-title { font-size: 18px; }
    .card-img { width: 160px; height: 160px; }
    .card-img-md { width: 160px; height: 160px; }
    .card-img-lg { width: 240px; height: 240px; }

    /* Comparison */
    .comparison {
        padding: 48px 24px;
        gap: 32px;
    }

    .comparison-table-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
    }

    /* Features List */
    .features-list {
        padding: 48px 24px;
        gap: 24px;
    }

    .feature-tags {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .feature-tag {
        padding: 8px 12px;
        font-size: 12px;
        text-align: center;
    }

    /* Feature Details */
    .feature-detail {
        padding: 48px 24px;
    }

    .feature-detail-inner,
    .feature-detail-inner.reverse {
        flex-direction: column;
        gap: 24px;
    }

    .feature-detail-inner .feature-text {
        display: contents;
    }

    .feature-detail-inner .feature-label {
        order: 1;
    }

    .feature-detail-inner .feature-label {
        font-size: 12px;
    }

    .feature-detail-inner .feature-title {
        order: 2;
        font-size: 18px;
    }

    .feature-detail-inner .feature-img {
        order: 3;
    }

    .feature-detail-inner .feature-desc {
        order: 4;
        font-size: 13px;
    }

    .feature-detail-inner .feature-bullets li {
        font-size: 13px;
    }

    .feature-detail-inner .feature-bullets {
        order: 5;
    }
    .feature-desc { font-size: 14px; }

    /* Flow */
    .flow-section {
        padding: 48px 24px;
    }

    .flow-header {
        align-items: center;
    }

    .flow-step {
        height: auto;
        padding: 16px 20px;
        gap: 16px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
    }

    .step-label { font-size: 10px; }
    .step-num { font-size: 22px; }
    .step-text h4 { font-size: 16px; }
    .step-text p { font-size: 12px; }

    /* Pricing */
    .pricing {
        padding: 48px 24px;
    }

    .pricing-cards {
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        justify-content: flex-start;
    }

    .pricing-card {
        min-width: 260px;
        flex: 0 0 260px;
        height: auto;
        min-height: auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .pricing-card-header {
        padding: 16px 16px 14px;
        height: auto;
        gap: 4px;
    }

    .pricing-card-features {
        height: auto;
        padding: 14px 16px;
        gap: 4px;
    }

    .pricing-card-price {
        height: auto;
        padding: 12px 16px;
        gap: 4px;
    }

    .pricing-card-header h3 { font-size: 15px; }
    .pricing-card-header p { font-size: 10px; }
    .price-amount { font-size: 26px; }
    .price-prefix, .price-suffix { font-size: 10px; }
    .price-init-label { font-size: 10px; }
    .price-strike { font-size: 18px; }
    .sale-badge { font-size: 8px; padding: 2px 8px; }
    .sale-price { font-size: 24px; }
    .sale-unit { font-size: 10px; }
    .price-init { font-size: 10px; }
    .feature-check { font-size: 12px; gap: 6px; }
    .check { font-size: 13px; }
    .features-heading { font-size: 11px; }
    .recommend-heading { font-size: 11px; }
    .pricing-card-recommend p:not(.recommend-heading) { font-size: 10px; }
    .pricing-card-recommend { padding: 10px 16px; gap: 6px; }
    .pricing-divider { margin: 0; }

    /* Business Support */
    .business-support {
        padding: 48px 24px 32px;
        min-height: auto;
    }

    .business-support-inner {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: flex-end;
        margin-bottom: -16px;
    }

    .business-support-img {
        width: 140px;
        flex-shrink: 0;
        order: 1;
        margin-left: 0px;
    }

    .business-support-img img {
        transform: scaleX(-1);
    }

    .business-support-text {
        order: 2;
        gap: 4px;
    }

    .business-support-title {
        align-items: flex-start;
    }

    .bs-line1 { font-size: 12px; }
    .bs-line2 { font-size: 11px; white-space: nowrap; }
    .bs-accent { font-size: 14px; }
    .bs-line3 { font-size: 16px; white-space: nowrap; }
    .bs-big { font-size: 22px; }
    .bs-btn { display: none; }

    .business-support-card {
        margin-top: 16px;
        padding: 16px 20px;
        background: #FFFFFFEE;
        border-radius: 12px;
        box-shadow: 0 4px 16px #0F172A12;
    }

    .business-support-card p {
        font-size: 12px;
    }

    .bs-btn-sp {
        display: block;
        margin: 16px auto 0;
        font-size: 13px;
        padding: 10px 20px;
        border-radius: 6px;
        width: fit-content;
        text-align: center;
    }

    /* FAQ */
    .faq {
        padding: 48px 24px;
    }

    .faq-q { font-size: 16px; }
    .faq-a { font-size: 14px; }

    /* Contact */
    .contact {
        padding: 48px 24px;
    }

    .contact-form {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }

    /* CTA Footer */
    .cta-area {
        padding: 48px 24px;
        gap: 24px;
    }

    .cta-area h2 { font-size: 24px; }

    .cta-footer-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }

    /* Footer */
    .footer-inner {
        padding: 24px 20px;
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-logo-img {
        height: 24px;
    }
}

/* ============================================
   Tablet adjustments
   ============================================ */

/* ============================================
   Time Slots (Calendar Booking)
   ============================================ */

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.time-slot-btn.selected {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.time-slot-btn:disabled {
    background: var(--bg-light);
    color: var(--text-tertiary);
    cursor: not-allowed;
    border-color: var(--border-light);
}

.time-slots-loading {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

.time-slots-note {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.time-slots-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ============================================
   Booking Modal
   ============================================ */

.booking-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
}

.booking-modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.booking-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
}

.booking-modal-body .form-group {
    margin-bottom: 16px;
}

.booking-modal-body .form-submit {
    margin-top: 24px;
}

.booking-submit-btn {
    width: 100%;
}

/* ============================================
   Privacy Modal
   ============================================ */

.privacy-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
}

.privacy-modal-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.privacy-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
}

.privacy-update-date {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.privacy-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.privacy-section li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.privacy-modal-footer {
    padding: 16px 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
}

.privacy-modal-close-btn {
    background: var(--text-primary);
    color: #FFFFFF;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.privacy-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.privacy-link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
