@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
    /* Color Palette - Cuter & Softer for Kindergartens */
    --primary-color: #FF9F1C;
    /* Vitamin Orange */
    --primary-soft: #FFF4E6;
    --secondary-color: #4CC9F0;
    /* Sky Blue */
    --secondary-soft: #E0F7FA;
    --accent-color: #70E000;
    /* Fresh Green */
    --accent-soft: #F1FBE7;
    --pink-color: #FF85A2;
    /* Soft Pink accent */
    --bg-color: #FFFCF9;
    /* Warm Off White */
    --text-color: #4A4A4A;
    /* Softer grey for text */
    --white: #FFFFFF;

    /* Gradients - Softer */
    --grad-primary: linear-gradient(135deg, #FF9F1C 0%, #FFB347 100%);
    --grad-secondary: linear-gradient(135deg, #4CC9F0 0%, #76E1FF 100%);

    /* Spacing */
    --section-padding: 120px 20px;
    --container-width: 1100px;

    /* Design tokens - Rounder & Bouncier */
    --radius-lg: 60px;
    --radius-md: 30px;
    --shadow: 0 15px 45px rgba(255, 159, 28, 0.1);
    --shadow-hover: 0 25px 50px rgba(255, 159, 28, 0.2);
    --transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s;
    /* Bouncy effect */
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    letter-spacing: 0.01em;
}

main :is(h1, h2, h3, h4) {
    text-wrap: balance;
}

main h1 {
    line-height: 1.28;
}

main h2 {
    line-height: 1.34;
}

main h3 {
    line-height: 1.45;
}

main p {
    line-height: 1.9;
    color: #555;
}

main section .container>p {
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    min-width: 220px;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.35;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 159, 28, 0.5);
}

