:root {
    --bg-color: #FDF9F0;
    --text-color: #4A4A4A;
    --accent-color: #FF9B7F;
    --secondary-color: #FFD4C4;
    --font-family: "Inter", "Noto Sans JP", sans-serif;
    --spacing-unit: 1rem;
    --border-radius: 24px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.global-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: flex-end;
}

.web-login-btn {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 24px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.web-login-btn::after {
    content: "→";
    font-family: var(--font-family);
    transition: transform 0.3s ease;
}

.web-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 155, 127, 0.15); /* Soft accent color shadow */
    color: var(--accent-color);
    opacity: 1; /* override default a:hover opacity */
}

.web-login-btn:hover::after {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 140px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #666, #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #888;
    font-weight: 400;
}

.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.store-btn {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Features Section */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    display: block;
}

/* iPhone 17 Device Frame — ultra-thin bezel, titanium finish */
.device-frame {
    position: relative;
    display: inline-block;
    margin: 0 auto 28px;
    max-width: 220px;
    /* Titanium-inspired gradient frame */
    background: linear-gradient(
        145deg,
        #2c2c2e 0%,
        #3a3a3c 20%,
        #48484a 50%,
        #3a3a3c 80%,
        #2c2c2e 100%
    );
    border-radius: 44px;
    padding: 8px;
    /* Layered shadow for depth + subtle titanium edge highlight */
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.12),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.3);
}

.device-frame img {
    border-radius: 36px;
    display: block;
    width: 100%;
    height: auto;
    /* Screen glass effect */
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
}

/* Dynamic Island — iPhone 17 style (compact pill) */
.device-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 16px;
    background: #1c1c1e;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.06);
}

/* Power button (right side) */
.device-frame::after {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 96px;
    width: 2.5px;
    height: 36px;
    background: linear-gradient(180deg, #48484a 0%, #3a3a3c 100%);
    border-radius: 0 2px 2px 0;
    box-shadow: 0.5px 0 1px rgba(0, 0, 0, 0.3);
}

/* Volume buttons (left side — using the card's pseudo won't work,
   so we add a subtle visual hint via box-shadow on the frame) */

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

/* Screenshots Section */
.screenshots {
    padding: 120px 0;
    background-color: #FFFBF5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: #888;
    font-size: 1.1rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    justify-items: center;
}

.screenshots-grid img {
    width: 100%;
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.screenshots-grid img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Concept Section */
.concept {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 155, 127, 0.03) 100%);
}

.concept-content {
    max-width: 600px;
    margin: 0 auto;
}

.concept p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #666;
}

.concept strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: block;
    margin-top: 16px;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #999;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #666;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .pc-only {
        display: none;
    }
}

/* Use Cases Section */
.use-cases {
    padding: 120px 0;
    background-color: #fff;
}

.use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.use-case-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    border-radius: var(--border-radius);
    background: #FFFBF5;
    border: 1px solid #F5EDE0;
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.use-case-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    font-family: var(--font-family);
}

.use-case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #333;
}

.use-case-content p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background-color: #FDF6EB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: #fff;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.4;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(135deg, #FFFBF5 0%, #FDF6EB 100%);
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #333;
}

.cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta .store-buttons {
    justify-content: center;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .use-case-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .use-case-number {
        font-size: 2.5rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

/* Intro Section */
.intro {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

.intro h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
}

/* Brand Core Section */
.brand-core {
    padding: 100px 0;
    background-color: #fff;
}

.brand-core-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.core-item {
    padding: 24px;
    border-left: 4px solid var(--accent-color);
    background: #fcfcfc;
}

.core-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.core-item p {
    color: #666;
    font-size: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 155, 127, 0.05) 100%);
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
    color: #333;
    line-height: 1.5;
}

.philosophy p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #666;
}

.philosophy strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: block;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

/* Scroll Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Staggered delays for grid items */
.features-grid .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.use-cases-list .use-case-item:nth-child(1) {
    transition-delay: 0.1s;
}

.use-cases-list .use-case-item:nth-child(2) {
    transition-delay: 0.2s;
}

.use-cases-list .use-case-item:nth-child(3) {
    transition-delay: 0.3s;
}

.benefits-grid .benefit-card:nth-child(1) {
    transition-delay: 0.1s;
}

.benefits-grid .benefit-card:nth-child(2) {
    transition-delay: 0.2s;
}

.benefits-grid .benefit-card:nth-child(3) {
    transition-delay: 0.3s;
}

.benefits-grid .benefit-card:nth-child(4) {
    transition-delay: 0.4s;
}

.benefits-grid .benefit-card:nth-child(5) {
    transition-delay: 0.5s;
}

.brand-core-list .core-item:nth-child(1) {
    transition-delay: 0.1s;
}

.brand-core-list .core-item:nth-child(2) {
    transition-delay: 0.2s;
}

.brand-core-list .core-item:nth-child(3) {
    transition-delay: 0.3s;
}

.brand-core-list .core-item:nth-child(4) {
    transition-delay: 0.4s;
}

.brand-core-list .core-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* ==========================================
   Hero: Empathy-first additions
   ========================================== */
.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: #777;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-eyebrow {
        font-size: 0.85rem;
    }
}

/* ==========================================
   Pain Section: あるある3連打
   ========================================== */
.pain-section {
    padding: 80px 0 100px;
    background: #fff;
}

.pain-section-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: #FFFBF5;
    border: 1px solid #F5EDE0;
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 155, 127, 0.1);
    border-color: var(--accent-color);
}

