:root {
    /* Take a Break (Cafe/Latte) Color Palette */
    --primary: #9c7c5b;
    /* Medium Roast / Cafe Mocha */
    --primary-dark: #7b5e42;
    --primary-light: #d8c3a5;
    /* Latte Foam */
    --accent: #cc8b65;
    /* Terracotta / Baked Clay (Soft Accent) */
    --accent-light: #e8b495;

    /* Replaced Sage with Warm Neutrals */
    --sage: #a89f91;
    /* Warm Grey (Stone) */
    --sage-light: #e6e2dd;

    --cream: #fdfbf7;
    /* Existing Cream is good */
    --warm-white: #fffef9;
    --beige: #f7f3ed;
    --beige-dark: #ede6db;

    --brown: #6b5344;
    /* Existing Brown is good */
    --brown-light: #8b7355;

    --dark: #4a3b32;
    /* Dark Coffee */
    --gray-700: #5c504a;
    --gray-600: #7d726c;
    --gray-500: #9e958f;
    --gray-400: #bfb7b1;
    --gray-300: #dcd7d3;
    --gray-200: #ebe8e4;
    --gray-100: #f5f3f0;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(74, 59, 50, 0.08);
    --shadow: 0 4px 12px rgba(74, 59, 50, 0.08);
    --shadow-md: 0 8px 24px rgba(74, 59, 50, 0.1);
    --shadow-lg: 0 16px 40px rgba(74, 59, 50, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.9;
    color: var(--gray-700);
    background: var(--warm-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

/* Utility for semantic line breaks */
.ib {
    display: inline-block;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-icon {
    background: var(--beige);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-cta {
    background: var(--accent);
    border: none;
    color: var(--white);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 50, 41, 0.97);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

.mobile-menu .btn-accent {
    margin-top: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 50%, var(--primary) 100%);
}

.hero::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");
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '🧵';
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(61, 50, 41, 0.3);
}

.hero h1 .highlight {
    display: block;
    font-size: 1.15em;
    color: #ffeaa7;
    margin-top: 8px;
}

.hero-price-line {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero-price-line {
        white-space: normal;
        font-size: 0.85em;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 auto 20px;
    line-height: 2;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-microcopy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.hero-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--brown);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(224, 123, 103, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #d06a58;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(224, 123, 103, 0.4);
}

.hero-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--cream);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.proof-number {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.proof-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(61, 50, 41, 0.12);
    text-align: center;
}

.sticky-cta .btn-accent {
    width: 100%;
    max-width: 360px;
    padding: 14px 32px;
}

.sticky-cta .sticky-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Features Bar */
.features-bar {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.feature-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--beige);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    background: var(--beige);
}

.problem-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.problem-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 32px;
    box-shadow: var(--shadow);
}

.problem-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 2.2;
}

.problem-text .fade {
    color: var(--gray-400);
}

.problem-solution {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 550px;
    margin: 0 auto;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

/* Service Section */
.service-section {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.service-card {
    position: relative;
    padding: 40px 36px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.service-card>p {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Story Section */
.story-section {
    background: var(--brown);
    color: var(--white);
    position: relative;
}

.story-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-light);
}

.story-section .section-header h2 {
    color: var(--white);
}

.story-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
}

.story-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.4;
    line-height: 1;
}

.story-content p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.4em;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 2;
}

.story-content .highlight {
    color: #ffeaa7;
    font-weight: 600;
}

/* Reason Section */
.reason-section {
    background: var(--beige);
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.comparison-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.comparison-card.featured {
    background: var(--brown);
    color: var(--white);
    transform: scale(1.03);
}

.comparison-card.featured::before {
    content: 'おすすめ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.comparison-card.featured .comparison-label {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-price {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.comparison-card.featured .comparison-note {
    color: rgba(255, 255, 255, 0.75);
}

.vs-badge {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-500);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.reason-card {
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.reason-icon {
    width: 52px;
    height: 52px;
    background: var(--beige);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.reason-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.85;
}

/* Flow Section */
.flow-section {
    background: var(--white);
}

.flow-timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--sage));
}