.btn-secondary {
    background: var(--grad-secondary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(76, 201, 240, 0.5);
}

.rounded-box {
    border-radius: var(--radius-lg);
    background: var(--white);
    padding: 3.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Header - Modern Glassmorphism */
header {
    background: rgba(255, 252, 249, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 159, 28, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.brand-logo-img {
    width: auto;
    max-width: 240px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand-logo img {
    width: auto;
    max-width: 240px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.service-logo-chip {
    display: inline-flex;
    width: 176px;
    height: 112px;
    border-radius: 28px;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 0.5rem;
}

.service-logo-chip img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 86px;
    object-fit: contain;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.home-service-card .service-logo-chip {
    margin: 1.15rem auto 0.85rem;
}

.home-service-card h3 {
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.9rem;
    font-size: 1.45rem;
    line-height: 1.3;
}

.home-service-card p {
    margin-bottom: 0;
}

.service-status {
    font-size: 0.82rem;
    color: #7d7d7d;
    line-height: 1.5;
    margin-top: 0.55rem;
}

.about-page .hero .container {
    max-width: 820px;
}

.about-page .hero p {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    line-height: 1.75;
}

.about-intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-card p {
    font-size: 1.08rem;
    color: var(--text-color);
    line-height: 1.9;
    margin: 0;
}

.about-copy-wrap,
.about-wide-box,
.about-cta-wrap {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section-heading {
    text-align: left;
    line-height: 1.4;
    max-width: 18ch;
}

.about-copy-box {
    margin-top: 2rem;
}

.about-copy-box p,
.about-wide-box p,
.about-cta-wrap p {
    line-height: 1.9;
}

.about-copy-box p + p,
.about-wide-box p + p {
    margin-top: 1rem;
}

.about-statement-grid,
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.about-statement-card,
.about-info-card {
    padding: 2rem;
}

.about-statement-card h3,
.about-info-card h3 {
    line-height: 1.45;
}

.about-info-card h3 {
    min-height: 2.8em;
    display: flex;
    align-items: center;
}

.about-info-card p {
    line-height: 1.8;
    margin-bottom: 0;
}

.about-thought-list {
    margin-top: 1.5rem;
}

.home-service-link {
    font-weight: 700;
    display: block;
    margin-top: auto;
    padding-top: 1.1rem;
}

.brand-photo-boss .service-logo-chip img {
    max-width: 126px;
    max-height: 78px;
}

.brand-stockle .service-logo-chip img {
    max-width: 144px;
    max-height: 88px;
}

.brand-en-rhythm .service-logo-chip img {
    max-width: 144px;
    max-height: 88px;
}

.brand-entoen .service-logo-chip img {
    max-width: 154px;
    max-height: 94px;
}

.service-hero-logo {
    display: flex;
    width: 100%;
    max-width: 500px;
    height: 220px;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    margin: 2rem auto;
    transition: var(--transition);
}

.service-hero-logo img {
    width: auto;
    height: auto;
    max-width: 440px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.15rem 0;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}

.nav-links li a.btn {
    min-height: auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

header .btn {
    min-width: auto;
    min-height: 46px;
    padding: 0.75rem 1.4rem !important;
    font-size: 0.92rem !important;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 10px;
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 159, 28, 0.12);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.12);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--text-color);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, rgba(255, 159, 28, 0.05) 0%, rgba(255, 252, 249, 1) 100%);
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.18;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 159, 28, 0.2);
    z-index: -1;
    border-radius: 20px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    margin-bottom: 4rem;
    color: #555;
    font-weight: 500;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
}

.hero .container>p {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

/* Attributes Switcher Grid */
.attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.attr-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.attr-card h3 {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
}

.attr-card p {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
}

.attr-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.attr-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.attr-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Sections */
section {
    padding: var(--section-padding);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2.6rem;
    text-align: center;
}

h3 {
    margin-bottom: 0.9rem;
}

h4 {
    margin-bottom: 0.6rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 159, 28, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

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

    .attributes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .attr-card h3 {
        min-height: 0;
    }

    .about-info-card h3 {
        min-height: 0;
    }

    .about-section-heading {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 132px 0 72px;
    }

    .container {
        padding: 0 18px;
    }

    section {
        padding: 72px 0;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 7.2vw, 2.35rem);
        line-height: 1.3;
        letter-spacing: -0.03em;
    }

    .hero h1 span::after {
        bottom: 2px;
        height: 11px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 30ch;
        margin-bottom: 2.5rem;
    }

    header .container {
        align-items: center;
        gap: 0.8rem;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    nav {
        margin-left: 0;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 1rem;
        background: rgba(255, 252, 249, 0.98);
        border: 1px solid rgba(255, 159, 28, 0.12);
        border-radius: 24px;
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 1001;
    }

    nav.is-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links li a {
        display: flex;
        width: 100%;
        justify-content: center;
        font-size: 0.98rem;
        padding: 0.9rem 1rem;
        border-radius: 16px;
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-links li a.btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem !important;
        font-size: 0.95rem;
    }

    .plan-cards {
        grid-template-columns: 1fr !important;
    }

    .brand-logo-img {
        max-height: 56px;
        max-width: 190px;
    }

    .service-logo-chip {
        width: 138px;
        height: 90px;
        border-radius: 20px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card h3 {
        min-height: 0;
        font-size: 1.3rem;
    }

    .service-logo-chip img {
        max-width: 116px;
        max-height: 68px;
    }

    .service-hero-logo {
        max-width: 300px;
        height: 140px;
        border-radius: 20px;
        margin: 1.5rem auto;
    }

    .service-hero-logo img {
        max-width: 260px;
        max-height: 110px;
    }

    .btn {
        width: min(100%, 340px);
        min-width: 0;
        min-height: 54px;
        padding: 0.95rem 1.4rem;
        font-size: 0.98rem;
    }

    .btn-sm {
        width: auto;
        min-height: 46px;
        font-size: 0.9rem;
    }

    .rounded-box {
        padding: 1.6rem;
        border-radius: 28px;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 1.42;
        margin-bottom: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    main p {
        line-height: 1.85;
    }

    .split-copy h2 {
        font-size: 1.85rem;
        margin-bottom: 1.1rem;
    }

    .split-copy p {
        max-width: none;
    }

    .about-page .hero p {
        max-width: none;
        font-size: 1.05rem;
    }

    .about-section-header {
        margin-bottom: 2rem;
    }

    .about-section-heading {
        max-width: none;
        font-size: 1.8rem;
    }

    .about-statement-grid,
    .about-card-grid,
    .faq-grid,
    .home-services-grid {
        gap: 1rem;
    }

    main section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    main section div[style*="display: flex"][style*="justify-content: center"] {
        align-items: stretch;
    }

}

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

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

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Wavy Divider */
.wavy-divider {
    position: relative;
    height: 60px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5,73.84-4.36,147.54,16.88,218.2,35.26,69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113,-1.11,1200,0V0Z' fill='%23FFFCF9'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 5;
}

.wavy-divider.reverse {
    transform: rotate(180deg);
}

/* Bubbles decoration */
.bubble-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(187, 227, 255, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.bubble:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
    background: rgba(205, 236, 255, 0.16);
}

.bubble:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -50px;
    background: rgba(224, 243, 255, 0.12);
}

.bubble:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: rgba(198, 231, 255, 0.12);
}

/* Pricing Cards */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 4px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card .btn {
    margin-top: auto;
}

.plan-card.recommended {
    border-color: var(--primary-color);
    background: var(--primary-soft);
}

.badge-recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.3);
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-color);
    margin: 1.5rem 0;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
}

.plan-features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.plan-features li span {
    line-height: 1.65;
}

.check-icon {
    color: var(--primary-color);
}

.cross-icon {
    color: #ccc;
}

/* Pricing Table (Fallback for Comparison) */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 80px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

td:first-child {
    text-align: left;
    font-weight: 700;
    color: #666;
}

/* Handwritten Decorations */
.handwritten-circle {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.handwritten-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M10,50 C10,10 90,10 90,50 C90,90 10,90 10,50 Z' fill='none' stroke='%23FF9F1C' stroke-width='4' stroke-linecap='round' stroke-dasharray='5,5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: -1;
    opacity: 0.6;
}

.handwritten-underline {
    position: relative;
    display: inline-block;
}

.handwritten-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -5%;
    width: 110%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M5,15 Q50,5 100,15 Q150,25 195,15' fill='none' stroke='%234CC9F0' stroke-width='3' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: -1;
}

