/*
Theme Name: Dokodemo Clinic LP
Author: Antigravity
Description: Landing page theme for Dokodemo Clinic
Version: 1.0
*/

/* Basic Setup & Reset */
:root {
    --primary-green: #28B472;
    --dark-green: #27ae60;
    --accent-yellow: #f1c40f;
    --text-color: #333;
    --bg-color: #f9fdf9;
    /* Very light green hint */
    --white: #ffffff;
    --gray-bg: #f5f5f5;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-green {
    color: var(--primary-green);
    font-weight: bold;
}

.mt-30 {
    margin-top: 30px;
}

.yellow-highlight {
    background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

/* Header */
.header {
    background-color: var(--white);
    /* height: 80px; */
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999999999999999999999;
    padding: 22px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1360px;
    /* Use full width but with padding from container class */
}

/* Logo */
.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.08em;
}

.logo-img {
    max-width: 300px;
}

/* Desktop Navigation & CTA Wrapper */
.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 588px;
    width: 100%;
}

.nav-desktop ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-desktop ul li a {
    font-size: 1rem;
    font-weight: 900;
    color: #333;
    transition: color 0.3s;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.nav-desktop ul li a:hover {
    color: var(--primary-green);
}

/* New Header Button */
.btn-header-new {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
    white-space: nowrap;
    font-family: "M PLUS Rounded 1c", sans-serif;
    max-width: 200px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1;
}

.btn-header-new:hover {
    background-color: var(--dark-green);
}

/* Hamburger Menu (Hidden by default on large screens) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* Mobile Menu Drawer (Hidden by default) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 150;
    padding-top: 80px;
    /* Space for header */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    letter-spacing: 0.08em;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-cta {
    text-align: center;
    width: 100%;
    display: block;
    margin: auto;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Responsive Logic for Header (Breakpoint 1440px) */
@media (max-width: 1440px) {
    .header-right {
        display: none;
        /* Hide desktop nav */
    }

    .hamburger {
        display: flex;
        /* Show hamburger */
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

/* Hero Section (New) */
.hero-new {
    /* Watercolor texture background simulation */
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 191, 1) 32%, rgba(225, 240, 180, 1) 62%, rgba(212, 235, 175, 1) 100%);
    padding: 50px 20px 80px;
    position: relative;
    /* overflow-x: hidden; */
    z-index: 99;
}

.hero-container-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1224px;
    width: 100%;
    padding: 0;
    position: relative;
}

/* Left Content */
.hero-left {
    flex: 1;
    padding-top: 50px;
}

.hero-title {
    font-size: 2.5rem;

    /* or a nice Mincho font */
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 56px;
    color: #333;
    letter-spacing: 0.08em;
    display: inline-block;
    position: relative;
}

.hero-checkpoints-new {
    /* margin-bottom: 40px; */
}

.hero-bg-sticker-left-wrapper {
    max-width: 656px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-title-swallow-wrapper {
    max-width: 69px;
    width: 100%;
    position: absolute;
    right: 0;
    top: -33px;
}

.hero-bg-sticker-right-wrapper {
    max-width: 410px;
    width: 40%;
    right: 0;
    position: absolute;
    bottom: -5vw;
}

.checkpoint-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

.check-icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.highlight {
    background: linear-gradient(transparent 60%, #FFEF8F 60%);
}

.hero-illustration {
    max-width: 450px;
    margin-top: 20px;
}

/* Right Form */
.hero-right {
    /* flex: 0 0 500px; */
    /* Fixed width for form */
    max-width: 720px;
    width: 100%;
}

.hero-form-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.form-header-bird-wrapper {
    position: absolute;
    top: -75px;
    right: 25px;
    max-width: 130px;
    z-index: 10;
    width: 100%;
}


.form-header h2 {
    font-size: 1.5rem;
    /* margin-bottom: 5px; */
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.time-badge {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-col {
    flex: 1;
}

.form-col-full {
    width: 100%;
}

label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

.required {
    background: #EC4949;
    color: white;
    font-size: 0.75rem;
    padding: 4px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #A0A0A0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    letter-spacing: 0.04em;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #000;
    font-weight: 500;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--primary-green);
    outline: none;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #A0A0A0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    letter-spacing: 0.04em;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #000;
    font-weight: 500;
    min-height: 200px;
    resize: vertical;
}

textarea:focus {
    border-color: var(--primary-green);
    outline: none;
}

.any {
    background: #CCCCCC;
    color: white;
    font-size: 0.75rem;
    padding: 4px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.checkbox-group label {
    display: block;
    font-weight: normal;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    letter-spacing: 0.04em;
}

.checkbox-group input {
    margin-right: 8px;
    /* transform: scale(1.2); */
    width: 20px;
    height: 20px;
}

::placeholder {
    color: #A0A0A0;
}

.btn-submit-green {
    width: 100%;
    background: var(--primary-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 26px 15px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4);
    transition: background 0.3s, transform 0.2s;
    /* margin-top: 10px; */
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
}

.btn-submit-green:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container-new {
        flex-direction: column;
    }

    .hero-right {
        flex: auto;
        width: 100%;
    }

    .hero-form-card {
        padding: 20px;
    }
}

/* Problem Section (New) */
.section-problem {
    /* Watercolor texture background */
    background: radial-gradient(circle at 10% 20%, rgba(255, 100, 100, 0.1), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(100, 255, 100, 0.1), transparent 30%),
        linear-gradient(180deg, #fffcf5 0%, #fff 100%);
    padding: 100px 0px 0;
    background: url(../images/problem-bg.png) no-repeat center;
    background-size: cover;
    z-index: 9;
    position: relative;
}

.problem-card {
    /* background: white; */
    border-radius: 16px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); */
    /* Soft shadow */
    padding: 56px 20px 120px;
    position: relative;
    /* max-width: 1100px; */
    margin: 0 auto;
    text-align: center;
    background: url(../images/problem-arrow-bg.png) no-repeat center;
    background-size: contain;
}

/* Header Icon */
.problem-header-icon img {
    /* width: 120px; */
    /* margin-bottom: 20px; */
}

/* Title */
.problem-title h2 {
    font-size: 2rem;
    color: #333;
    font-family: 'Times New Roman', serif;
    margin-bottom: 40px;
    font-weight: 900;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

/* Content Area */
.problem-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}

/* Illustrations */
.problem-ill-left,
.problem-ill-right {
    /* flex: 0 0 200px; */
    max-width: 188px;
    width: 100%;
}

.problem-ill-left img,
.problem-ill-right img {
    width: 100%;
    height: auto;
}

/* Checklist Area */
.problem-checklist-area {
    /* flex: 1; */
    /* padding: 0 40px; */
    text-align: left;
    max-width: 664px;
    width: 100%;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line text */
    padding-bottom: 20px;
    border-bottom: 1px dotted #D2D2D2;
    /* Dotted separator */
    padding: 0 40px 20px;
}

.problem-list li:last-child {
    /* border-bottom: none; */
}

.checkbox-square {
    width: 24px;
    height: 24px;
    border: 1px solid #bbb;
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 4px;
    /* Visual adjustments */
}

.problem-container {
    max-width: 1244px;
    width: 100%;
    padding: 0;
}

.problem-header-icon {
    max-width: 194px;
    width: 100%;
    margin: auto;
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
}

.problem-text span {
    font-weight: 500;
}

/* Text Styling */
.problem-text {
    font-size: 1.25rem;
    color: #333333;
    font-weight: 500;
    line-height: 1.6;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

.text-highlight-green {
    color: var(--primary-green);
    font-weight: bold;
}

/* Footer Messages */
.problem-footer {
    text-align: center;
}

.message-main {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: "Zen Old Mincho", serif;
}

.message-sub {
    font-size: 1.625rem;
    color: #333;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .problem-content {
        flex-direction: column;
        gap: 40px;
    }

    .problem-ill-left,
    .problem-ill-right {
        order: -1;
        /* Move illustrations to top or hide if preferred */
        width: 150px;
        display: none;
        /* Hide for cleaner mobile view as per standard practice, or keep stack */
    }

    /* Let's show one illustration at top if needed, or just hide to focus on text */
    .problem-ill-left {
        display: block;
        order: 1;
        margin-bottom: 20px;
    }

    .problem-checklist-area {
        order: 2;
        padding: 0;
    }

    .problem-ill-right {
        display: block;
        order: 3;
        margin-top: 20px;
    }

    .problem-card {
        padding: 40px 20px;
    }

    .problem-title h2 {
        font-size: 1.5rem;
    }

    .message-main {
        font-size: 1.4rem;
    }
}

/* Solution / Efficiency Section (New) */
.section-solution {
    /* background: radial-gradient(circle at 10% 20%, rgba(255, 100, 100, 0.1), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(100, 255, 150, 0.2), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 250, 240, 0.5), transparent 50%),
        linear-gradient(180deg, #fff 0%, #fffbf0 100%); */
    padding: 100px 0;
    position: relative;
    /* overflow: hidden; */
}

.solution-header {
    margin-bottom: 60px;
}

.swallow-ill-center img {
    width: 140px;
    margin-bottom: 20px;
}

.solution-header h2 {
    font-size: 2.2rem;
    font-family: 'Times New Roman', serif;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #FFEF8F 60%);
    padding: 0 5px;
}

.solution-sub {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 2px;
}

/* Solution Grid */
.solution-grid {
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    /* gap: 30px; */
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    /* flex: 0 0 300px; */
    /* Base width */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card-title {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.card-before {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    /* border-bottom: 1px solid #ddd; */
}

.label-gray {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.time-red {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: bold;
}

.card-after {
    background: linear-gradient(135deg, #b09b6b 0%, #998455 100%);
    /* Gold/Brown tone */
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.card-after::before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼';
    position: absolute;
    top: -15px;
    /* Adjust based on design arrow */
    left: 50%;
    transform: translateX(-50%);
    color: #b09b6b;
    font-size: 1.2rem;
    display: none;
    /* Hide for now as pure css triangle is better if needed, or simple */
}

/* CSS Triangle for Arrow */
.card-after::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: #b09b6b transparent;
    display: block;
    width: 0;
    transform: rotate(180deg);
    /* Pointing down from gray to gold? actually typical design is overlapping. Let's keep simple block for now */
    display: none;
}

.label-small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.time-zero {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', serif;
}

.time-zero .unit {
    font-size: 1rem;
    margin-left: 5px;
}

/* CTA Wrapper */


.cta-message {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    font-size: 1.4rem;
    font-weight: bold;
}

.text-green-large {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0 5px;
}

.btn-cta-green-wide {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px 80px;
    border-radius: 50px;
    text-decoration: none;
    /* box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4); */
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.btn-cta-green-wide:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .solution-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solution-header h2 {
        font-size: 1.6rem;
    }

    .solution-grid {
        flex-direction: column;
        align-items: center;
    }

    .solution-card {
        width: 100%;
        max-width: 400px;
        flex: auto;
    }

    .people-ill {
        position: relative;
        width: 150px;
        margin: 0 auto 20px;
        bottom: 0;
        right: auto;
    }

    .btn-cta-green-wide {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 90%;
    }
}



/* Solution / Efficiency Section (New) */
.section-solution {
    /* background: radial-gradient(circle at 10% 20%, rgba(255, 100, 100, 0.1), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(100, 255, 150, 0.2), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 250, 240, 0.5), transparent 50%),
        linear-gradient(180deg, #fff 0%, #fffbf0 100%); */
    padding: 80px 20px;
    position: relative;
    /* overflow: hidden; */
    /* z-index: 999999; */
}

.solution-header {
    margin-bottom: 46px;
}

.swallow-ill-center img {
    width: 140px;
    margin-bottom: 20px;
}

.bg-illustration.solution-illustration01 {
    max-width: 275px;
    width: 30%;
    top: -2vw;
    left: 0;
    /* z-index: 999999999; */
}

.bg-illustration {
    position: absolute;
}

.bg-illustration.solution-illustration02 {
    max-width: 289px;
    width: 35%;
    top: -3.2vw;
    right: 0;
}

.solution-illustration-icon01 {
    max-width: 305px;
    width: 100%;
    position: absolute;
    top: -50px;
    left: -80px;
}

.solution-illustration-icon01 {}

.solution-illustration-icon02 {
    max-width: 305px;
    width: 100%;
    position: absolute;
    top: -70px;
    right: -40px;
}

.solution-header h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 900;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.solution-header h2 span.highlight-yellow {
    font-size: 2.75rem;
}

.highlight-yellow {
    background: linear-gradient(transparent 70%, #FFEF8F 60%);
    padding: 0 5px;
}

.solution-sub {
    font-size: 1.625rem;
    color: #333;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
}

/* Solution Grid */
.section-solution .container {
    max-width: 1132px;
    width: 100%;
    padding: 0;
    position: relative;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 26px 30px;
    margin-bottom: 46px;
    max-width: 1132px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
}

.solution-card {
    /* flex: 0 0 300px; */
    /* Base width */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card-title {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.card-before {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    /* border-bottom: 1px solid #ddd; */
}

.label-gray {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.time-red {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: bold;
}

.card-after {
    background: linear-gradient(135deg, #b09b6b 0%, #998455 100%);
    /* Gold/Brown tone */
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.card-after::before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼';
    position: absolute;
    top: -15px;
    /* Adjust based on design arrow */
    left: 50%;
    transform: translateX(-50%);
    color: #b09b6b;
    font-size: 1.2rem;
    display: none;
    /* Hide for now */
}

.label-small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.time-zero {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', serif;
}

.time-zero .unit {
    font-size: 1rem;
    margin-left: 5px;
}

/* CTA Wrapper */



.cta-message {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    font-size: 1.4rem;
    font-weight: bold;
}

.text-green-large {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0 5px;
}

.btn-cta-green-wide {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px 80px;
    border-radius: 50px;
    text-decoration: none;
    /* box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4); */
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.btn-cta-green-wide:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .solution-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solution-header h2 {
        font-size: 1.6rem;
    }

    .solution-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Solution Card - Detailed Design */
.solution-card {
    /* flex: 0 0 280px; */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    max-width: 355px;
    width: 100%;
    position: relative;
    z-index: 9;
}

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

.card-title {
    background: #fff;
    padding: 25px 0 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.625rem;
    color: #000;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.card-before {
    background: #F5F5F5;
    /* Light Gray */
    border-radius: 16px;
    margin: 0 auto 25px;
    /* Margin inside the card */
    padding: 15px;
    text-align: center;
    position: relative;
    max-width: 264px;
    width: 100%;
}

.label-gray {
    display: inline-block;
    font-size: 1rem;
    color: #A0A0A0;
    margin-right: 12px;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.time-red {
    font-size: 1.25rem;
    color: #EC4949;
    font-weight: 500;
    display: inline-block;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
}

.time-red span {
    font-size: 2rem;
    margin-right: 2px;
    letter-spacing: 0;
}

.time-red .unit {
    font-size: 1rem;
    color: #e74c3c;
}

.card-after {
    background: #a98e58;
    /* Gold/Brown flat color as per image */
    padding: 24px 20px 16px;
    text-align: center;
    color: white;
    position: relative;
    margin-top: auto;
    /* Push to bottom */
}

/* White Triangle pointing down into the brown area */
.card-after::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: #ffffff transparent transparent transparent;
    display: block;
}

.label-small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.time-zero {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: "M PLUS Rounded 1c", sans-serif;
    /* letter-spacing: 0.08em; */
}

.time-zero .unit {
    font-size: 1.5rem;
    margin-left: 4px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* CTA Wrapper */
.solution-cta-wrapper {
    position: relative;
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
    /* padding-top: 40px; */
    width: 100%;
}

.people-ill {
    position: absolute;
    right: -7vw;
    bottom: -1vw;
    max-width: 496px;
    z-index: 0;
    width: 50%;
}

.cta-message {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-size: 1.625rem;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
}

.cta-message .text-green-large {
    padding: 0;
    font-size: 2rem;
    font-weight: 500;
}

span.line-left {
    color: var(--primary-green);
    font-weight: 700;
}

span.line-right {
    color: var(--primary-green);
    font-weight: 700;
}

.text-green-large {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0 5px;
}

.btn-cta-green-wide {
    display: inline-block;
    background: #28B472;
    color: white;
    font-size: 1.65rem;
    font-weight: 500;
    padding: 27px 20px;
    border-radius: 100px;
    text-decoration: none;
    /* box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4); */
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    width: 100%;
    letter-spacing: 0.08em;
    font-family: "M PLUS Rounded 1c", sans-serif;
    line-height: 1;
}

.btn-cta-green-wide:hover {
    background: #28B472;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
}

/* Placeholder Images - Gray Background Request */
.swallow-ill-center img {
    background-color: #dcdcdc;
    /* Visible gray background */
    border-radius: 8px;
    display: block;
    /* Ensure bg takes space */
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .solution-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solution-card {
        width: 100%;
        max-width: 400px;
        flex: auto;
    }

    .people-ill {
        position: relative;
        width: 150px;
        margin: 0 auto 20px;
        bottom: 0;
        right: auto;
    }

    .btn-cta-green-wide {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 90%;
    }
}

/* Features Section (4 Pillars) */
.section-features-new {
    padding: 80px 0px 80px;
    /* background: radial-gradient(circle at 10% 20%, rgba(255, 255, 200, 0.4), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(200, 255, 200, 0.4), transparent 40%),
        linear-gradient(135deg, #fffff0 0%, #f9fff9 100%); */
    position: relative;
    overflow: hidden;
    background: url(../images/features-bg.png) no-repeat center;
    background-size: cover;
}

.border-box {
    line-height: 0;
}

/* Header Area */
.features-header-new {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.features-intro {
    font-size: 1.625rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
}

.text-bold-large {
    font-weight: bold;
    font-size: 2.75rem;
    color: #333;
}

.features-title-bg {
    position: relative;
    display: inline-block;
    /* padding: 20px 0; */
    padding: 0 120px;
}

.features-swallow01-box {
    position: absolute;
    right: 0;
    top: -2%;
}

.features-title-bg .bg-text {
    position: absolute;
    left: 0;
    /* transform: translateX(-50%); */

    /* Use a cursive google font if available, fallback serif */
    /* font-style: italic; */
    /* font-size: 5rem; */
    /* color: rgba(0, 0, 0, 0.05); */
    /* white-space: nowrap; */
    /* z-index: -1; */
    /* pointer-events: none; */
    /* max-width: 308px; */
    width: 100%;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

.features-title-bg .main-title {
    font-size: 2rem;
    color: #333;
    font-weight: 900;
    margin: 0;
    position: relative;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.features-title-bg .number-large {
    font-size: 5rem;
    color: var(--primary-green);
    /* margin: 0 5px; */
    font-family: 'Times New Roman', serif;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
}

.title-deco-img {
    position: absolute;
    top: -20px;
    right: -60px;
    width: 60px;
    opacity: 0.8;
}

/* Grid Layout */
.section-features-new .container {
    padding: 0;
    max-width: 1224px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 24px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

/* Card Styling */
.feature-card-new {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 92px 20px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card-new:hover {
    /* transform: translateY(-5px); */
}

.card-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 99px;
    /* height: 50px; */
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-pink {
    background-color: #ff9999;
}

.badge-orange {
    background-color: #ffcc66;
}

.badge-green {
    background-color: #66cc99;
}

.badge-blue {
    background-color: #6699cc;
}

.feature-card-new h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #333;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.card-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
}

.text-green-highlight {
    color: var(--primary-green);
    font-weight: bold;
}

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

    .features-title-bg .bg-text {
        font-size: 3.5rem;
    }

    .features-header-new {
        margin-bottom: 40px;
    }
}

/* Recommend Section */
.section-recommend {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.recommend-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Zen Old Mincho", serif;
}

.functions-swallow01-box {
    max-width: 160px;
    width: 100%;
    position: absolute;
    right: 13%;
    z-index: 99999;
    bottom: -42%;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Grid Layout */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.recommend-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.card-num {
    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
    font-family: 'Times New Roman', serif;
}

.recommend-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.recommend-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-img-wrapper {
    margin-top: auto;
}

.card-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #dcdcdc;
    /* Gray background for placeholder */
}

/* Recommend List (Card 2) */
.recommend-list {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 10px;
}

.recommend-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #444;
}

/* Support Images (Card 3) */
.support-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.img-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #dcdcdc;
    /* Gray background */
}

/* CTA Area */
.recommend-cta {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.btn-cta-green {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s;
}

.btn-cta-green:hover {
    background: var(--dark-green);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .recommend-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

/* Usage Flow */
.section-flow {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

.flow-header {
    margin-bottom: 50px;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.flow-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    width: 28%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eee;
}

.step-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.flow-img {
    margin-bottom: 20px;
}

.flow-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #dcdcdc;
    /* Gray background */
}

.flow-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.flow-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    align-self: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Final CTA Section */
.section-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

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

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-cta-white {
    background: white;
    color: var(--primary-green);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-cta-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-gold {
    background: var(--accent-yellow);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-cta-gold:hover {
    background: #EC9533;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-contact {
    margin-top: 20px;
}

.cta-contact p {
    margin-bottom: 5px;
    font-size: 1rem;
    opacity: 0.9;
}

.phone-number {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
}

.phone-number:hover {
    color: var(--accent-yellow);
}

.office-hours {
    font-size: 0.9rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-white,
    .btn-cta-gold {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

/* System Functions Section - Refined Design */
.section-functions {
    padding: 56px 0 0;
    /* background-color: #fff66b; */
    /* Vibrantly yellow as in the image */
    /* background-image:
        radial-gradient(#a2d5c6 10%, transparent 10%),
        radial-gradient(#fafad2 10%, transparent 10%); */
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    position: relative;
    /* overflow: hidden; */
}

.section-functions .container {
    max-width: 1224px;
}

.bg-illustration.features-illustration01 {
    max-width: 285px;
    width: 30%;
    right: 0;
    top: 7vw;
}

.bg-illustration.features-illustration02 {
    max-width: 292px;
    width: 30%;
    left: 0;
    top: 12vw;
}

.bg-illustration.features-illustration03 {
    max-width: 325px;
    width: 30%;
    right: 0;
    bottom: 10vw;
}

.features-inner {
    position: relative;
    padding: 0 20px;
}

.bg-illustration.features-illustration04 {
    max-width: 342px;
    width: 30%;
    left: 0;
    bottom: -13vw;
}

.bg-illustration.features-illustration05 {
    max-width: 246px;
    width: 23%;
    right: 0;
    top: 5vw;
}

.bg-illustration.features-illustration06 {
    max-width: 283px;
    width: 22%;
    right: 0;
    bottom: 12vw;
}

.bg-illustration.features-illustration07 {
    max-width: 309px;
    width: 32%;
    bottom: -3vw;
    left: 0;
}

/* Background patterns (dots, triangles, ripples) */



.deco-triangles {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 250px;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20L10 0l10 20H0z' fill='%23f1c40f' fill-opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.functions-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 99;
    /* display: inline-block; */
    /* Allows the container to fit the text width for relative positioning of birds */
}

.chevron-deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.chevron-down {
    width: 24px;
    height: 10px;
    background-color: var(--primary-green);
    clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 50%, 50% 100%, 0 50%);
}

/* Swallows positioning */
.swallows-deco {
    position: absolute;
    top: -30px;
    right: -100px;
    /* Adjust to place on the right */
    width: 120px;
}

.swallows-deco img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background-color: transparent !important;
}

/* Tabs - Pill Shaped Container */
.function-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    max-width: 1020px;
    width: 100%;
    margin: auto;
    margin-bottom: 32px;
}

.function-tabs {
    background: #fff;
    padding: 12px;
    border-radius: 100px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    gap: 12px;
}

.func-tab {
    background: transparent;
    color: var(--primary-green);
    border: none;
    padding: 20px 5px;
    border-radius: 100px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    letter-spacing: 0.08em;
    max-width: 156px;
    width: 100%;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    line-height: 1;
}

.func-tab.active {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

/* Slider Container */
.function-slider-container {
    position: relative;
    /* max-width: 900px; */
    margin: 0 auto 32px;
    z-index: 1;
    /* padding: 0 80px; */
}

.function-slides {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 400px;
    /* padding: 0 80px; */
    max-width: 1056px;
    margin: auto;
}

.func-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.func-slide.active {
    display: block;
}

.func-slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slider arrows - Gray Circular */
.slider-arrow {
    background: #a9a28c;
    /* Beige/Gray as in image */
    color: white;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    width: 56px;
    height: 56px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 10;
    font-weight: 400;
    padding-bottom: 5px;
}

.slider-arrow:hover {
    opacity: 1;
    background: #948c75;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Dots - Teal Green */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #2ecc71;
    /* transform: scale(1.1); */
}

/* Bottom CTA Decor Lines */
.cta-message-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.deco-line-left,
.deco-line-right {
    width: 40px;
    height: 3px;
    background-color: #2ecc71;
    position: relative;
    transform: rotate(-45deg);
    /* Slanted lines */
}


.text-green-large {
    color: var(--primary-green);
    font-size: 1.8rem;
    padding: 0 5px;
}

/* Large Green CTA Button */
.btn-green-gradient {
    display: inline-block;
    background: #27ae60;
    /* Solid vivid green */
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 80px;
    border-radius: 50px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    min-width: 400px;
}

.btn-green-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.5);
    background: #2ecc71;
}

/* Responsive fixes */
@media (max-width: 1100px) {
    .function-slider-container {
        width: 90%;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .function-tabs {
        flex-wrap: wrap;
        border-radius: 20px;
        justify-content: center;
    }

    .swallows-deco {
        margin-left: 0;
        margin-top: 10px;
    }

    .cta-message-wrapper {
        gap: 10px;
    }

    .deco-line-left,
    .deco-line-right {
        display: none;
    }
}

/* Recommend Section */
.section-recommend {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.recommend-header {
    margin-bottom: 50px;
}

footer.footer {
    background: url(../images/f_bg.png) no-repeat center;
    background-size: cover;
    padding: 70px 0;
}

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

.footer-links ul li a {
    font-size: 1rem;
    color: #000;
    font-weight: 900;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.footer-copyright {
    text-align: center;
    /* padding-bottom: 30px; */
    font-size: 0.75rem;
    color: #000;
    letter-spacing: 1px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
}

/* Re-apply responsive adjustments that might have been lost or need ensuring */
@media (max-width: 768px) {
    .header-container {
        /* flex-direction: column; */
    }

    .hero-container-new {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: auto;
        width: 100%;
    }

    .problem-content {
        flex-direction: column;
    }

    .features-grid,
    .flow-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .step-card {
        width: 100%;
    }

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

/* Strategic Health Management Section */
.section-strategic {
    background-color: #fcfbf9;
    /* Light paper-like bg */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
    /* font-family: 'Noto Serif JP', serif; */
    /* Use Serif for this section as per design feel */
    background: url(../images/strategic-bg.png) no-repeat center;
    background-size: cover;
}

.strategic-title .highlight-yellow {
    font-size: 2.75rem;
}

.section-strategic .container {
    padding: 0;
    max-width: 1132px;
}

/* Header */
.strategic-header {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.strategic-label-wrapper {
    /* margin-bottom: 15px; */
    display: inline-block;
    position: relative;
}

.strategic-label-bg {
    background-color: #74b9ff;
    /* Blue paint color */
    color: white;
    padding: 8px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    /* Simulating paint stroke slightly */
    transform: rotate(-2deg);
    /* Slight tilt */
    display: inline-block;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

/* Optional: Add rough edges via clip-path if needed, but simple block is ok for now */

.strategic-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
}

.strategic-swallow01-box {
    max-width: 169px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -63%;
}

.strategic-swallow-top {
    position: absolute;
    top: -20px;
    right: 15%;
    width: 100px;
    z-index: 10;
}

.strategic-circle-deco {
    position: absolute;
    top: -60px;
    right: 5%;
    width: 250px;
    z-index: 0;
    opacity: 0.6;
}

/* Blue Bar */
.strategic-blue-bar {
    background: #72AFF5;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.625rem;
    font-weight: 600;
    position: relative;
    /* max-width: 1000px; */
    margin: 0 auto;
    border-radius: 8px 8px 0 0;
    /* Top rounded only or standard box? Design looks like a banner */
    z-index: 5;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.strategic-blue-bar strong {
    font-weight: 700;
    /* margin-left: 10px; */
    font-size: 2rem;
}

.blue-bar-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #2980b9;
    /* Match average blue */
}

/* Main Card */
.strategic-main-card {
    background: white;
    /* max-width: 1000px; */
    margin: 0 auto;
    /* Connects with blue bar */
    padding: 32px 20px 50px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.strategic-main-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 24px 0 24px;
    border-color: #72AFF5 transparent transparent transparent;
    display: block;
}

.strategic-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: "Zen Old Mincho", serif;
}

.strategic-card-title .text-green-large {
    font-size: 2.5rem;
}

span.strategic-mini {
    font-size: 1.625rem;
}

.strategic-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    max-width: 933px;
    margin: auto;
}

/* Checklist */
.strategic-checklist-area {
    /* flex: 1; */
    max-width: 560px;
    width: 100%;
}

.strategic-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    background-color: #F3F3F3;
    /* Light gray bg */
    padding: 24px;
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 1.25rem;
    transition: transform 0.2s;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.checklist-item:hover {
    /* transform: translateX(5px); */
}

.check-icon-blue {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: #74b9ff;
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Image Area */
.strategic-image-area {
    /* flex: 1; */
    text-align: center;
    position: relative;
    max-width: 440px;
    width: 100%;
    bottom: -20px;
    right: -20px;
}

.strategic-image-area img {
    max-width: 100%;
    height: auto;
}

/* Footer Section */
.strategic-footer {
    position: relative;
    /* padding-bottom: 60px; */
}

.strategic-footer-text {
    font-size: 1.625rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 32px;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.strategic-catchphrase {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
}

span.strategic-catchphrase-mini {
    font-size: 1.625rem;
}

.strategic-catchphrase .text-green-xl {
    font-size: 2.5rem;
    margin: 0;
}

.text-green-xl {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin: 0 5px;
}

.strategic-dots-deco {
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: 120px;
    z-index: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    .strategic-content-flex {
        flex-direction: column-reverse;
        /* Image on top? or bottom? usually top in mobile or bottom. Let's keep typical stack */
    }

    .strategic-image-area {
        margin-bottom: 30px;
    }

    .strategic-blue-bar {
        font-size: 1rem;
        border-radius: 8px;
        /* Detach in mobile? or keep. Keep structure */
    }

    .strategic-circle-deco {
        right: -50px;
        width: 150px;
    }

    .strategic-title {
        font-size: 2rem;
    }
}

/* Welfare Service (Benefits) Section */
.section-benefits {
    position: relative;
    padding: 80px 20px 0;
    /* Same textured background as Strategic or slightly different? Using same for continuity */
    /* background-color: #fcfbf9; */
    /* background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); */
    font-family: 'Noto Serif JP', serif;
}

.benefits-header {
    position: relative;
    margin-bottom: 40px;
    z-index: 99;
}

.benefits-label-wrapper {
    position: relative;
    display: inline-block;
    /* margin-bottom: 20px; */
}

.benefits-label-bg {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 10px;
}

.benefits-watercolor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    z-index: 1;
    opacity: 0.9;
}

/* Ensure placehold.co image doesn't override layout */
.benefits-watercolor img {
    height: auto;
    width: 100%;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #444;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
}

.num-large {
    font-size: 2.75rem;
    /* margin: 0 5px; */
    font-family: "Zen Old Mincho", serif;
}

.highlight-yellow-long {
    background: linear-gradient(transparent 70%, #FFEF8F 60%);
    padding: 0 5px;
}

.benefits-sub-text {
    font-size: 1.625rem;
    color: #333;
    line-height: 1.4;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.benefits-swallow01-box {
    max-width: 183px;
    width: 100%;
    position: absolute;
    left: -2%;
    z-index: 99;
    bottom: -43%;
}

/* Decorations */
.benefits-swallow-left {
    position: absolute;
    left: 5%;
    top: 20px;
    width: 120px;
    z-index: 0;
}

.benefits-dots-top {
    position: absolute;
    right: 2%;
    top: -30px;
    width: 140px;
    opacity: 0.7;
    z-index: 0;
}

/* Orange Bar */
.benefits-orange-bar {
    background: #EC9533;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.625rem;
    font-weight: 600;
    position: relative;
    /* max-width: 1000px; */
    margin: 0 auto;
    border-radius: 16px 16px 0 0;
    z-index: 5;
    letter-spacing: 0.08em;
    font-family: "Zen Old Mincho", serif;
}

.benefits-orange-bar strong {
    font-size: 2rem;
    font-weight: 900;
    /* margin: 0 5px; */
    /* border-bottom: 2px solid rgba(255, 255, 255, 0.8); */
    /* Emphasis underline */
}

.orange-bar-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #e28026;
    /* Match approx orange */
}

/* Main Card */
.benefits-main-card {
    background: white;
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 52px 20px 80px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.benefits-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.benefits-card-title span.text-green-bold {
    font-size: 2.75rem;
}

.text-green-bold {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 2rem;
    margin: 0 5px;
}

/* Circles Wrapper */
.benefits-circles-wrapper {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    /* Wrap on small screens */
    max-width: 900px;
    margin: auto;
    /* padding-left: 15px; */
}

.benefit-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid #eee;
    /* background: white; */
    position: relative;
    padding: 20px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s;
}

.benefit-circle:hover {
    /* transform: scale(1.05); */
}

.circle-green {
    border-color: #D2EDA8;
    /* Light green */
    /* margin-right: -30px; */
}

.circle-blue {
    border-color: rgb(0 163 210 / 50%);
    /* Light blue */
    margin-left: -30px;
}

.benefit-circle.circle-blue.circle-blue02 {
    border-color: rgb(128 206 226 / 60%);
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.circle-logo-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    /* font-size: 1.6rem; */
    /* color: #555; */
    margin-bottom: 25px;
}

.circle-logo-text.text-blue {
    color: #0288d1;
    */ margin-bottom: 25px;
    */ margin-bottom: 25px;
    margin-bottom: 10px;
}

.circle-logo-text.text-navy {
    color: #2c3e50;
    margin-bottom: 10px;
}

.logo-sub {
    display: block;
    font-size: 0.6rem;
    color: #999;
    font-weight: normal;
    margin-top: -5px;
}

.circle-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.04em;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.circle-tags {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
    border-radius: 8px;
    background: #F3F3F3;
    padding: 4px 12px;
    font-weight: 500;
}

.tag-gray {
    background: #F3F3F3;
    font-size: 1rem;
    padding: 0;
    color: #333;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

.tag-gray strong {
    color: var(--primary-green);
}

/* Bottom Dots */
.benefits-dots-bottom {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 100px;
    z-index: 10;
}

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

    .benefit-circle {
        width: 270px;
        height: 270px;
        margin-bottom: 20px;
    }

    .circle-desc {
        font-size: .9rem !important;
    }

    .benefits-dots-top,
    .benefits-dots-bottom {
        width: 80px;
    }

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

    .num-large {
        font-size: 2.2rem;
    }
}

/* Use Cases Section (New) */
.section-cases {
    /* background: radial-gradient(circle at 10% 20%, rgba(255, 100, 100, 0.05), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(100, 255, 100, 0.05), transparent 30%),
        #fffcf5; */
    padding: 40px 20px 0;
    position: relative;
}

.cases-header {
    margin-bottom: 40px;
    font-family: "Zen Old Mincho", serif;
}

.cases-title {
    font-size: 1.625rem;
    color: #333;
    /* margin-bottom: 10px; */
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cases-arrow-down {
    color: #EC9533;
    /* font-size: 1.5rem; */
    font-weight: bold;
    margin-top: 12px;
}

/* Grid Layout */
.cases-grid {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    /* max-width: 1100px; */
    margin: 0 auto;
}

.case-card {
    background: white;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px 24px 0;
    /* No padding bottom, footer box handles it */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
    width: 100%;
}

.case-card:first-child .case-list {
    max-width: 240px;
    width: 100%;
    margin: auto;
}

/* Card Content */
.case-card-header {
    margin-bottom: 16px;
}

.case-number {
    font-size: 1.25rem;
    color: #EC9533;
    margin-bottom: 16px;
    /* display: inline-block; */
    border-bottom: 2px solid #EC9533;
    padding-bottom: 8px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.case-number strong {
    font-size: 2rem;
    font-weight: 800;
}

.case-card-title {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.5;
    font-weight: bold;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
    margin-top: 16px;
}

.case-img {
    margin: 0 0 16px;
    text-align: center;
}

.case-img img {
    /* max-width: 80%; */
    /* Creating the framed look inside the card */
    /* border: 1px solid #eee; */
    /* padding: 5px; */
    /* border-radius: 5px; */
}

.case-logo {
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-small {
    /* font-size: 1.2rem; */
    font-weight: bold;
    color: #555;
    letter-spacing: 1px;
}

.logo-sub-small {
    font-size: 0.7rem;
    margin-left: 5px;
    color: #888;
}

/* List with arrows */
.case-list {
    /* padding-bottom: 24px; */
    /* padding: 0 10px; */
    min-height: 124px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
}

.case-list li {
    font-size: 1.125rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 34px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.case-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #EC9533;
    font-weight: bold;
    font-size: 1.625rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer Box */
.case-footer-box {
    background: #EC9533;
    color: white;
    text-align: center;
    padding: 20px;
    margin: auto -24px -24px;
    /* Stretch to edges and bottom */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-weight: 500;
    font-size: 1.25em;
    line-height: 1.5;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100px; */
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.04em;
}

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

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

/* Bottom CTA Section (New) */
.section-bottom-cta {
    background: linear-gradient(135deg, #fff9c4 0%, #a5d6a7 100%);
    /* Yellow to Green gradient approximation */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url(../images/bottom-cta-bg.png) no-repeat center;
    background-size: cover;
    padding: 56px 20px;
}

.bg-illustration.bottom-cta-illustration02 {
    max-width: 292px;
    width: 100%;
    position: absolute;
    top: 53%;
    right: 0;
    transform: translateY(-50%);
}

.bg-illustration.strategic-illustration02 {
    left: 0;
    max-width: 240px;
    width: 30%;
    top: 8vw;
}

.bg-illustration.strategic-illustration01 {
    max-width: 297px;
    width: 30%;
    right: 0;
    top: 6vw;
}

.bg-illustration.strategic-illustration04 {
    max-width: 315px;
    width: 30%;
    left: 0;
    top: 13vw;
}

.section-strategic-inner {
    padding: 0 20px;
}

.bg-illustration.strategic-illustration03 {
    max-width: 268px;
    width: 25%;
    right: 0;
    top: -5vw;
}

.bg-illustration.strategic-illustration06 {
    max-width: 320px;
    width: 30%;
    left: 0;
    top: 26vw;
}

.bg-illustration.strategic-illustration05 {
    max-width: 280px;
    width: 30%;
    right: 0;
    top: -8vw;
}

.bg-illustration.bottom-cta-illustration01 {
    max-width: 292px;
    width: 100%;
    position: absolute;
    top: 5%;
    left: 0;
}

/* Background Decorations (Dots) - simplified simulation */


.container-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1132px;
    width: 100%;
    padding: 0;
}

.bottom-cta-header {
    margin-bottom: 32px;
    color: #333;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cta-msg-small {
    font-size: 2rem;
    /* margin-bottom: 5px; */
}

.cta-msg-sub {
    font-size: 2rem;
}

.text-serif-large {
    font-size: 2.75rem;
    font-weight: bold;
    margin: 0 5px;
}

/* CTA Card */
.bottom-cta-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    max-width: 1132px;
    width: 100%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.bottom-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 927px;
    width: 100%;
    margin: 0 auto 32px;
}

/* Info Box */
.cta-info-box {
    background: #F3F3F3;
    padding: 40px 20px;
    border-radius: 16px;
    /* flex: 1; */
    max-width: 450px;
    width: 100%;
}

.cta-info-title {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #333;
    max-width: 290px;
    width: 100%;
    margin: 0 auto 24px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.cta-check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 284px;
    width: 100%;
    margin: auto;
}

.cta-check-list li {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.check-circle-s {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: var(--primary-green);
    color: white;
    font-size: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Right Illustration */
.cta-ill-right {
    /* flex: 1; */
    text-align: center;
    max-width: 460px;
    width: 100%;
}

.cta-ill-right img {
    max-width: 100%;
    /* max-height: 200px; */
}

/* Button */
.bottom-cta-btn-wrapper {
    /* margin-top: 10px; */
    max-width: 970px;
    width: 100%;
    margin: auto;
}

.btn-bottom-green {
    display: inline-block;
    background: #28B472;
    color: white;
    font-size: 1.625rem;
    font-weight: 500;
    padding: 27px 20px;
    border-radius: 50px;
    width: 100%;
    /* max-width: 600px; */
    text-align: center;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    transition: all 0.3s;
    font-family: "M PLUS Rounded 1c", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
}

.btn-bottom-green:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .bottom-cta-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .cta-info-box {
        width: 100%;
        text-align: left;
    }

    .cta-check-list li {
        justify-content: flex-start;
    }

    .bottom-cta-card {
        padding: 30px 20px;
    }

    .text-serif-large {
        font-size: 1.6rem;
    }

    .cta-msg-small,
    .cta-msg-sub {
        font-size: 1.1rem;
    }

    .btn-bottom-green {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2rem;
    }

    .checkpoint-item {
        font-size: 1rem;
    }

    .check-icon-circle {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .hero-container-new {
        /* flex-flow: column; */
    }

    .hero-right {
        width: 60%;
    }

    .form-header-bird-wrapper {
        right: 10px;
        top: -100px;
    }

    .problem-text {
        font-size: 0.9rem;
    }

    .checkbox-square {
        width: 18px;
        height: 18px;
    }

    .problem-title h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .message-main {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .message-sub {
        font-size: 1.25rem;
    }

    .problem-list {
        gap: 20px;
    }

    .problem-content {
        margin-bottom: 10px;
    }

    .problem-header-icon {
        width: 18%;
        top: -3vw;
    }

    .bg-illustration.solution-illustration01 {
        width: 18%;
        top: 0;
    }

    .bg-illustration.solution-illustration02 {
        width: 19%;
        top: -1vw;
    }

    .solution-illustration-icon01 {
        width: 22%;
        left: 0;
    }

    .solution-illustration-icon02 {
        width: 20%;
        right: 0;
    }

    .solution-header h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .solution-header h2 span.highlight-yellow {
        font-size: 2.25rem;
    }

    .solution-sub {
        font-size: 1.5rem;
    }

    .solution-grid {
        justify-content: center;
    }

    .people-ill {
        right: 0;
        bottom: 0;
        width: 30%;
    }

    .card-title {
        font-size: 1.5rem;
        padding: 15px 0 10px;
    }

    .card-before {
        padding: 10px;
    }

    span.label-gray {
        margin-right: 8px;
        font-size: 0.9rem;
    }

    .time-red {
        font-size: 1rem;
    }

    .time-red span {
        font-size: 1.75rem;
    }

    .time-zero {
        font-size: 3rem;
    }

    .time-zero .unit {
        font-size: 1.25rem;
    }

    .cta-message {
        font-size: 1.5rem;
    }

    .cta-message .text-green-large {
        font-size: 1.75rem;
    }

    .btn-cta-green-wide {
        font-size: 1.5rem;
    }

    .features-intro {
        font-size: 1.5rem;
    }

    .text-bold-large {
        font-size: 2.5rem;
    }

    .feature-card-new h3 {
        font-size: 1.625rem;
    }

    .card-desc {
        font-size: 1rem;
    }

    .feature-card-new {
        padding: 60px 20px 15px;
    }

    .card-badge {
        width: 70px;
    }

    .section-functions {
        padding: 40px 20px;
    }

    .chevron-deco {
        max-width: 28px;
        margin: 0 auto 10px;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .functions-swallow01-box {
        width: 13%;
    }

    .bg-illustration.features-illustration05 {
        width: 17%;
    }

    .bg-illustration.features-illustration04 {
        width: 18%;
    }

    .bg-illustration.features-illustration01 {
        width: 20%;
    }

    .bg-illustration.features-illustration02 {
        width: 20%;
    }

    .features-swallow01-box {
        width: 18%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .section-features-new {
        padding: 60px 0;
    }

    .section-strategic {
        padding: 60px 0;
    }

    .strategic-title {
        font-size: 1.625rem;
    }

    .strategic-title .highlight-yellow {
        font-size: 2.5rem;
    }

    .bg-illustration.strategic-illustration02 {
        width: 20%;
    }

    .bg-illustration.strategic-illustration01 {
        width: 20%;
    }

    .strategic-swallow01-box {
        width: 15%;
    }

    .strategic-blue-bar {
        font-size: 1.5rem;
    }

    .strategic-blue-bar strong {
        font-size: 1.75rem;
    }

    .strategic-card-title {
        font-size: 1.625rem;
        margin-bottom: 20px;
    }

    .strategic-card-title .text-green-large {
        font-size: 2.25rem;
    }

    .checklist-item {
        padding: 20px;
        font-size: 1rem;
    }

    .check-icon-blue {
        width: 22px;
        height: 22px;
    }

    span.strategic-catchphrase-mini {
        font-size: 1.5rem;
    }

    .strategic-catchphrase .text-green-xl {
        font-size: 2rem;
    }

    .section-benefits {
        padding: 60px 20px 0;
    }

    .benefits-title {
        font-size: 1.625rem;
    }

    .num-large {
        font-size: 2.25rem;
    }

    .benefits-sub-text {
        font-size: 1.5rem;
    }

    .bg-illustration.strategic-illustration03 {
        width: 17%;
        top: 0vw;
    }

    .bg-illustration.strategic-illustration04 {
        width: 20%;
    }

    .benefits-swallow01-box {
        width: 15%;
    }

    .benefits-orange-bar {
        font-size: 1.5rem;
    }

    .benefits-orange-bar strong {
        font-size: 1.625rem;
    }

    .benefits-main-card {
        padding: 30px 20px 60px;
    }

    .benefits-card-title {
        font-size: 1.625rem;
        margin-bottom: 30px;
    }

    .benefits-card-title span.text-green-bold {
        font-size: 2.5rem;
    }

    .circle-desc {
        font-size: 1rem;
    }

    .tag-gray {
        font-size: 0.9rem;
    }

    .bg-illustration.strategic-illustration05 {
        width: 20%;
    }

    .bg-illustration.strategic-illustration06 {
        width: 20%;
    }

    .case-card-title {
        font-size: 1rem;
    }

    .case-list li {
        font-size: 0.9rem;
    }

    .case-card:first-child .case-list {
        max-width: 200px;
        min-height: 124px;
    }

    .case-footer-box {
        font-size: 1rem;
    }

    .cta-msg-small {
        font-size: 1.625rem;
    }

    .cta-msg-sub {
        font-size: 1.625rem;
    }

    .text-serif-large {
        font-size: 2.25rem;
    }

    .bg-illustration.bottom-cta-illustration01 {
        width: 18%;
    }

    .bg-illustration.bottom-cta-illustration02 {
        width: 18%;
    }

    .cta-info-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-check-list li {
        font-size: 1rem;
    }

    .check-circle-s {
        width: 20px;
        height: 20px;
    }

    .cta-info-box {
        padding: 30px 20px;
    }

    .bottom-cta-btn-wrapper.text-center {}

    .btn-bottom-green {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-right {
        width: 100%;
    }

    .hero-illustration {
        width: 50%;
        margin: auto;
    }

    .form-header-bird-wrapper {
        width: 20%;
        top: -52px;
    }

    .form-row {
        flex-flow: column;
    }

    .btn-submit-green {
        font-size: 1rem;
    }

    .hero-left {
        padding: 0;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .section-problem {
        padding: 60px 0;
    }

    .problem-header-icon {
        width: 25%;
    }

    .problem-title h2 {
        font-size: 1.5rem;
    }

    .problem-ill-left {
        width: 100px;
        margin-bottom: 0;
    }

    .problem-card {
        background-size: cover;
    }

    .problem-content {
        gap: 20px;
    }

    .problem-list li {
        padding: 0 15px 15px;
    }

    img {}

    .problem-ill-right {
        width: 100px;
        margin: 0;
    }

    .message-main {
        font-size: 1.5rem;
    }

    .message-sub {
        font-size: 1rem;
    }

    .solution-header h2 {
        font-size: 1.125rem;
    }

    .solution-sub {
        font-size: 1.25rem;
    }

    .solution-header h2 span.highlight-yellow {
        font-size: 1.625rem;
    }

    .solution-header {
        margin-bottom: 20px;
    }

    .people-ill {
        width: 70%;
    }

    .solution-grid {
        margin-bottom: 20px;
    }

    .cta-message {
        font-size: 1.25rem;
    }

    .cta-message .text-green-large {
        font-size: 1.5rem;
    }

    .btn-cta-green-wide {
        font-size: 1.25rem;
    }

    .section-solution {
        padding: 60px 20px 0;
    }

    .features-intro {
        font-size: 1.25rem;
    }

    .text-bold-large {
        font-size: 1.75rem;
    }

    .features-title-bg {
        padding: 0;
    }

    .features-title-bg .bg-text {
        font-size: 2rem;
    }

    .features-title-bg .main-title {
        font-size: 1.75rem;
    }

    .features-title-bg .number-large {
        font-size: 3rem;
    }

    .features-swallow01-box {
        width: 20%;
        top: -35%;
    }

    .card-img {
        width: 50%;
        margin: auto;
    }

    .feature-card-new h3 {
        font-size: 1.5rem;
    }

    h3 {}

    .card-desc {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.275rem;
        margin-bottom: 40px;
    }

    .functions-swallow01-box {
        width: 20%;
        right: 2%;
        top: 108%;
    }

    .func-tab {
        padding: 15px 5px;
        font-size: .9rem;
    }

    .function-slides {
        min-height: auto;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow.prev {
        left: -30px;
    }

    .slider-arrow.next {
        right: -30px;
    }

    .section-functions {
        padding: 40px 20px 0;
    }

    .strategic-title {
        font-size: 1.5rem;
    }

    .strategic-title .highlight-yellow {
        font-size: 2rem;
    }

    .strategic-blue-bar {
        font-size: 1.25rem;
    }

    .strategic-blue-bar strong {
        font-size: 1.5rem;
    }

    .strategic-card-title {
        font-size: 1.5rem;
    }

    span.strategic-mini {
        font-size: 1.5rem;
    }

    .strategic-card-title .text-green-large {
        font-size: 1.75rem;
    }

    .strategic-image-area {
        right: 0;
        bottom: 0;
        width: 60%;
    }

    .checklist-item {
        padding: 15px;
        font-size: .85rem;
    }

    .check-icon-blue {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .strategic-footer-text {
        font-size: 1.25rem;
    }

    .strategic-catchphrase {
        font-size: 1.625rem;
    }

    span.strategic-catchphrase-mini {
        font-size: 1.25rem;
    }

    .strategic-catchphrase .text-green-xl {
        font-size: 1.625rem;
    }

    .benefits-title {
        font-size: 1.25rem;
    }

    span.num-large {}

    span.num-large {
        font-size: 1.625rem;
    }

    .benefits-sub-text {
        font-size: 1.25rem;
    }

    .benefits-orange-bar {
        font-size: 1.25rem;
    }

    .benefits-orange-bar strong {
        font-size: 1.5rem;
    }

    .benefits-swallow01-box {
        bottom: -20%;
    }

    .benefits-card-title {
        font-size: 1.25rem;
    }

    .benefits-card-title span.text-green-bold {
        font-size: 1.625rem;
    }


    .benefits-main-card {
        padding: 30px 20px 30px;
    }

    .cases-title {
        font-size: 1.5rem;
    }

    ul.case-list {
        max-width: 260px;
        margin: auto;
        min-height: auto;
        padding-bottom: 10px;
    }

    .case-card:first-child .case-list {
        min-height: auto;
    }

    .cta-msg-small {
        font-size: 1.25rem;
    }

    .text-serif-large {
        font-size: 1.625rem;
    }

    .cta-msg-sub {
        font-size: 1.25rem;
    }

    .btn-bottom-green {
        font-size: 1rem;
    }

    .cta-ill-right {
        max-width: 240px;
    }

    .footer-links ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer.footer {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .benefits-circles-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .benefit-circle.circle-blue {
        margin-left: 0;
        margin-top: -50px;
    }
}

@media (max-width: 440px) {
    p.cta-msg-small {
        font-size: 1rem;
    }

    .benefit-circle {
        width: 300px;
        height: 300px;
    }

    .benefits-title {
        font-size: 1rem;
    }

    span.num-large {
        font-size: 1.5rem;
    }

    .strategic-card-title {
        font-size: 1.25rem;
    }

    span.strategic-mini {
        font-size: 1.25rem;
    }

    .strategic-card-title .text-green-large {
        font-size: 1.5rem;
    }

    .btn-cta-green-wide {
        font-size: 1rem;
    }

    .card-desc {
        font-size: 0.75rem;
    }

    .solution-header h2 {
        font-size: 1rem;
    }

    .solution-sub {
        font-size: 1.125rem;
    }

    .solution-header h2 span.highlight-yellow {
        font-size: 1.5rem;
    }

    .message-main {
        font-size: 1.25rem;
    }

    .problem-card {
        padding: 40px 20px 80px;
    }
}

.checkbox-group label:last-child {
    margin-bottom: 0;
}

.wpcf7-list-item {
    display: block;
    margin: 0;
}

.wpcf7-list-item label {
    display: block;
    font-weight: normal;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    letter-spacing: 0.04em;
}

.wpcf7-list-item input {
    margin-right: 8px;
    /* transform: scale(1.2); */
    width: 20px;
    height: 20px;
}

/* =========================
   モーダル全体
========================= */
#thanks-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

/* 表示時 */
#thanks-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   背景オーバーレイ
========================= */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    /* フェード用 */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* =========================
   モーダル本体
========================= */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #fff;
    padding: 32px 24px;
    text-align: center;
    border-radius: 12px;
    z-index: 1;

    /* 影 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

    /* アニメーション初期状態 */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   表示時アニメーション
========================= */
#thanks-modal.active .modal-overlay {
    opacity: 1;
}

#thanks-modal.active .modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   テキスト
========================= */
.modal-content h2 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: bold;
}

.modal-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* =========================
   ダウンロードボタン
========================= */
.download-btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.download-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* =========================
   閉じるボタン
========================= */
#modal-close {
    display: block;
    margin: 20px auto 0;
    padding: 8px 18px;
    font-size: 13px;
    background: #eee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

#modal-close:hover {
    background: #ddd;
}

/* =========================
   スクロール禁止
========================= */
body.modal-open {
    overflow: hidden;
}

/* =========================
   スマホ調整
========================= */
@media (max-width: 480px) {
    .modal-content {
        padding: 24px 18px;
    }

    .modal-content h2 {
        font-size: 18px;
    }

    .download-btn {
        width: 100%;
        padding: 14px 0;
    }
}