.flow-step {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}

.flow-number {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow-content {
    flex: 1;
    padding: 24px 28px;
    background: var(--beige);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.flow-content:hover {
    background: var(--cream);
    box-shadow: var(--shadow);
}

.flow-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.flow-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    position: relative;
}

.pricing-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-light);
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 50px 44px;
    background: var(--white);
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-amount {
    margin-bottom: 28px;
}

.pricing-amount .label {
    font-size: 1rem;
    color: var(--gray-600);
    display: block;
    margin-bottom: 4px;
}

.pricing-amount .number {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brown);
}

.pricing-amount .unit {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 20px;
    line-height: 1.7;
}

/* Exclusion Box */
.exclusion-box {
    background: #fff5f5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    text-align: left;
    border-left: 4px solid #e57373;
}

.exclusion-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c62828;
    margin-bottom: 12px;
}

.exclusion-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.exclusion-list li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.exclusion-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e57373;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.testimonial-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.9;
}

.testimonial-result {
    background: var(--beige);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.testimonial-result-title {
    font-size: 0.8rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-result-value {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: var(--beige);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    color: var(--dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 0.95rem;
}

.faq-answer ul {
    list-style: none;
    margin-top: 16px;
}

.faq-answer li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-answer li strong {
    color: var(--dark);
    min-width: 130px;
}

/* Final CTA */
.final-cta {
    background: var(--white);
    text-align: center;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    border-radius: 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::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.03'%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-box h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-box>p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    position: relative;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}

.cta-sla {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
}

.footer-company {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.footer-company h4 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    font-weight: 600;
}

.company-table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.company-table th,
.company-table td {
    padding: 8px 16px;
    text-align: left;
}

.company-table th {
    color: var(--gray-400);
    font-weight: 500;
    width: 120px;
}

.company-table td {
    color: var(--gray-300);
}

/* Company Section (above footer) */
.company-section {
    background: var(--beige);
    padding: 60px 0;
}

.company-section-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.company-section h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.company-section .company-tagline {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.company-info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: var(--shadow);
    display: inline-block;
}

.company-info-box table {
    margin: 0 auto;
    text-align: left;
}

.company-info-box th,
.company-info-box td {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.company-info-box th {
    color: var(--gray-500);
    font-weight: 500;
}

.company-info-box td {
    color: var(--dark);
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .sticky-cta {
        display: block;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .proof-items {
        gap: 20px;
    }

    section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .service-grid,
    .reason-grid {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        grid-template-columns: 1fr;
    }

    .comparison-card.featured {
        transform: none;
        order: -1;
    }

    .vs-badge {
        margin: 0 auto;
    }

    .story-content {
        padding: 32px 24px;
    }

    .flow-timeline::before {
        left: 25px;
    }

    .flow-number {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .flow-content {
        padding: 20px;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-amount .number {
        font-size: 2.8rem;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .footer-links a {
        margin: 0;
        font-size: 0.85rem;
    }

    /* Company Section Mobile */
    .company-info-box {
        padding: 20px 16px;
        width: 100%;
    }

    .company-info-box table {
        width: 100%;
    }

    .company-info-box th,
    .company-info-box td {
        display: block;
        padding: 4px 8px;
        font-size: 0.85rem;
        text-align: center;
    }

    .company-info-box th {
        padding-top: 12px;
    }

    .company-info-box td {
        padding-bottom: 8px;
    }

    /* Logo responsive for mobile */
    .logo {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* VS Badge positioning for vertical layout */
    .comparison-box {
        position: relative;
        gap: 60px;
    }

    .vs-badge {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Sticky CTA bottom padding */
    footer {
        padding-bottom: 80px;
    }
}

/* iPhone SE and smaller screens (320px) */
@media (max-width: 380px) {
    .logo {
        font-size: 0.85rem;
        gap: 6px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .pricing-amount .number {
        font-size: 2.4rem;
    }

    .btn-accent {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* =========================================
   Subpage Headers & Common Elements
   ========================================= */
.header {
    background: linear-gradient(135deg, var(--brown) 0%, var(--primary) 100%);
    padding: 20px 0;
}

.header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link-header {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.back-link-header:hover {
    background: rgba(255, 255, 255, 0.25);
}

.page-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

.page-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 50px;
}

/* =========================================
   About Page Styles
   ========================================= */
.company-info {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 60px;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: var(--cream);
    padding: 24px 28px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.info-value {
    padding: 24px 28px;
    color: var(--gray-700);
}

.mission-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.mission-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.mission-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    line-height: 2;
    margin-bottom: 24px;
}

.mission-desc {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.values-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.story-card {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    border-radius: 24px;
    padding: 50px;
    color: var(--white);
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.4;
    line-height: 1;
}

.story-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.2em;
    line-height: 2;
    opacity: 0.95;
}

.story-card .highlight {
    color: #ffeaa7;
    font-weight: 600;
}

/* =========================================
   Flow Page Styles
   ========================================= */
.main-flow {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto 60px;
}

.flow-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 12px;
}

.flow-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-box.customer {
    border: 3px solid var(--sage);
    background: var(--sage-light);
}

.legend-box.service {
    border: 3px solid var(--navy);
    background: #dce8ee;
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
}

.step-icon.customer {
    border: 3px solid var(--sage);
    background: linear-gradient(135deg, var(--sage-light), #e8f5e6);
}

.step-icon.service {
    border: 3px solid var(--navy);
    background: linear-gradient(135deg, #e3eef3, #d0e3ec);
}

.step-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.5;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.flow-arrow {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: var(--primary);
    font-size: 1.2rem;
}

.your-tasks {
    background: var(--sage-light);
    border: 2px solid var(--sage);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
}

.your-tasks h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 24px;
    text-align: center;
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.task-item {
    background: var(--white);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.task-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.task-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.task-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.not-included {
    background: #fff5f3;
    border: 2px solid var(--accent-light);
    border-radius: 20px;
    padding: 28px 32px;
}

.not-included h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.not-included ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.not-included li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.not-included li::before {
    content: '×';
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.detailed-flow {
    max-width: 800px;
    margin: 0 auto;
}

.detail-step {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    position: relative;
}

.detail-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    bottom: -32px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--sage));
}

.detail-step:last-child::before {
    display: none;
}

.detail-number {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.detail-content {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.detail-content h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.detail-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.9;
}

.detail-checklist {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-checklist li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--beige);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.detail-checklist li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
}

.step-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.step-warning {
    font-size: 0.85rem;
    color: #c62828;
    background: #ffebee;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
}

.cta-box {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    border-radius: 28px;
    padding: 50px 40px;
    color: var(--white);
}

.cta-box h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 28px;
}

/* =========================================
   Pricing Page Styles
   ========================================= */
.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-intro h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.pricing-intro p {
    color: var(--gray-600);
}

.pricing-table-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto 60px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-table th {
    background: var(--cream);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.pricing-table th:first-child {
    border-radius: 12px 0 0 12px;
}

.pricing-table th:last-child {
    border-radius: 0 12px 12px 0;
    text-align: right;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--brown);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .highlight-row {
    background: linear-gradient(90deg, rgba(143, 174, 139, 0.1), rgba(143, 174, 139, 0.05));
}

.pricing-table .highlight-row td:first-child::before {
    content: '★ ';
    color: var(--accent);
}

.price-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 12px;
}

.price-notes {
    margin-top: 24px;
}

.price-note.annual-only {
    background: linear-gradient(135deg, var(--beige), var(--cream));
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--brown);
    font-weight: 500;
    border: 1px solid var(--primary-light);
    margin-bottom: 16px;
}

.monthly-price {
    text-align: center !important;
    color: var(--sage) !important;
    font-weight: 600 !important;
}

.monthly-amount {
    font-size: 1.05rem;
}

.monthly-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-table th:nth-child(2) {
    text-align: center;
}

.pricing-table td:nth-child(2) {
    text-align: center;
}

.pricing-table th:last-child {
    text-align: center;
}

.revenue-definition {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 32px;
    text-align: left;
}

.revenue-definition h4 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.revenue-definition ul {
    list-style: none;
    margin-bottom: 12px;
}

.revenue-definition li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.revenue-definition li:last-child {
    border-bottom: none;
}

.revenue-definition strong {
    color: var(--brown);
}

.revenue-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.role-sharing-notice {
    background: #fff8e1;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    border-left: 4px solid #ff9800;
    text-align: left;
}

.role-main {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.role-sub {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.8;
}

.tax-boundary-note {
    font-size: 0.9rem;
    color: #c62828;
    background: #ffebee;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    text-align: left;
}

.low-price-notice {
    background: #fff3e0;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 40px auto 60px;
    max-width: 900px;
    border-left: 5px solid #ff9800;
}

.low-price-notice h3 {
    font-size: 1.1rem;
    color: #e65100;
    margin-bottom: 16px;
}

.low-price-notice ul {
    list-style: none;
    margin-bottom: 16px;
}

.low-price-notice li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.low-price-notice li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: 700;
}

.partial-input-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 8px;
    margin: 0;
}

.feature-card.important-notice {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.feature-card.important-notice h3 {
    color: #e65100;
}

.comparison-section {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto 60px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--cream);
    font-weight: 600;
    color: var(--dark);
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: 12px 0 0 12px;
}

.comparison-table th:last-child {
    border-radius: 0 12px 12px 0;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .highlight-col {
    background: rgba(143, 174, 139, 0.1);
}

.check {
    color: var(--sage);
    font-weight: 700;
}

.cross {
    color: var(--gray-400);
}

.payment-section {
    max-width: 700px;
    margin: 0 auto 60px;
}

.payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.payment-card h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.payment-list {
    list-style: none;
}

.payment-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.8;
}

.payment-list li:last-child {
    border-bottom: none;
}

.payment-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--sage);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 17px;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-option {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}

.contact-option h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-option p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.btn-line {
    background: #06C755;
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-line:hover {
    background: #05b04c;
    transform: translateY(-3px);
}

.recommend-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.form-section {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--accent);
    font-size: 0.8rem;
    margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.15);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-submit {
    text-align: center;
    margin-top: 36px;
}

.form-submit button {
    width: 100%;
    max-width: 300px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.form-submit button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.privacy-note {
    background: var(--beige);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.privacy-note strong {
    color: var(--dark);
}

.form-sla {
    font-size: 1rem;
    color: var(--brown);
    font-weight: 600;
    margin-top: 12px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.success-message h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.success-message p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* =========================================
   Privacy & Tokushoho Page Styles
   ========================================= */
.content-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.section {
    margin-bottom: 40px;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.section p {
    margin-bottom: 16px;
    line-height: 2;
}

.section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.section li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.last-updated {
    text-align: right;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.table-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    background: var(--cream);
    padding: 24px 28px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.table-value {
    padding: 24px 28px;
    color: var(--gray-700);
    line-height: 1.9;
}

.table-value small {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 8px;
}

.table-value .note {
    padding: 14px 18px;
    background: var(--beige);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 12px;
    border-left: 3px solid var(--primary);
}

.price-list {
    list-style: none;
    margin-top: 12px;
}

.price-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li strong {
    min-width: 150px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        padding: 18px 24px;
        border-bottom: 1px solid var(--gray-100);
    }

    .info-value {
        padding: 18px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .story-card {
        padding: 36px 28px;
    }

    .main-flow {
        padding: 32px 20px;
    }

    .task-grid {
        grid-template-columns: 1fr;
    }

    .detail-step {
        flex-direction: column;
        gap: 16px;
    }

    .detail-step::before {
        display: none;
    }

    .detail-number {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }

    .pricing-table-wrapper {
        padding: 16px 10px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }

    .monthly-amount {
        font-size: 0.85rem;
    }

    .monthly-label {
        font-size: 0.7rem;
    }

    .price-note.annual-only {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .comparison-section {
        padding: 24px 12px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-option {
        padding: 32px 24px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .table-label {
        padding: 18px 22px;
        border-bottom: 1px solid var(--gray-100);
    }

    .table-value {
        padding: 18px 22px;
    }

    .price-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .price-list li strong {
        min-width: auto;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-result-value {
        font-size: 1rem;
        word-break: break-all;
    }

    /* Flow Mobile Adjustment */
    .flow-step {
        gap: 16px;
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}
/* =========================================
   Readability Improvements (PC / Mobile)
   ========================================= */
.story-section {
    background: var(--beige);
    color: var(--dark);
}

.story-section .section-tag {
    background: var(--primary-light);
    color: var(--brown);
}

.story-section .section-header h2,
.story-section .section-title {
    color: var(--dark);
}

.story-content,
.story-card {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.story-content::before,
.story-card::before {
    color: var(--primary-light);
    opacity: 0.55;
}

.story-content p,
.story-card p {
    color: var(--gray-700);
    font-size: 1.03rem;
    line-height: 2.05;
    opacity: 1;
}

.story-content .highlight,
.story-card .highlight {
    color: var(--brown);
    font-weight: 700;
}

.story-choice-box {
    margin: 16px 0;
    padding: 16px 20px;
    background: var(--cream);
    border: 1px solid var(--beige-dark);
    border-radius: 12px;
}

.story-choice-box p {
    color: var(--dark);
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 8px;
}

.story-choice-box p:last-child {
    margin-bottom: 0;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .story-content,
    .story-card {
        padding: 28px 20px;
    }

    .story-content p,
    .story-card p {
        font-size: 1rem;
        line-height: 1.95;
    }

    .story-choice-box {
        padding: 14px 16px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.85;
    }
}

/* =========================================
   UX Polish: Friendly + Professional
   ========================================= */
body {
    font-size: 16.5px;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.section-header p {
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #c16f56 100%);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 11px 22px;
    box-shadow: 0 8px 20px rgba(107, 83, 68, 0.18);
}

.navbar.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #c16f56 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(107, 83, 68, 0.16);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(107, 83, 68, 0.22);
}

.btn {
    min-height: 50px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary,
.btn-accent,
.form-submit button {
    border: 1px solid rgba(74, 59, 50, 0.08);
}

.btn-accent,
.form-submit button {
    background: linear-gradient(135deg, var(--accent) 0%, #bf6a51 100%);
    box-shadow: 0 8px 18px rgba(107, 83, 68, 0.2);
}

.btn-accent:hover,
.form-submit button:hover {
    background: linear-gradient(135deg, #bf6a51 0%, #a95a46 100%);
}

.service-card,
.reason-card,
.testimonial-card,
.pricing-card,
.faq-item,
.company-info-box,
.form-section,
.pricing-table-wrapper,
.content-card,
.table-card {
    border: 1px solid rgba(125, 114, 108, 0.16);
    box-shadow: 0 10px 24px rgba(74, 59, 50, 0.08);
}

.footer-links a {
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .btn,
    .form-submit button {
        min-height: 52px;
    }

    .hero-cta-group .btn,
    .cta-buttons .btn,
    .form-submit button {
        width: 100%;
        max-width: none;
        font-size: 1rem;
    }

    .sticky-cta {
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.99);
        border-top: 1px solid rgba(74, 59, 50, 0.08);
    }

    .sticky-cta .btn-accent {
        max-width: none;
        min-height: 54px;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 700;
    }

    .sticky-cta .sticky-note {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 6px;
    }

    .mobile-menu {
        gap: 18px;
    }

    .mobile-menu a {
        font-size: 1.12rem;
        padding: 8px 12px;
    }

    .mobile-menu .btn-accent {
        width: min(86vw, 360px);
        min-height: 52px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .section-header p {
        max-width: 100%;
    }
}