/* MVV Section Styles */
.mvv-section {
    background: white;
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

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

.mvv-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-color);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.mvv-lead {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.4;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-card p:not(.mvv-lead) {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.split-copy {
    text-align: left;
}

.split-copy h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.split-copy p {
    max-width: 60ch;
}

.split-copy .section-tag {
    margin-bottom: 1rem;
}

.service-about-grid {
    align-items: center;
}

.service-about-visual {
    overflow: hidden;
}

.service-about-image {
    display: block;
}

/* Memories Camera Animation */
.camera-shot-card {
    position: relative;
    padding: 0;
    border: 10px solid #fff;
    box-shadow: 0 40px 80px rgba(255, 159, 28, 0.2);
    overflow: hidden;
}

.camera-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: cameraPan 4.8s ease-in-out infinite;
    transform-origin: center center;
}

.camera-shot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0;
    pointer-events: none;
    animation: cameraFlash 4.8s ease-in-out infinite;
}

.camera-focus-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(42%, 220px);
    aspect-ratio: 1 / 1;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 200vmax rgba(0, 0, 0, 0.08);
    opacity: 0.82;
    pointer-events: none;
    animation: focusPulse 4.8s ease-in-out infinite;
}

.camera-shutter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    animation: shutterPulse 4.8s ease-in-out infinite;
}

@keyframes cameraPan {

    0%,
    25% {
        transform: scale(1) translateX(0);
    }

    34%,
    42% {
        transform: scale(1.04) translateX(-1.6%);
    }

    50%,
    78% {
        transform: scale(1) translateX(0);
    }

    86%,
    94% {
        transform: scale(1.04) translateX(1.6%);
    }

    100% {
        transform: scale(1) translateX(0);
    }
}

@keyframes cameraFlash {

    0%,
    27%,
    52%,
    79%,
    100% {
        opacity: 0;
    }

    29%,
    81% {
        opacity: 0.72;
    }

    31%,
    83% {
        opacity: 0;
    }
}

@keyframes focusPulse {

    0%,
    24%,
    49%,
    76%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.78;
    }

    30%,
    82% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 1;
    }

    40%,
    92% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 0.68;
    }
}

@keyframes shutterPulse {

    0%,
    27%,
    52%,
    79%,
    100% {
        transform: scale(1);
    }

    29%,
    81% {
        transform: scale(0.87);
    }

    33%,
    85% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .camera-photo {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .camera-shot-card {
        border-width: 7px;
    }

    .camera-photo {
        height: 320px;
    }

    .camera-focus-ring {
        width: min(55%, 180px);
    }

    .camera-shutter {
        width: 46px;
        height: 46px;
        right: 12px;
        bottom: 12px;
    }
}

/* Bus Animation Styles */
.bus-scene {
    margin-top: 50px;
    position: relative;
    height: 320px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #d9f3ff;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.bus-scene::before {
    content: none;
}

.bus-scene::after {
    content: none;
}

.bus-road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 52px;
    background: #a49aa2;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.24);
}

.bus-road::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(to right,
            #ffffff 0 28px,
            transparent 28px 52px);
    opacity: 0.95;
}

.bus-container {
    position: absolute;
    bottom: 18px;
    left: -300px;
    width: 260px;
    z-index: 8;
    animation: driveToSchool 20s linear infinite;
}

