/* Base Variables */
:root {
    /* Color Palette - Updated to Basic Design Spec (2026-01-26) */

    /* Brand Colors */
    --color-brand-mint: #89eec0;
    --color-brand-sky: #6dc1d8;
    --color-brand-blue: #72abe2;

    /* Base Colors */
    --color-primary: #72abe2;
    /* Brand Blue: CTA, Buttons, Headings */
    --color-secondary: #6dc1d8;
    /* Brand Sky: Secondary Elements */

    --color-bg-base: #FFFEFD;
    /* Off-white: Main Background */
    --color-bg-accent: #F9F6F2;
    /* Warm Beige: Section Background */
    --color-bg-accent-light: #E9F6F9;
    /* Light Blue Bg: Accent Section */

    --color-text: #2A1512;
    /* Dark Brown: Text, Headings */
    --color-text-muted: #4a3b32;
    /* Muted Brown: About body */
    --color-accent-teal: #008c8d;
    /* Dark Teal: Catchphrase */
    --color-text-white: #FFFFFF;
    /* White */

    --color-alert: #C32626;
    /* Red: Alert */
    --color-alert-bg: #FBEEEE;
    /* Light Red: Alert Bg */

    /* Missing Variable Aliases */
    --color-brand-cyan: var(--color-brand-sky);
    --color-alert-red: var(--color-alert);

    /* Legacy/Functional Mappings */
    --color-main: var(--color-primary);
    --color-accent: var(--color-secondary);
    --color-base: var(--color-bg-base);
    --color-white: var(--color-text-white);

    /* Gradients */
    --color-brand-gradient: linear-gradient(135deg, var(--color-brand-mint) 0%, var(--color-brand-sky) 50%, var(--color-brand-blue) 100%);

    /* Spacing */
    --spacing-sm: 8px;
    /* Mobile: 8px? - Not specified, keeping as is */
    --spacing-md: 40px;
    /* Element spacing: 40px */
    --spacing-lg: 40px;
    /* Element spacing fallback */
    --spacing-xl: 80px;
    /* Section spacing: 80px */

    --padding-base: 20px;
    /* Base padding */

    /* Typography */
    --font-base: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

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

body {
    font-family: var(--font-base);
    background-color: var(--color-base);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

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

ul {
    list-style: none;
    padding: 0;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    margin: 0 auto;
    padding: 0 var(--padding-base);
    position: relative;
    /* Context for z-index */
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    line-height: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(30, 86, 139, 0.3);
    /* Shadow based on primary color */
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #5d9ad1;
    /* Slightly darker shade of Brand Blue (#72abe2) */
    box-shadow: 0 6px 14px rgba(114, 171, 226, 0.3);
}

.btn-brand-gradient-hero {
    background: linear-gradient(135deg, #89eec0 0%, #6dc1d8 50%, #72abe2 100%);
    color: var(--color-text-white);
    padding: 16px 48px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(114, 171, 226, 0.4);
    border: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-brand-gradient-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 171, 226, 0.5);
    filter: brightness(1.05);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    /* Keeping accent as a variation or mapping to Primary for now, or use Secondary color? */
    /* Spec doesn't define btn-accent, but Premium plan uses it. Let's make it distinct or same as Primary */
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-main);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.2rem;
}

.btn-xl {
    padding: 20px 60px;
    font-size: 1.4rem;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-list a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--color-accent);
}

.mobile-cta {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
}

/* 1.1 Hero Section (Layered Design) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header height */
    /* Header height */
    background-color: var(--color-bg-base);
}

/* Right Layer (Visual) */
.hero-background-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    /* Right 60% of the screen */
    height: 100%;
    /* Layer 1: Gradient Overlay (semi-transparent brand color) */
    /* Layer 2: Image */
    background:
        linear-gradient(135deg, var(--color-bg-accent-light) 0%, rgba(255, 255, 255, 0) 50%),
        url('../assets/images/hero_visual_carelacare.png') no-repeat right center;
    background-size: cover;
    z-index: 0;

    /* Soften the left edge significantly to hide the "center line" */
    /* Transparent at 0% up to 15% to ensure the edge is fully hidden (white), then fade to black */
    mask-image: linear-gradient(to right, transparent 0%, transparent 15%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 15%, black 100%);
}