.pain-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.pain-quote {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.pain-arrow {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 700;
}

.pain-resolve {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    background: linear-gradient(135deg, rgba(255,155,127,0.1), rgba(255,212,196,0.15));
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
}

.pain-resolve strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Feature cards: benefit text
   ========================================== */
.feature-benefit {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    margin-top: 12px;
    text-align: left;
}

.features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 32px;
    padding: 24px 8px;
    scrollbar-width: none; /* Firefox用：スクロールバー非表示 */
}

.features-grid::-webkit-scrollbar {
    display: none; /* Safari/Chrome用：スクロールバー非表示 */
}

.features-grid .feature-card {
    flex: 0 0 calc(33.333% - 22px); /* PCでは3枚が綺麗に並び、4枚目が見切れる */
    scroll-snap-align: start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 32px 24px;
    text-align: left;
}

@media (max-width: 1024px) {
    .features-grid .feature-card {
        flex: 0 0 calc(50% - 16px); /* タブレットでは2枚表示 */
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 20px;
        padding: 24px 20px;
        margin: 0 -20px; /* 端までスワイプ領域を広げる */
    }
    .features-grid .feature-card {
        flex: 0 0 82%; /* スマホでは1枚表示（次が見切れる） */
        scroll-snap-align: center;
    }
}

/* ==========================================
   CTA: Eyebrow + emotional copy
   ========================================== */
.cta-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* sp-only utility */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* ==========================================
   Hero Trust Badge
   ========================================== */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #F5EDE0;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    margin-top: 8px;
}

.hero-trust-badge strong {
    color: var(--accent-color);
}

.trust-icon {
    font-size: 1rem;
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #FDF6EB 0%, #FFF8F2 100%);
    border-top: 1px solid #F5EDE0;
    border-bottom: 1px solid #F5EDE0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.stats-note {
    text-align: center;
    font-size: 0.78rem;
    color: #bbb;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stat-number {
        font-size: 2.4rem;
    }
}

/* ==========================================
   Notification Demo Section
   ========================================== */
.notification-demo {
    padding: 120px 0;
    background: #fff;
}

.notif-demo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 16px;
}

.phone-notif-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-notif {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(16px);
}

.phone-notif.visible,
.notif-demo-wrap.visible .phone-notif {
    opacity: 1;
    transform: translateY(0);
}

.notif-1 { transition-delay: 0.1s; }
.notif-2 { transition-delay: 0.28s; }
.notif-3 { transition-delay: 0.46s; }

.phone-notif:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255,155,127,0.12);
    border-color: rgba(255,155,127,0.3);
}

.notif-app-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.notif-app-icon {
    font-size: 0.85rem;
}

.notif-app-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    flex: 1;
}

.notif-time {
    font-size: 0.75rem;
    color: #bbb;
}

.notif-body {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.notif-body strong {
    color: #333;
}

.notif-demo-copy h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.notif-demo-copy p {
    font-size: 1rem;
    color: #666;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .notif-demo-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .notif-demo-copy h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   Comparison Table
   ========================================== */
.comparison-section {
    padding: 120px 0;
    background: #FFFBF5;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    font-size: 0.9rem;
}

.comparison-table thead tr {
    background: #fafafa;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: center;
    font-weight: 700;
    color: #444;
    font-size: 0.9rem;
}

.comparison-table th:first-child {
    text-align: left;
    color: #888;
    font-weight: 500;
}

.comparison-table .col-poin {
    background: linear-gradient(135deg, rgba(255,155,127,0.06), rgba(255,212,196,0.08));
    border-left: 3px solid var(--accent-color);
    color: #333;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
    vertical-align: top;
    line-height: 1.6;
    color: #555;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.comparison-table td small {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
    font-weight: 400;
}

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

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.check { color: var(--accent-color); font-weight: 700; }
.cross  { color: #ccc; }
.neutral { color: #aaa; }

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 0.82rem;
    }
}

/* ==========================================
   Social Proof / Reviews
   ========================================== */
.social-proof {
    padding: 120px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.review-card {
    background: #FFFBF5;
    border: 1px solid #F5EDE0;
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255,155,127,0.1);
    border-color: var(--accent-color);
}

.review-stars {
    color: #FFB347;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    padding-top: 8px;
}

.review-author {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F0E8DC;
}

.review-persona {
    font-size: 0.82rem;
    color: #aaa;
    font-weight: 500;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 28px 24px;
    }
}

/* ==========================================
   CTA Web Note
   ========================================== */
.cta-web-note {
    margin-top: 20px;
    font-size: 0.88rem;
    color: #aaa;
}

.cta-web-note a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-web-note a:hover {
    opacity: 0.8;
}

/* Policy Pages Layout */
.policy-page {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.policy-header {
    margin-bottom: 48px;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 24px;
}

.policy-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.policy-meta {
    font-size: 0.9rem;
    color: #888;
}

.policy-body {
    background: #ffffff;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.policy-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
}

.policy-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-body p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-color);
}

.policy-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-body li {
    margin-bottom: 8px;
}

.policy-body hr {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 32px 0;
}

.policy-footer-btn {
    text-align: center;
    margin-top: 40px;
}

.policy-back-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #333;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-back-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 80px 16px 40px;
    }
    .policy-body {
        padding: 24px 16px;
    }
    .policy-header h1 {
        font-size: 1.8rem;
    }
}

.policy-header-nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
    gap: 16px;
    font-size: 0.9rem;
}

.policy-lang-btn {
    color: #888;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-lang-btn.active {
    color: var(--accent-color);
    font-weight: 700;
    pointer-events: none;
}

.policy-lang-btn:hover {
    color: var(--accent-color);
    opacity: 1;
}