.animated-bus {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
    animation: busBounce 0.7s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.cute-bus {
    position: relative;
    width: 100%;
    height: 118px;
    border-radius: 30px 36px 20px 20px;
    background: linear-gradient(180deg, #ffd96b 0%, #ffc940 100%);
    border: 4px solid #e9a12d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    animation: busBounce 0.7s ease-in-out infinite alternate;
}

.bus-sign {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 0.92rem;
    font-weight: 900;
    color: #5f4405;
    letter-spacing: 0.04em;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50px;
    opacity: 0.96;
    box-shadow: 0 12px 26px rgba(180, 214, 239, 0.16);
    z-index: 2;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 50px;
    left: 16%;
    animation: floatClouds 20s linear infinite;
}

.cloud-2 {
    width: 120px;
    height: 45px;
    top: 30px;
    left: 52%;
    animation: floatClouds 25s linear infinite reverse;
}

.cloud::before {
    width: 38px;
    height: 38px;
    top: -18px;
    left: 15px;
}

.cloud::after {
    width: 46px;
    height: 46px;
    top: -24px;
    right: 14px;
}

.roadside-tree {
    position: absolute;
    bottom: 48px;
    width: 52px;
    height: 108px;
    z-index: 3;
    opacity: 0.96;
}

.roadside-tree-tall {
    z-index: 2;
    width: 76px;
    height: 160px;
    opacity: 0.82;
}

.roadside-tree::before {
    content: '';
    position: absolute;
    left: 21px;
    bottom: 0;
    width: 10px;
    height: 40px;
    border-radius: 8px;
    background: #8f6543;
}

.roadside-tree::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 66px;
    border-radius: 52% 48% 46% 54%;
    background: radial-gradient(circle at 32% 28%, #c9ef9e 0%, #8fd16d 56%, #69ab53 100%);
    box-shadow:
        -10px 16px 0 -5px #89ca69,
        12px 14px 0 -6px #7fc463,
        0 74px 0 -20px rgba(103, 169, 78, 0.18);
}

.roadside-tree-tall::before {
    left: 31px;
    width: 12px;
    height: 66px;
    background: #957457;
}

.roadside-tree-tall::after {
    width: 76px;
    height: 96px;
    border-radius: 54% 46% 48% 52%;
    background: radial-gradient(circle at 34% 26%, #e3f7c3 0%, #a8df8a 55%, #79bb62 100%);
    box-shadow:
        -16px 22px 0 -10px #9ad67b,
        16px 19px 0 -10px #90cf72,
        0 104px 0 -30px rgba(116, 182, 92, 0.14);
}

.roadside-tree-1 {
    left: 9%;
    transform: scale(0.92);
}

.roadside-tree-2 {
    left: 30%;
    transform: scale(0.78);
}

.roadside-tree-3 {
    left: 71%;
    transform: scale(0.86);
}

.roadside-tree-4 {
    left: 45%;
    transform: scale(0.7);
}

.roadside-tree-5 {
    left: 58%;
    transform: scale(0.8);
}

.roadside-tree-6 {
    left: 84%;
    transform: scale(0.74);
}

.roadside-tree-7 {
    left: 20%;
    bottom: 44px;
    transform: scale(0.98);
}

.roadside-tree-8 {
    left: 88%;
    bottom: 42px;
    transform: scale(0.92);
}

.roadside-grass-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    height: 18px;
    z-index: 3;
    background:
        radial-gradient(circle at 6% 80%, rgba(134, 200, 104, 0.95) 0 8px, transparent 8.5px),
        radial-gradient(circle at 18% 75%, rgba(153, 210, 119, 0.95) 0 7px, transparent 7.5px),
        radial-gradient(circle at 34% 82%, rgba(124, 194, 94, 0.95) 0 9px, transparent 9.5px),
        radial-gradient(circle at 49% 74%, rgba(146, 207, 112, 0.95) 0 8px, transparent 8.5px),
        radial-gradient(circle at 63% 82%, rgba(128, 197, 99, 0.95) 0 9px, transparent 9.5px),
        radial-gradient(circle at 79% 76%, rgba(153, 210, 119, 0.95) 0 7px, transparent 7.5px),
        radial-gradient(circle at 92% 80%, rgba(134, 200, 104, 0.95) 0 8px, transparent 8.5px);
}

.roadside-gravel-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    height: 12px;
    z-index: 2;
    background:
        radial-gradient(circle at 8% 55%, rgba(208, 211, 206, 0.92) 0 2px, transparent 2.4px),
        radial-gradient(circle at 22% 35%, rgba(188, 192, 187, 0.92) 0 2.2px, transparent 2.6px),
        radial-gradient(circle at 37% 62%, rgba(215, 219, 213, 0.92) 0 1.9px, transparent 2.3px),
        radial-gradient(circle at 51% 42%, rgba(193, 197, 192, 0.92) 0 2.1px, transparent 2.5px),
        radial-gradient(circle at 67% 60%, rgba(212, 216, 210, 0.92) 0 2px, transparent 2.4px),
        radial-gradient(circle at 82% 38%, rgba(188, 192, 187, 0.92) 0 2.1px, transparent 2.5px),
        radial-gradient(circle at 94% 56%, rgba(208, 211, 206, 0.92) 0 2px, transparent 2.4px),
        linear-gradient(180deg, rgba(230, 223, 206, 0.95) 0%, rgba(199, 191, 176, 0.95) 100%);
}

.cute-bus .bus-window {
    position: absolute;
    top: 30px;
    width: 35px;
    height: 28px;
    border-radius: 10px;
    background: #d9f4ff;
    border: 3px solid #57b8e8;
}

.cute-bus .bus-window:nth-child(2) {
    left: 22px;
}

.cute-bus .bus-window:nth-child(3) {
    left: 66px;
}

.cute-bus .bus-window:nth-child(4) {
    left: 110px;
}

.bus-door {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 56px;
    border-radius: 10px;
    background: #fff2cb;
    border: 3px solid #e4a52f;
}

.bus-light {
    position: absolute;
    top: 62px;
    right: 8px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff8a6;
    box-shadow: 0 0 10px rgba(255, 248, 166, 0.9);
}

.bus-wheel {
    position: absolute;
    bottom: -13px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 5px solid #24303d;
    background: #4e6578;
    animation: wheelSpin 0.8s linear infinite;
}

.bus-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9d3dd;
    transform: translate(-50%, -50%);
}