/* Container for Left Layer content alignment */
.hero-container {
    position: relative;
    z-index: 1;
    /* Above background */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Left Layer (Content) */
.hero-content-layer {
    width: 50%;
    /* Occupy left half */
    padding-right: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-tagline {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-primary);
    /* Headings use Brand Color */
    margin-bottom: 1.5rem;
    font-feature-settings: "palt";
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Hero Campaign Box Styles */
.hero-campaign-layer {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 2rem;
    margin-top: 200px;
    /* Final alignment adjustment */
}

.hero-campaign-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    border: 2px solid var(--color-brand-blue);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.campaign-box-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--color-brand-blue);
    color: white;
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.campaign-box-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    font-feature-settings: "palt";
}

.campaign-box-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.campaign-box-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.campaign-box-features span {
    font-size: 0.85rem;
    color: var(--color-text);
    background: var(--color-bg-accent);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.campaign-box-features i {
    color: var(--color-brand-blue);
    font-size: 10px;
}

.campaign-box-link {
    color: var(--color-brand-blue);
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.campaign-box-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding-bottom: 60px;
    }

    .hero-content-layer,
    .hero-campaign-layer {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .hero-campaign-layer {
        justify-content: center;
        margin-top: 40px;
    }
}

/* Typography Scale */
h1,
.hero-title {
    font-size: 48px;
}

h2,
.section-title {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p,
.body-text {
    font-size: 16px;
}

small,
.small-text,
.stat-label,
.hero-cta-note,
.price-unit,
.provider-name,
.copyright {
    font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* Flow Section */
/* -------------------------------------------------------------------------- */

.flow-section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.flow-steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.flow-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px;
    flex: 1;
    max-width: 340px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-bottom: 4px solid var(--color-brand-blue);
    transition: transform 0.3s ease;
}

.flow-step-card:hover {
    transform: translateY(-5px);
}

.flow-step-number {
    font-family: 'Montserrat', sans-serif;
    /* Or closest available */
    font-weight: 800;
    color: var(--color-brand-sky);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: #E9F6F9;
    padding: 5px 15px;
    border-radius: 20px;
}

.flow-icon {
    font-size: 3.5rem;
    color: var(--color-brand-blue);
    margin-bottom: 25px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-content {
    text-align: center;
    width: 100%;
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--color-text);
}

.flow-sub {
    font-size: 0.95rem;
    font-weight: normal;
    display: block;
    color: #666;
    margin-top: 5px;
}

.flow-desc {
    font-size: 0.95rem;
    text-align: left;
    color: var(--color-text);
    line-height: 1.8;
}

/* Arrow */
.flow-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.flow-arrow-icon {
    font-size: 2rem;
    color: #cbd5e1;
    /* Light gray for arrow to be subtle */
}

/* Mobile Responsiveness for Flow */
@media (max-width: 768px) {
    .flow-steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flow-step-card {
        width: 100%;
        max-width: 100%;
    }

    .flow-arrow-container {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .flow-icon {
        font-size: 3rem;
        height: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        /* Mobile Section Spacing */
        --spacing-md: 30px;
        /* Mobile Element Spacing */
        --padding-base: 16px;
        /* Mobile Padding */
    }

    h1,
    .hero-title {
        font-size: 32px;
    }

    h2,
    .section-title {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-bg-accent-light);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
}

.hero-cta-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.8rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-main);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

/* 1.1.5 About Section - Redesigned (Collage Style) */
.about-section-new {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.about-arch-header {
    height: 80px;
    background: linear-gradient(135deg, var(--color-brand-sky) 0%, var(--color-brand-blue) 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.about-main-content {
    background-color: var(--color-bg-accent-light);
    padding: var(--spacing-xl) 0;
    padding-top: 40px;
}

.about-title {
    font-size: 36px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-brand-sky);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* About Redesign v2 */
.about-wave-top {
    line-height: 0;
    background-color: var(--color-bg-base);
}

.about-v2 {
    background-color: #F9F6F2;
    padding: 100px 0;
}

.about-v2 .container {
    max-width: 1100px;
}

.about-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text-area {
    flex: 1;
    text-align: left;
}

.about-v2-title {
    font-size: 32px;
    color: #2A1512;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    border-left: 6px solid var(--color-brand-blue);
    padding-left: 20px;
}

.about-v2-title::after {
    display: none;
}

.about-v2-catch {
    font-size: 24px;
    font-weight: bold;
    color: #008c8d;
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-v2-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3b32;
    margin-bottom: 16px;
}

.about-visual-area {
    flex: 1;
}

.about-collage-v2 {
    position: relative;
    height: 400px;
}

.about-collage-v2 .img-main {
    width: 85%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.about-collage-v2 .img-sub {
    width: 60%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 4px solid #fff;
}

.about-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.about-card-v2 {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card-v2:hover {
    transform: translateY(-5px);
}

.about-card-v2 .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.about-card-v2 .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-card-v2 h4 {
    font-size: 16px;
    font-weight: bold;
    color: #2A1512;
    margin-bottom: 8px;
}

.about-card-v2 p {
    font-size: 13px;
    color: #4a3b32;
    opacity: 0.9;
}

.about-v2-cta {
    text-align: center;
}

.btn-brand-gradient {
    display: inline-block;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #6dc1d8 0%, #89eec0 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(109, 193, 216, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-brand-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(109, 193, 216, 0.4);
    filter: brightness(1.05);
    color: #fff;
}

/* Mobile Responsive v2 */
@media (max-width: 992px) {
    .about-v2 {
        padding: 60px 0;
    }

    .about-flex-wrapper {
        flex-direction: column-reverse;
        /* Image top, Text bottom */
        gap: 40px;
    }

    .about-text-area {
        text-align: center;
    }

    .about-v2-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-visual-area {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-collage-v2 {
        height: 350px;
    }

    .about-cards-row {
        grid-template-columns: 1fr;
    }
}



/* 1.2 Pain Points - Redesigned */
.pain-points {
    background-color: #FFFFFF;
    padding: var(--spacing-xl) 0;
}

.pain-card>div:last-child {
    /* Wrapper for text if needed, or apply to h3/p parent if structure allows */
    flex: 1;
}
}

/* 1.4 Service Plans (Redesigned) */
.plans-section {
    background-color: var(--color-bg-light);
    /* #F9F6F2 or similar */
    padding: var(--spacing-xl) 0;
}

.plans-guide {
    background-color: #FFFFFF;
    border: 2px dashed var(--color-brand-cyan);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.plans-guide::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #FFFFFF;
}

.plans-guide::before {
    /* Border arrow */
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--color-brand-cyan);
    z-index: -1;
}

.plans-guide h3 {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.plans-guide-link {
    color: var(--color-brand-blue);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.plans-guide-link:hover {
    text-decoration: underline;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    /* Cards same height */
    margin-bottom: 40px;
}

.plan-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Plan Specific Colors */
.plan-free {
    border-top: 4px solid #666;
}

.plan-light {
    border-top: 4px solid var(--color-brand-cyan);
    box-shadow: 0 8px 24px rgba(109, 193, 216, 0.25);
    transform: scale(1.02);
    /* Emphasize */
    z-index: 1;
}

.plan-premium {
    border-top: 4px solid var(--color-brand-blue);
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-brand-cyan);
    color: #FFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-body {
    padding: 30px 24px 0;
    /* No bottom padding, handled by spacing */
    flex-grow: 1;
    /* Pushes footer down */
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.plan-sub-name {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    height: 1.2em;
    /* Ensure alignment even if empty */
}

.plan-catch {
    text-align: center;
    font-weight: bold;
    font-size: 1.0rem;
    margin-bottom: 20px;
    min-height: 3em;
    /* Align price area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-price-area {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.plan-price-val {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.plan-price-unit {
    font-size: 14px;
}

.plan-price-note {
    font-size: 12px;
    color: var(--color-alert-red);
    font-weight: bold;
    margin-top: 4px;
    display: block;
    min-height: 1.2em;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px dashed #EEE;
    padding-top: 20px;
}

.plan-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-brand-blue);
    font-weight: bold;
}

.plan-footer {
    /* No margin top needed as body grows */
}

.plan-recommend {
    background-color: #E9F6F9;
    /* Light brand color background */
    padding: 20px 24px 80px;
    /* Large bottom padding for button overlay */
    text-align: center;
    /* To visually separate recommended area */
    position: relative;
    /* Fixed min-height to align CTA buttons across cards */
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.plan-recommend-title {
    font-size: 0.85rem;
    color: var(--color-brand-blue);
    margin-bottom: 8px;
    font-weight: bold;
    display: block;
}

.plan-recommend-text {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1.4;
}

/* CTA placed over the recommend area */
.plan-cta-wrapper {
    margin-top: -60px;
    /* Pull up into recommend area */
    padding: 0 24px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plan-cta-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

/* Button Variants */
.btn-outline {
    border: 2px solid #2A1512;
    color: #2A1512;
    background: #FFF;
}

.btn-outline:hover {
    background: #F5F5F5;
    border-color: #2A1512;
}

.btn-fill-light {
    background: var(--color-brand-cyan);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(109, 193, 216, 0.4);
}

.btn-fill-light:hover {
    background: #5ab0c6;
    transform: translateY(-2px);
}

.btn-fill-premium {
    background: var(--color-brand-blue);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(114, 171, 226, 0.4);
}

.btn-fill-premium:hover {
    background: #5d9ad1;
    transform: translateY(-2px);
}

.plans-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    background: #F0F0F0;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .plan-light {
        transform: none;
        order: -1;
        /* Show recommended plan first on mobile? Usually good practice, but not specified. Keep standard order for now. */
        margin: 10px 0;
    }
}

.pain-points .section-title {
    margin-bottom: 60px;
    color: var(--color-primary);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.pain-points .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-brand-blue);
    border-radius: 2px;
}

/* Override default card-grid for 4 columns */
.pain-points .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pain-card {
    background: #FFFFFF;
    border: 1px solid var(--color-bg-accent);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(114, 171, 226, 0.15);
    border-color: var(--color-brand-blue);
}

.pain-card .illustration-placeholder {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.pain-card .illustration-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pain-card:hover .illustration-placeholder img {
    transform: scale(1.05);
}

.pain-card h3 {
    color: var(--color-brand-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.pain-card p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Tablet/Mobile Responsive for Pain Points */
@media (max-width: 992px) {
    .pain-points .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .pain-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        align-items: flex-start;
    }

    .pain-card .illustration-placeholder {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .pain-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .pain-card p {
        font-size: 13px;
    }

    .pain-card>div:last-child {
        /* Wrapper for text if needed, or apply to h3/p parent if structure allows */
        flex: 1;
    }
}

.section-title {
    font-size: 2.2rem;
    color: var(--color-primary);
    /* Headings use Brand Color */
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.heading-sub-en {
    display: block;
    font-size: 0.45em;
    color: var(--color-brand-blue);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.card {
    background: var(--color-bg-accent);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.pain-card {
    text-align: center;
}

.pain-card .icon-wrapper {
    font-size: 3rem;
    color: var(--color-main);
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* 1.3 Value Proposition */
.value-card {
    text-align: center;
    border: 1px solid var(--color-bg-accent-light);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* 1.4 Plans */
.plan-grid {
    align-items: flex-end;
    /* Align cards to bottom */
}

.plan-card {
    text-align: center;
    position: relative;
    border: 1px solid var(--color-bg-accent-light);
}

.plan-card.plan-recommended {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
    /* Make it pop */
    z-index: 2;
    box-shadow: 0 8px 24px rgba(114, 171, 226, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-main);
    margin: 1rem 0;
}

.price-unit {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.trial-note {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 24px;
}

.plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    color: var(--color-accent);
}

/* 1.5 Trust - Logo Slider */
.partner-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 40px;
}

.partner-slider {
    overflow: hidden;
    width: 100%;
}

.partner-slide-track {
    display: flex;
    gap: 60px;
    animation: slideLogos 20s linear infinite;
    width: calc(200px * 8 + 60px * 8);
    /* Adjust based on logo count */
}

.partner-logo {
    height: 50px;
    min-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: none;
    opacity: 1;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.designers-intro .subsection-title,
.testimonials .subsection-title {
    font-size: 1.5rem;
    color: var(--color-main);
    text-align: center;
    margin-bottom: 32px;
}

.designer-card {
    text-align: center;
}

.designer-img-placeholder {
    width: 100px;
    height: 100px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    background: var(--color-brand-gradient);
}

.testimonial-card {
    background: var(--color-bg-accent);
    border-left: 4px solid var(--color-main);
    position: relative;
    padding-top: 40px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #e0e0e0;
    font-size: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: var(--color-main);
}

/* 1.6 Flow */
.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.flow-step {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-icon {
    font-size: 2rem;
    color: var(--color-main);
    margin-bottom: 16px;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #ccc;
}

/* 1.7 Campaign */
.campaign-section {
    padding: 0;
}

.campaign-box {
    /* Brand gradient soft background */
    background: linear-gradient(135deg, rgba(137, 238, 192, 0.1) 0%, rgba(114, 171, 226, 0.1) 100%);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid var(--color-main);
    box-shadow: 0 10px 30px rgba(114, 171, 226, 0.15);
}

.campaign-title {
    font-size: 2rem;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.campaign-subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.campaign-subtitle .highlight {
    color: var(--color-accent);
    font-weight: bold;
    background: rgba(137, 238, 192, 0.2);
    padding: 0 8px;
}

.campaign-benefits {
    display: inline-block;
    text-align: left;
    margin-bottom: 32px;
}

.campaign-benefits li {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.campaign-benefits li i {
    color: var(--color-accent);
    margin-right: 8px;
}

/* 1.8 Main CTA */
.main-cta-section {
    background: var(--color-brand-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.main-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/assets/svg/carelacare_LINE-04.svg') no-repeat center center;
    opacity: 0.1;
    background-size: cover;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 1.9 FAQ */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
}

.accordion-item .accordion-header.active+.accordion-content {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Footer */
.site-footer {
    background: var(--color-text);
    /* Dark Brown as dark background */
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(100);
    /* Make logo white */
}

.footer-desc {
    color: #aaa;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.provider-name {
    font-size: 0.8rem;
    color: #666;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn {
        width: 100%;
    }

    .hero-section {
        flex-direction: column-reverse;
        /* Visual on top for mobile maybe? or pure stack */
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-background-layer {
        position: relative;
        width: 100%;
        height: 300px;
        /* shorter height for mobile */
    }

    .hero-content-layer {
        width: 100%;
        padding: 32px 16px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content-layer .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .hero-content-layer .stat-item {
        text-align: center;
    }

    .plan-card.plan-recommended {
        transform: none;
        /* remove scale on mobile */
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .site-header {
        padding: 0.8rem 0;
    }
}

/* Illustration Placeholder */
/* Illustration Placeholder */
.illustration-placeholder {
    width: 100%;
    height: 160px;
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-brand-sky);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: var(--color-brand-blue);
    font-size: 14px;
    padding: 10px;
    text-align: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.illustration-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* -------------------------------------------------------------------------- */
/* Service Details Section (New LP Style) */
/* -------------------------------------------------------------------------- */

/* Block Structure */
.service-details-group {
    /* Group container */
}

.service-block {
    padding: 80px 0;
}

.block-white {
    background-color: #FFFFFF;
}

.block-gray {
    background-color: #F5F7FA;
}

.detail-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-label {
    display: inline-block;
    color: var(--color-brand-blue);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.detail-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-brand-blue);
    margin: 5px auto 0;
}

.detail-title {
    font-size: 2.4rem;
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

.detail-lead {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
}

/* Section 1: Counseling */
.feature-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
}

.feature-icon-lg {
    font-size: 3.5rem;
    color: var(--color-brand-blue);
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.recommend-box {
    background: #EAF6F9;
    /* Light cyan/blue tint */
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--color-brand-sky);
}

.recommend-title {
    text-align: center;
    font-weight: 700;
    color: var(--color-brand-blue);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.check-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-grid li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    color: #444;
}

.check-list-grid li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-brand-blue);
}

/* Section 2: Support (Split Layout) */
.support-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Email area smaller than cards area */
    gap: 50px;
    align-items: start;
}

/* Area A: Email */
.support-area-email {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
    /* Sticky effect on desktop */
}

.email-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--color-brand-blue);
}

.email-main-icon {
    font-size: 2.5rem;
}

.email-icon-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.email-desc {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.consultation-example-bubble {
    background: #F0F8FF;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

/* Bubble tail */
.consultation-example-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 40px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #F0F8FF transparent;
}

.consultation-example-bubble h4 {
    font-size: 0.9rem;
    color: var(--color-brand-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.consultation-example-bubble ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultation-example-bubble li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.consultation-example-bubble li::before {
    content: '•';
    color: var(--color-brand-blue);
    position: absolute;
    left: 0;
}

/* Area B: Life Cards */
.support-area-life {
    /* */
}

.life-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column stack inside the right area? No, prompts says 3 cards grid. Maybe 3 cols is too tight? Let's try 3 cols or 2. User said "Card type grid (3 cards lined up)". Assuming horizontal. */
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns looks better usually, but user asked for 3 lined up? Let's try flexible grid. */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.life-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.life-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.life-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-brand-blue);
}

.life-icon {
    font-size: 1.5rem;
}

.life-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.life-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: auto;
    /* Push footer down */
    line-height: 1.6;
    min-height: 3em;
}

.life-partner {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: right;
}

.life-price {
    background: #F5F7FA;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Section 3: BoiSta */
.boista-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.boista-image {
    flex: 1;
}

.boista-overview {
    flex: 1;
}

.boista-overview h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.boista-benefits-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #FAFAFA;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.benefit-side {
    flex: 1;
    max-width: 250px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-brand-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 0 auto 15px;
}

.benefit-arrow {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-brand-sky);
}

.benefit-arrow i {
    font-size: 2rem;
    margin-top: 5px;
}

.arrow-text {
    font-size: 0.8rem;
    font-weight: 700;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* BoiSta Flow */
.step-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #E0E0E0;
    line-height: 1;
}

.step-text {
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.step-text small {
    font-weight: normal;
    font-size: 0.8rem;
    color: #666;
}

.step-connector {
    color: #ddd;
    font-size: 1.2rem;
}

.service-footer-note {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.note-highlight {
    font-weight: 700;
    color: var(--color-brand-orange, #e67e22);
    /* Fallback if var not defined */
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.note-small {
    font-size: 0.85rem;
    color: #999;
}


/* Mobile Responsive for Service Details */
@media (max-width: 768px) {
    .service-block {
        padding: 60px 0;
    }

    .detail-title {
        font-size: 1.8rem;
    }

    .feature-3col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .check-list-grid {
        grid-template-columns: 1fr;
    }

    .support-split-layout {
        grid-template-columns: 1fr;
    }

    .support-area-email {
        position: static;
        margin-bottom: 30px;
    }

    .life-card-grid {
        grid-template-columns: 1fr;
    }

    .boista-hero {
        flex-direction: column;
        text-align: center;
    }

    .boista-benefits-diagram {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-arrow {
        transform: rotate(90deg);
        flex: 0 0 50px;
    }

    .benefit-arrow i {
        transform: rotate(-90deg);
        /* Counter rotate icon so it points down if it was left-right. fa-arrow-right-arrow-left is bidirectional... vertical makes sense? */
        /* Actually left-right arrow rotated 90deg becomes up-down. That works. */
    }

    .step-bar {
        flex-direction: column;
        gap: 15px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-item {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------- */
/* Campaign Section (Ticket Style) */
/* -------------------------------------------------------------------------- */
.campaign-section {
    background-color: #f5fafd !important;
    /* Very light blue/gray */
    padding: 80px 0;
}

.campaign-ticket {
    background: #fff;
    border: 3px dashed var(--color-brand-blue);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(114, 171, 226, 0.15);
}

/* Pseudo-element Notches */
.campaign-ticket::before,
.campaign-ticket::after {
    content: '';
    display: block;
    width: 30px;
    height: 60px;
    background: #f5fafd;
    position: absolute;
    top: 170px;
    /* Adjust to be between header and body */
    transform: translateY(0);
    border-radius: 0;
    z-index: 2;
    border: none;
}

.campaign-ticket::before {
    left: -3px;
    border-radius: 0 30px 30px 0;
    border-right: 3px dashed var(--color-brand-blue);
    /* Cheat the border */
    background: #f5fafd;
    left: -18px;
    /* Push out */
}

.campaign-ticket::after {
    right: -3px;
    border-radius: 30px 0 0 30px;
    border-left: 3px dashed var(--color-brand-blue);
    background: #f5fafd;
    right: -18px;
}

/* Divider line corresponding to notches */
.ticket-divider {
    border-top: 2px dashed #e0e0e0;
    margin: 30px -40px;
    /* Pull out to edges */
    position: relative;
    top: 0px;
}

.ticket-title {
    color: var(--color-brand-blue);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.ticket-countdown {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    background: #F0F8FF;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
}

.countdown-days {
    font-size: 2.5rem;
    color: var(--color-brand-blue);
    margin: 0 5px;
}

.ticket-lead {
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-date {
    background: linear-gradient(transparent 60%, rgba(255, 235, 59, 0.7) 60%);
    padding: 0 5px;
}

.ticket-list-title {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.ticket-list-title::before,
.ticket-list-title::after {
    content: 'ー';
    margin: 0 10px;
    color: #ccc;
}

.ticket-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 700px;
    text-align: left;
}

.ticket-benefit-list li {
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 35px;
}

.ticket-benefit-list li i {
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--color-brand-blue);
    font-size: 1.2rem;
}

.badge-limited {
    background: #999;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

.ticket-notes {
    background: #F2F2F2;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
}

.ticket-notes h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-notes ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.text-danger-custom {
    color: #e74c3c;
}

.btn-campaign-cta {
    background: var(--color-brand-orange, #FFA500);
    /* Use orange/gold for conversion */
    color: #fff;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    transition: transform 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-campaign-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
    color: #fff;
}

/* -------------------------------------------------------------------------- */
/* Main CTA Section (Gradient) */
/* -------------------------------------------------------------------------- */
.main-cta-section {
    padding: 100px 0;
    position: relative;
}

.gradient-bg {
    background: linear-gradient(90deg, #89eec0 0%, #72abe2 100%);
}

.white-text {
    color: #ffffff !important;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-white-cta {
    background: #fff;
    color: var(--color-brand-blue);
    font-weight: 700;
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.btn-white-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--color-brand-blue);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile Responsive Override */
@media (max-width: 768px) {
    .ticket-header h2 {
        font-size: 1.4rem;
    }

    .ticket-countdown {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .countdown-days {
        font-size: 2rem;
    }

    .ticket-divider {
        margin: 20px -20px;
    }

    .campaign-ticket {
        padding: 25px 20px;
    }

    .campaign-ticket::before,
    .campaign-ticket::after {
        display: none;
    }

    /* Hide notches on mobile for simplicity */

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .btn-white-cta {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        padding: 15px;
    }
}

/* -------------------------------------------------------------------------- */
/* Trust & Testimonials Section */
/* -------------------------------------------------------------------------- */
.trust-section {
    background-color: var(--color-bg-warm, #F9F6F2);
    padding: 100px 0;
}

.experts {
    margin-bottom: 80px;
}

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

.expert-card {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-image {
    width: 150px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.expert-title {
    font-size: 14px;
    color: var(--color-brand-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.expert-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.testimonial-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #999;
    text-align: right;
}

/* Responsive for Trust Section */
@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }

    .expert-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-image {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .testimonials-container {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
/* Solutions Section (Reasons for Choosing) */
/* -------------------------------------------------------------------------- */
.solutions {
    background: #fff;
    padding: 100px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.solution-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #E9F6F9 0%, #fff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

.solution-title .highlight {
    color: var(--color-brand-sky, #6dc1d8);
    font-size: 16px;
    display: block;
    margin-top: 5px;
}

.solution-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }


    .solution-card {
        padding: 30px 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* Service Details (Zigzag Layout) */
/* -------------------------------------------------------------------------- */
.service-details {
    padding: 100px 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4/3;
    /* Enforce consistent ratio */
}

.service-image img {
    width: 100%;
    height: 100%;
    /* Fill container */
    object-fit: cover;
    object-position: top center;
    /* Crop to fit */
    display: block;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.03);
}

.service-number {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-mint {
    color: #6dc1d8;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #2A1512;
}

.service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features li {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.service-sub-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.sub-feature {
    background: #F9F6F2;
    padding: 20px;
    border-radius: 10px;
}

.sub-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2A1512;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Service Details */
@media (max-width: 900px) {

    .service-item,
    .service-item.reverse {
        flex-direction: column-reverse;
        /* Text on top, Image on bottom? Or standard column */
        /* Design Choice: Usually Image Top is better, but let's stick to content flow */
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: left;
    }

    .service-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

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

    .service-title {
        font-size: 24px;
    }
}