.wheel-front {
    right: 30px;
}

.wheel-rear {
    left: 24px;
}

.bus-stop {
    position: absolute;
    bottom: 48px;
    width: 138px;
    height: 132px;
    z-index: 4;
    pointer-events: none;
    transform-origin: center bottom;
}

.bus-stop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bus-stop.png') center calc(100% + 10px) / contain no-repeat;
    opacity: 1;
    filter: drop-shadow(0 8px 14px rgba(120, 164, 196, 0.12));
}

.bus-stop::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 2px;
    height: 14px;
    border-radius: 999px;
    background: rgba(90, 102, 111, 0.18);
    filter: blur(5px);
    opacity: 0.32;
}

.bus-stop-lap1 {
    right: 330px;
    animation: busStopLap1 20s steps(1, end) infinite;
}

.bus-stop-lap2 {
    right: 250px;
    opacity: 0;
    animation: busStopLap2 20s steps(1, end) infinite;
}

.bus-stop-sign,
.bus-stop-board,
.bus-stop-bench {
    display: none;
}

.bus-stop-tree {
    display: none;
}

.bus-stop-tree::before {
    display: none;
}

.bus-stop-tree::after {
    display: none;
}

.bus-stop-tree.tree-right {
    display: none;
}

.bus-stop-tree.tree-right::before {
    display: none;
}

.bus-stop-tree.tree-right::after {
    display: none;
}

.bus-stop-bush {
    display: none;
}

.bus-stop-bush::before,
.bus-stop-bush::after {
    display: none;
}

.bus-stop-bush::before {
    left: 2px;
}

.bus-stop-bush::after {
    right: 2px;
}

.bus-stop-bush.bush-left {
    left: -14px;
}

.bus-stop-bush.bush-right {
    right: -8px;
}

.bus-stop-flower {
    display: none;
}

.bus-stop-flower::before,
.bus-stop-flower::after {
    display: none;
}

.bus-stop-flower::before {
    background:
        radial-gradient(circle at 50% 18%, #ffdce8 0 5px, transparent 5.2px),
        radial-gradient(circle at 82% 50%, #ffdce8 0 5px, transparent 5.2px),
        radial-gradient(circle at 50% 82%, #ffdce8 0 5px, transparent 5.2px),
        radial-gradient(circle at 18% 50%, #ffdce8 0 5px, transparent 5.2px),
        radial-gradient(circle at 50% 50%, #ffd169 0 4px, transparent 4.2px);
}

.bus-stop-flower::after {
    inset: auto;
    left: 9px;
    bottom: -10px;
    width: 4px;
    height: 12px;
    border-radius: 4px;
    background: #72b85b;
}

.bus-stop-flower.flower-left {
    left: 6px;
}

.bus-stop-flower.flower-right {
    right: 10px;
}

.bus-stop-grass {
    display: none;
}

.bus-stop-grass::before,
.bus-stop-grass::after {
    display: none;
}

.bus-stop-grass::before {
    left: 4px;
    transform: rotate(-18deg);
}

.bus-stop-grass::after {
    right: 4px;
    transform: rotate(18deg);
}

.bus-stop-grass.grass-left {
    left: -4px;
}

.bus-stop-grass.grass-right {
    right: -2px;
}

.bus-stop-gravel {
    display: none;
}

@keyframes driveToSchool {
    0% {
        left: -300px;
        opacity: 0;
    }

    1% {
        left: -300px;
        opacity: 1;
    }

    18.5% {
        left: calc(100% - 700px);
        opacity: 1;
    }

    33.5% {
        left: calc(100% - 590px);
        opacity: 1;
    }

    48% {
        left: calc(100% + 60px);
        opacity: 1;
    }

    48.01% {
        left: calc(100% + 60px);
        opacity: 0;
    }

    48.02% {
        left: -300px;
        opacity: 0;
    }

    50% {
        left: -300px;
        opacity: 0;
    }

    51% {
        left: -300px;
        opacity: 1;
    }

    70.5% {
        left: calc(100% - 510px);
        opacity: 1;
    }

    85.5% {
        left: calc(100% - 510px);
        opacity: 1;
    }

    98% {
        left: calc(100% + 60px);
        opacity: 1;
    }

    98.01% {
        left: calc(100% + 60px);
        opacity: 0;
    }

    98.02% {
        left: -300px;
        opacity: 0;
    }

    100% {
        left: -300px;
        opacity: 0;
    }
}

@keyframes busStopLap1 {

    0%,
    49.99% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes busStopLap2 {

    0%,
    49.99% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

@keyframes busBounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-4px);
    }
}

@keyframes floatClouds {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50px);
    }
}

@keyframes wheelSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .bus-scene {
        height: 280px;
    }

    .bus-container {
        width: 210px;
        animation: driveToSchoolTablet 20s linear infinite;
    }

    .bus-stop {
        bottom: 48px;
        width: 118px;
        height: 112px;
    }

    .roadside-tree {
        bottom: 44px;
        width: 42px;
        height: 88px;
    }

    .roadside-tree-tall {
        width: 62px;
        height: 128px;
    }

    .roadside-grass-strip {
        bottom: 44px;
        height: 15px;
    }

    .roadside-gravel-strip {
        bottom: 39px;
        height: 10px;
    }

    .roadside-tree::before {
        left: 17px;
        width: 8px;
        height: 32px;
    }

    .roadside-tree::after {
        width: 42px;
        height: 54px;
        box-shadow:
            -8px 13px 0 -5px #89ca69,
            10px 11px 0 -6px #7fc463,
            0 58px 0 -18px rgba(103, 169, 78, 0.18);
    }

    .roadside-tree-tall::before {
        left: 25px;
        width: 10px;
        height: 52px;
    }

    .roadside-tree-tall::after {
        width: 62px;
        height: 78px;
        box-shadow:
            -12px 18px 0 -9px #8dcd6d,
            13px 15px 0 -9px #82c764,
            0 84px 0 -26px rgba(103, 169, 78, 0.16);
    }

    .roadside-tree-1 {
        left: 7%;
    }

    .roadside-tree-2 {
        left: 27%;
    }

    .roadside-tree-3 {
        left: 69%;
    }

    .roadside-tree-4 {
        left: 42%;
    }

    .roadside-tree-5 {
        left: 55%;
    }

    .roadside-tree-6 {
        left: 81%;
    }

    .roadside-tree-7 {
        left: 18%;
        bottom: 40px;
    }

    .roadside-tree-8 {
        left: 88%;
        bottom: 39px;
    }

    .bus-stop-lap1 {
        right: 244px;
        animation-duration: 20s;
    }

    .bus-stop-lap2 {
        right: 184px;
        animation-duration: 20s;
    }

    .cute-bus {
        height: 98px;
    }

    .cute-bus .bus-window {
        top: 26px;
        width: 29px;
        height: 23px;
    }

    .cute-bus .bus-window:nth-child(2) {
        left: 16px;
    }

    .cute-bus .bus-window:nth-child(3) {
        left: 52px;
    }

    .cute-bus .bus-window:nth-child(4) {
        left: 88px;
    }

    .bus-door {
        top: 22px;
        right: 20px;
        width: 27px;
        height: 48px;
    }

    .bus-wheel {
        width: 30px;
        height: 30px;
        bottom: -12px;
    }

    .wheel-front {
        right: 24px;
    }

    .wheel-rear {
        left: 16px;
    }
}

@keyframes driveToSchoolTablet {
    0% {
        left: -240px;
        opacity: 0;
    }

    1% {
        left: -240px;
        opacity: 1;
    }

    18.5% {
        left: calc(100% - 520px);
        opacity: 1;
    }

    33.5% {
        left: calc(100% - 454px);
        opacity: 1;
    }

    48% {
        left: calc(100% + 40px);
        opacity: 1;
    }

    48.01% {
        left: calc(100% + 40px);
        opacity: 0;
    }

    48.02% {
        left: -240px;
        opacity: 0;
    }

    50% {
        left: -240px;
        opacity: 0;
    }

    51% {
        left: -240px;
        opacity: 1;
    }

    70.5% {
        left: calc(100% - 394px);
        opacity: 1;
    }

    85.5% {
        left: calc(100% - 394px);
        opacity: 1;
    }

    98% {
        left: calc(100% + 40px);
        opacity: 1;
    }

    98.01% {
        left: calc(100% + 40px);
        opacity: 0;
    }

    98.02% {
        left: -240px;
        opacity: 0;
    }

    100% {
        left: -240px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .home-guide-section {
        display: none;
    }

    .bus-scene {
        margin-top: 32px;
        height: 232px;
        border-radius: 28px;
    }

    .bus-road {
        height: 44px;
    }

    .bus-container {
        width: 168px;
        bottom: 14px;
        animation: driveToSchoolMobile 20s linear infinite;
    }

    .bus-stop {
        bottom: 44px;
        width: 108px;
        height: 102px;
    }

    .bus-stop::before {
        background-position: center calc(100% + 6px);
    }

    .bus-stop::after {
        left: 16%;
        right: 16%;
        bottom: 0;
        height: 11px;
        opacity: 0.28;
    }

    .roadside-tree {
        bottom: 38px;
        width: 28px;
        height: 60px;
    }

    .roadside-tree-tall {
        width: 42px;
        height: 96px;
    }

    .roadside-grass-strip {
        bottom: 38px;
        height: 11px;
    }

    .roadside-gravel-strip {
        bottom: 34px;
        height: 8px;
    }

    .roadside-tree::before {
        left: 12px;
        width: 5px;
        height: 22px;
    }

    .roadside-tree::after {
        width: 28px;
        height: 36px;
        box-shadow:
            -6px 9px 0 -4px #89ca69,
            7px 7px 0 -4px #7fc463,
            0 40px 0 -14px rgba(103, 169, 78, 0.16);
    }

    .roadside-tree-tall::before {
        left: 17px;
        width: 7px;
        height: 38px;
    }

    .roadside-tree-tall::after {
        width: 42px;
        height: 54px;
        box-shadow:
            -9px 12px 0 -7px #8dcd6d,
            9px 10px 0 -7px #82c764,
            0 58px 0 -18px rgba(103, 169, 78, 0.15);
    }

    .roadside-tree-1 {
        left: 4%;
    }

    .roadside-tree-2 {
        left: 22%;
    }

    .roadside-tree-3 {
        left: 73%;
    }

    .roadside-tree-4 {
        left: 39%;
    }

    .roadside-tree-5 {
        left: 52%;
    }

    .roadside-tree-6 {
        left: 82%;
    }

    .roadside-tree-7 {
        left: 15%;
        bottom: 35px;
    }

    .roadside-tree-8 {
        left: 89%;
        bottom: 34px;
    }

    .bus-stop-lap1 {
        right: 190px;
        left: auto;
        animation-duration: 20s;
    }

    .bus-stop-lap2 {
        right: 146px;
        left: auto;
        animation-duration: 20s;
    }

    .cute-bus {
        height: 78px;
        border-width: 3px;
        border-radius: 24px 26px 16px 16px;
    }

    .bus-sign {
        top: 6px;
        left: 14px;
        font-size: 0.72rem;
    }

    .cute-bus .bus-window {
        top: 20px;
        width: 22px;
        height: 18px;
        border-width: 2px;
    }

    .cute-bus .bus-window:nth-child(2) {
        left: 12px;
    }

    .cute-bus .bus-window:nth-child(3) {
        left: 40px;
    }

    .cute-bus .bus-window:nth-child(4) {
        left: 68px;
    }

    .bus-door {
        top: 17px;
        right: 14px;
        width: 22px;
        height: 38px;
        border-width: 2px;
    }

    .bus-light {
        top: 43px;
        width: 8px;
        height: 8px;
    }

    .bus-wheel {
        width: 24px;
        height: 24px;
        border-width: 4px;
        bottom: -9px;
    }

    .wheel-front {
        right: 18px;
    }

    .wheel-rear {
        left: 12px;
    }
}

@keyframes driveToSchoolMobile {
    0% {
        left: -190px;
        opacity: 0;
    }

    1% {
        left: -190px;
        opacity: 1;
    }

    18.5% {
        left: calc(100% - 410px);
        opacity: 1;
    }

    33.5% {
        left: calc(100% - 358px);
        opacity: 1;
    }

    48% {
        left: calc(100% + 30px);
        opacity: 1;
    }

    48.01% {
        left: calc(100% + 30px);
        opacity: 0;
    }

    48.02% {
        left: -190px;
        opacity: 0;
    }

    50% {
        left: -190px;
        opacity: 0;
    }

    51% {
        left: -190px;
        opacity: 1;
    }

    70.5% {
        left: calc(100% - 314px);
        opacity: 1;
    }

    85.5% {
        left: calc(100% - 314px);
        opacity: 1;
    }

    98% {
        left: calc(100% + 30px);
        opacity: 1;
    }

    98.01% {
        left: calc(100% + 30px);
        opacity: 0;
    }

    98.02% {
        left: -190px;
        opacity: 0;
    }

    100% {
        left: -190px;
        opacity: 0;
    }
}

/* News Page Styles */
.news-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.news-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-link {
    display: flex;
    align-items: center;
    padding: 1.8rem 1rem;
    gap: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.news-link:hover {
    background-color: #f9f9f9;
    padding-left: 1.5rem;
    color: var(--primary-color);
}

.news-date {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    min-width: 110px;
    font-family: 'Inter', sans-serif;
}

.news-category {
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.tag-update {
    background: #6c757d;
}

.tag-service {
    background: var(--primary-color);
}

.tag-info {
    background: #54a0ff;
}

.tag-recruit {
    background: #ff9f43;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .news-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.5rem 0.5rem;
    }

    .news-date {
        font-size: 0.9rem;
        min-width: auto;
    }

    .news-category {
        min-width: auto;
        padding: 0.3rem 0.8rem;
    }

    .news-title {
        font-size: 1.05rem;
    }
}

/* Utilities for cleanup */
.btn-sm {
    padding: 0.6rem 1.8rem !important;
    font-size: 0.95rem;
}

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

.bg-primary-soft {
    background-color: var(--primary-soft);
}

.bg-dark {
    background-color: var(--text-color);
    color: var(--white);
}

.py-large {
    padding: 4rem 0;
}

.homepage-search-intro {
    padding: 0 0 2rem;
    background: var(--bg-color);
}

.search-intro-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-intro-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.search-intro-box p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.95;
    color: #555;
}

.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.section-header-center h2 {
    margin-bottom: 0.8rem;
}

.section-lead {
    color: #666;
    line-height: 1.9;
}

.page-summary-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-summary-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--text-color);
}

.page-section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.page-section-intro p {
    max-width: 760px;
    margin: 0.9rem auto 0;
    color: #666;
    line-height: 1.9;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.quick-link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quick-link-card h3 {
    font-size: 1.2rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
}

.quick-link-card p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.85;
}

.quick-link-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    min-width: 0;
}

.hero-actions,
.page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 2rem;
}

.page-cta-block {
    max-width: 920px;
    margin: 0 auto;
}

.content-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.stacked-cards {
    display: grid;
    gap: 24px;
}

.contact-form-shell {
    max-width: 760px;
    margin: 0 auto;
}

.homepage-faq {
    padding: 0 0 6rem;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-card {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-card h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

.faq-card p {
    margin-bottom: 0;
    line-height: 1.9;
    color: #555;
}

.faq-card a {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .search-intro-box h2 {
        font-size: 1.55rem;
    }

    .page-summary-box {
        padding: 1.8rem;
        border-radius: 28px;
    }

    .page-summary-box p {
        font-size: 0.98rem;
    }

    .quick-link-card {
        padding: 1.5rem;
    }

    .hero-actions,
    .page-cta-actions {
        gap: 0.75rem;
    }

    .hero-actions .btn,
    .page-cta-actions .btn {
        width: 100%;
    }

    .content-grid-two {
        grid-template-columns: 1fr;
    }

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

}

.entoen-demo-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfff4 100%);
}

.entoen-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: start;
}

.entoen-demo-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(112, 224, 0, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.entoen-demo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.entoen-demo-note {
    max-width: 760px;
    margin: 1.25rem auto 0;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.connect-about-grid {
    align-items: center;
}

.entoen-hero-shot {
    padding: 1rem;
    background: linear-gradient(180deg, #fbfff4 0%, #fff 100%);
    border: 1px solid rgba(112, 224, 0, 0.16);
    box-shadow: 0 18px 40px rgba(112, 224, 0, 0.08);
}

.entoen-hero-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.entoen-hero-shot figcaption {
    margin-top: 1rem;
    color: #5b6470;
    font-size: 0.95rem;
    line-height: 1.7;
}

.stockle-demo-section {
    background: linear-gradient(180deg, #fafdff 0%, #ffffff 100%);
}

.stockle-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.stockle-demo-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(76, 201, 240, 0.16);
    box-shadow: 0 18px 40px rgba(76, 201, 240, 0.08);
}

.stockle-demo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stockle-demo-card figcaption {
    margin-top: 1rem;
    color: #5b6470;
    font-size: 0.95rem;
    line-height: 1.7;
}

.stockle-demo-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(76, 201, 240, 0.14);
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.stockle-demo-label-b2b {
    background: rgba(255, 159, 28, 0.16);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .connect-about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .entoen-demo-grid {
        grid-template-columns: 1fr;
    }

    .entoen-demo-card {
        padding: 0.8rem;
    }

    .entoen-hero-shot {
        padding: 0.8rem;
    }

    .stockle-demo-grid {
        grid-template-columns: 1fr;
    }

    .stockle-demo-card {
        padding: 0.8rem;
    }
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.legal-table th,
.legal-table td {
    padding: 1.2rem;
    vertical-align: top;
}

.legal-table tr {
    border-bottom: 1px solid #eee;
}

.legal-table tr:last-child {
    border-bottom: 0;
}

@media (max-width: 768px) {
    .service-about-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .service-about-visual {
        border-width: 6px !important;
        box-shadow: 0 22px 44px rgba(76, 201, 240, 0.18) !important;
    }

    .service-about-image {
        height: auto !important;
        max-height: 320px;
        object-fit: cover;
    }

    .policy-page .hero {
        padding: 140px 0 72px;
    }

    .policy-page .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.04em;
    }

    .policy-page .hero p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .policy-page .rounded-box {
        padding: 1.6rem;
        border-radius: 26px;
    }

    .policy-page h2 {
        text-align: left;
        font-size: 1.7rem;
        line-height: 1.45;
        margin-bottom: 1.5rem;
    }

    .policy-page h3 {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .policy-page p,
    .policy-page li,
    .policy-page td {
        line-height: 1.9;
    }

    .policy-page .service-status {
        text-align: left;
        line-height: 1.8;
    }

    .legal-table,
    .legal-table tbody,
    .legal-table tr,
    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table tr {
        padding: 1rem 0;
    }

    .legal-table th {
        width: 100% !important;
        padding: 0 0 0.45rem;
        color: #666;
        font-size: 0.95rem;
        font-weight: 800;
    }

    .legal-table td {
        padding: 0;
        font-size: 0.98rem;
        word-break: break-word;
    }
}
