:root {
    --color-primary: #00B900;
    /* LINE Greenish but slightly adjusted for premium feel */
    --color-primary-dark: #008f00;
    --color-accent: #06C755;
    --color-dark: #1A1A1A;
    --color-gray: #4A4A4A;
    --color-light: #F9F9F9;
    --color-white: #FFFFFF;
    --color-bg-dark: #111111;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --border-radius: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.8;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    letter-spacing: 0.05em;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

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

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

.logo {
    display: block;
    width: 160px;
    flex: 0 0 160px;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.nav__list {
    display: none;
}

@media (min-width: 768px) {
    .nav__list {
        display: flex;
        gap: var(--spacing-md);
        align-items: center;
    }
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray);
    position: relative;
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link--cta {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}

.nav__link--cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    position: absolute;
    transition: var(--transition);
}

.hamburger__bar:nth-child(1) {
    top: 0;
}

.hamburger__bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger__bar:nth-child(3) {
    bottom: 0;
}

.nav.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nav.active .nav__list {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    padding-top: 80px;
    /* Header height */
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__container {
        grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
        gap: clamp(2rem, 4vw, var(--spacing-lg));
    }

    .hero .hero__title {
        font-size: clamp(1.8rem, 3.25vw, 2.5rem);
        letter-spacing: 0;
        white-space: nowrap;
    }
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero__title-sub {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.1em;
}

.hero__description {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5);
}

.hero__visual {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-circle {
    width: min(300px, 100%);
    aspect-ratio: 1;
    height: auto;
    background: linear-gradient(45deg, var(--color-primary), #a7f3d0);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Section Header */
.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section__title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--color-gray);
}

/* About Section */
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
    color: var(--color-primary-dark);
}

.about__text p {
    margin-bottom: var(--spacing-md);
}

/* Service Section */
.service__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.card__icon {
    margin-bottom: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.05), rgba(6, 199, 85, 0.15));
    border-radius: 20px;
    color: var(--color-primary);
    transition: var(--transition);
}

.card:hover .card__icon {
    transform: scale(1.08) rotate(-5deg);
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(6, 199, 85, 0.25));
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
}

.card__icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.card__text {
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* Flow Section */
.flow__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    position: relative;
}

.flow__step {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    position: relative;
}

.flow__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d0d0d0;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.flow__step-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

/* Company Section */
.company__info {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #eee;
}

.company__row {
    display: flex;
    flex-wrap: wrap;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #eee;
}

.company__row dt {
    width: 100%;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.company__row dd {
    width: 100%;
    color: var(--color-gray);
}

@media (min-width: 600px) {
    .company__row dt {
        width: 30%;
        margin-bottom: 0;
    }

    .company__row dd {
        width: 70%;
    }
}

/* Contact Section */
.contact__form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.contact__message {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 185, 0, 0.1);
}

.btn--submit {
    width: 100%;
    border: none;
}

.contact__line--primary {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: rgba(6, 199, 85, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
}

.contact__line-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact__line-link {
    display: inline-block;
    transition: var(--transition);
    border-radius: 12px;
}

.contact__line-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.contact__line-img {
    height: 56px;
    width: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
    animation: linePulse 2s infinite;
}

.contact__line-link:hover .contact__line-img {
    animation: none;
}

.contact__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: var(--spacing-md) 0;
    color: #aaa;
    font-size: 0.85rem;
}

.contact__divider::before,
.contact__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.contact__divider span {
    white-space: nowrap;
}

.btn--line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #06C755;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn--line-lg {
    padding: 1.25rem 3.5rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.4);
    animation: linePulse 2s infinite;
}

@keyframes linePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(6, 199, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
    }
}

.btn--line:hover {
    background-color: #05a847;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5);
    animation: none;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer__nav {
    margin-bottom: var(--spacing-sm);
}

.footer__list {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding: 0;
}

.footer__item a {
    color: #ccc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__item a:hover {
    color: var(--color-primary);
}

.copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Animations (Intersection Observer targets) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Plan Section */
.plan__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    align-items: flex-start;
}

.plan__card {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan__card--highlight {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.15);
    transform: scale(1.02);
    z-index: 1;
}

.plan__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}

.plan__header {
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
    padding-bottom: var(--spacing-md);
}

.plan__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.plan__subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.plan__price {
    margin: var(--spacing-sm) 0;
}

.plan__price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.plan__price-currency {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.plan__price-condition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0.9rem 0 1.15rem;
    padding: 0.7rem 0;
    border-top: 1px solid #d9eee1;
    border-bottom: 1px solid #d9eee1;
    color: var(--color-primary-dark);
    text-align: left;
}

.plan__price-condition-label {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan__price-condition-label svg {
    width: 1rem;
    height: 1rem;
}

.plan__price-condition p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
}

.plan__price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.plan__price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.plan__desc {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.6;
}

.faq {
    background: #f6faf7;
}

.faq__list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid #d4e4d9;
}

.faq__item {
    border-bottom: 1px solid #d4e4d9;
}

.faq__item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 1.2rem 3rem 1.2rem 2.7rem;
    color: var(--color-dark);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::before {
    position: absolute;
    left: 0;
    color: var(--color-primary);
    content: "Q";
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq__item summary::after {
    position: absolute;
    right: 0.3rem;
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    content: "";
    transform: rotate(45deg) translateY(-0.2rem);
    transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
    transform: rotate(225deg) translate(-0.1rem, -0.1rem);
}

.faq__item p {
    margin: -0.15rem 0 0;
    padding: 0 1rem 1.4rem 2.7rem;
    color: var(--color-gray);
    font-size: 0.94rem;
    line-height: 1.85;
}

.plan__features {
    text-align: left;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.plan__item {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.plan__item::before {
    content: "✔";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 700;
}

.text-sm {
    font-size: 0.8rem;
    color: #888;
}

.plan__recommend {
    background-color: var(--color-light);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    text-align: left;
}

.plan__recommend-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.plan__recommend-list {
    list-style: disk;
    padding-left: 1.2rem;
}

.plan__recommend-list li {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--color-gray);
}

.plan__elme-note {
    margin-top: var(--spacing-md);
    padding: 1.25rem;
    text-align: left;
    border: 1px solid #b9dfc8;
    background: #f4fbf6;
}

.plan__elme-title {
    margin-bottom: 0.65rem;
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 700;
}

.plan__elme-note p {
    margin-bottom: 0.65rem;
    color: var(--color-gray);
    font-size: 0.88rem;
    line-height: 1.75;
}

.plan__elme-note .plan__elme-caption {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.plan__elme-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

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

.plan__elme-link svg {
    width: 1rem;
    height: 1rem;
}

.plan__elme-note .plan__elme-notice {
    margin: 0.85rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid #cfe6d7;
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.7;
}

.plan__period {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.plan__period-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.03em;
    text-transform: none;
}

.plan__period-value {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

@media (max-width: 900px) {
    .plan__card--highlight {
        transform: none;
        margin: var(--spacing-md) 0;
    }
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-left: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .logo-sub {
        display: block;
        margin-left: 0;
        font-size: 0.7rem;
    }
}

/* TENBASE redesign */
:root {
    --color-primary: #00a63c;
    --color-primary-dark: #087a35;
    --color-accent: #1fc56d;
    --color-dark: #10251e;
    --color-gray: #4b5d55;
    --color-light: #f4f8f5;
    --color-bg-dark: #0d241b;
    --border-radius: 6px;
}

body {
    background: #ffffff;
    line-height: 1.75;
}

.container {
    width: min(92%, 1200px);
    padding: 0;
}

.header {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5ece7;
    box-shadow: none;
    background: #ffffff;
}

.logo {
    width: 154px;
    flex-basis: 154px;
}

.nav__list {
    gap: 1.5rem;
}

.nav__link {
    font-size: 0.84rem;
    color: #294238;
}

.nav__link--cta,
.btn--primary {
    background: var(--color-primary);
    border-radius: 4px;
    box-shadow: none;
}

.nav__link--cta {
    padding: 0.55rem 0.9rem;
}

.hero {
    height: auto;
    min-height: 720px;
    padding: 10.5rem 0 6rem;
    background: #f5faf7;
    border-bottom: 1px solid #dce9e1;
}

@media (min-width: 900px) {
    .hero__container {
        grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
        gap: clamp(2.5rem, 7vw, 6rem);
    }

    .hero .hero__title {
        font-size: clamp(2rem, 3.15vw, 3rem);
        white-space: nowrap;
    }
}

.hero__title {
    margin-bottom: 1.75rem;
    color: var(--color-dark);
    letter-spacing: 0;
}

.hero__title-sub,
.eyebrow {
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__title-sub {
    margin-bottom: 0.85rem;
}

.hero__description {
    max-width: 590px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #405248;
}

.btn {
    padding: 0.9rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.btn--primary:hover,
.btn--line:hover {
    background: var(--color-primary-dark);
    transform: none;
    box-shadow: none;
}

.hero__visual {
    height: auto;
    justify-content: stretch;
}

.hero__visual-circle {
    display: none;
}

.hero__system-panel {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9e8de;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(16, 37, 30, 0.08);
    overflow: hidden;
}

.hero__system-panel img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__system-label {
    margin-bottom: 1.25rem;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero__system-step {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 0.85rem;
    padding: 1rem 0;
    border-top: 1px solid #e8efea;
}

.hero__system-step > span,
.strengths__number {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.hero__system-step strong,
.hero__system-step small {
    display: block;
}

.hero__system-step strong {
    font-size: 1rem;
    color: var(--color-dark);
}

.hero__system-step small {
    margin-top: 0.1rem;
    color: var(--color-gray);
    font-size: 0.82rem;
}

.hero__system-foot {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8efea;
    color: #5c7065;
    font-size: 0.77rem;
}

.section {
    padding: 6.5rem 0;
}

.strengths {
    background: #ffffff;
}

.strengths__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.strengths__intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -0.75rem;
}

.strengths__intro h2 {
    font-size: clamp(1.8rem, 3.3vw, 2.65rem);
    line-height: 1.35;
    letter-spacing: 0;
}

.strengths__intro > p:last-child {
    color: var(--color-gray);
}

.strengths__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #cddbd2;
    border-bottom: 1px solid #cddbd2;
}

.strengths__item {
    padding: 2rem 2.25rem 2rem 0;
}

.strengths__item + .strengths__item {
    padding-left: 2.25rem;
    border-left: 1px solid #cddbd2;
}

.strengths__number {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.strengths__item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    letter-spacing: 0;
}

.strengths__item p:last-child {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.section__header {
    margin-bottom: 3rem;
}

.section__title {
    margin-bottom: 0.35rem;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0;
}

.section__subtitle {
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.about {
    background: #f4f8f5;
}

.about__content {
    max-width: 860px;
    text-align: left;
}

.about__text h3 {
    margin: 0 0 0.85rem;
    color: var(--color-dark);
    font-size: 1.35rem;
}

.about__text h3 + p {
    margin-bottom: 3rem;
    color: var(--color-gray);
}

.service.bg-light {
    background: #ffffff;
}

.service__grid {
    gap: 1.25rem;
}

.card {
    padding: 2rem;
    border: 1px solid #dce7df;
    border-radius: 6px;
    box-shadow: none;
}

.card:hover {
    transform: none;
    border-color: #99c9ab;
    box-shadow: 0 10px 24px rgba(16, 37, 30, 0.06);
}

.card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.35rem;
    border: 1px solid #b8d9c4;
    border-radius: 4px;
    background: #edf8f0;
}

.card__icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.8;
}

.card:hover .card__icon {
    transform: none;
    background: #edf8f0;
    box-shadow: none;
}

.card__title,
.flow__step-title {
    letter-spacing: 0;
}

.card__text,
.flow__step-text {
    color: var(--color-gray);
}

.plan {
    background: #f4f8f5;
}

.plan__grid {
    gap: 1.25rem;
}

.plan__card {
    padding: 2.25rem 1.75rem;
}

.plan__card--highlight {
    transform: none;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 24px rgba(0, 166, 60, 0.12);
}

.plan__badge {
    border-radius: 4px;
    box-shadow: none;
}

.flow__steps {
    gap: 0;
    border-top: 1px solid #cddbd2;
    border-bottom: 1px solid #cddbd2;
}

.flow__step {
    padding: 2rem 1.5rem;
    border: 0;
    border-radius: 0;
    text-align: left;
}

.flow__step + .flow__step {
    border-left: 1px solid #cddbd2;
}

.flow__number {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
}

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

.contact .section__title,
.contact .section__subtitle,
.contact__message {
    color: #ffffff;
}

.contact .section__subtitle {
    color: #98dfb3;
}

.contact__form-wrapper {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact__line--primary,
.contact__form {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.contact__line-note,
.contact__divider {
    color: #cce5d5;
}

.contact__line-img {
    border-radius: 4px;
    box-shadow: none;
    animation: none;
}

.contact__divider::before,
.contact__divider::after {
    background: rgba(255, 255, 255, 0.2);
}

.contact__form {
    background: #ffffff;
}

.contact__form label {
    color: var(--color-dark);
}

.footer {
    padding: 2.25rem 0;
    background: #081711;
}

@media (max-width: 899px) {
    .hero {
        min-height: 0;
        padding: 8.5rem 0 4rem;
    }

    .hero__visual {
        max-width: 520px;
    }

    .strengths__intro,
    .strengths__grid {
        grid-template-columns: 1fr;
    }

    .strengths__item,
    .strengths__item + .strengths__item {
        padding: 1.5rem 0;
        border-left: 0;
    }

    .strengths__item + .strengths__item {
        border-top: 1px solid #cddbd2;
    }

    .flow__steps {
        gap: 0;
    }

    .flow__step + .flow__step {
        border-top: 1px solid #cddbd2;
        border-left: 0;
    }
}

/* Recommended audience and build examples */
.audience__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.audience__intro .eyebrow {
    margin-bottom: 1rem;
}

.audience__intro h2 {
    margin: 0;
    color: var(--color-dark);
    font-size: clamp(1.9rem, 3.1vw, 2.7rem);
    letter-spacing: 0;
}

.audience__intro > p:last-child {
    margin-top: 1.15rem;
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.audience__list {
    border-top: 1px solid #cdded3;
}

.audience__item {
    display: grid;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 1.3rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #cdded3;
}

.audience__icon {
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    border-radius: 50%;
    background: #e9f7ed;
    color: var(--color-primary-dark);
}

.audience__icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.audience__item h3,
.examples h3 {
    margin: 0 0 0.35rem;
    color: var(--color-dark);
    font-size: 1.1rem;
    letter-spacing: 0;
}

.audience__item p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.examples {
    background: #f6faf7;
}

.examples__comic {
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #b7d1bf;
    background: var(--color-white);
    aspect-ratio: 2.63;
}

.examples__comic img {
    display: block;
    width: 100%;
    height: auto;
    margin: -6.9% 0 -5.1%;
}

.examples__lead {
    max-width: 680px;
    margin: -1.75rem auto 1.75rem;
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
}

.examples__lead span {
    display: block;
}

.examples__captions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 880px;
    margin: 1rem auto 0;
    list-style: none;
}

.examples__captions li {
    padding: 0.85rem 1rem;
}

.examples__captions li + li {
    border-left: 1px solid #cdded3;
}

.examples__captions strong,
.examples__captions span {
    display: block;
}

.examples__captions strong {
    margin-bottom: 0.2rem;
    color: var(--color-dark);
    font-size: 0.85rem;
}

.examples__captions span {
    color: var(--color-gray);
    font-size: 0.78rem;
    line-height: 1.55;
}

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

    .audience__intro {
        margin-bottom: 0.65rem;
    }

    .examples__comic {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        aspect-ratio: auto;
    }

    .examples__comic img {
        min-width: 560px;
    }

    .examples__lead {
        margin-top: -1.35rem;
        text-align: left;
    }

    .examples__captions {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples__captions li {
        padding: 0.8rem 0;
    }

    .examples__captions li:nth-child(odd) {
        border-left: 0;
    }

    .examples__captions li:nth-child(n + 3) {
        border-top: 1px solid #cdded3;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(90%, 1200px);
    }

    .logo {
        width: 135px;
        flex-basis: 135px;
    }

    .hero__description br,
    .strengths__intro h2 br {
        display: none;
    }

    .section {
        padding: 4.5rem 0;
    }

    .card,
    .plan__card,
    .contact__line--primary,
    .contact__form {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto; /* Remove fixed height constraint */
        min-height: 100vh;
        padding-top: 120px; /* Increase padding to clear taller header */
        padding-bottom: 60px;
        align-items: flex-start; /* Align to top to avoid cutting off */
    }

    .hero__container {
        gap: 2rem;
    }

    .hero__title {
        font-size: 1.8rem; /* Reduce font size */
    }
    
    .hero__title-sub {
        font-size: 0.9rem;
    }

    .hero__visual {
        height: 250px; /* Reduce visual size */
        margin-top: 2rem;
    }
    
    .hero__visual-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 0;
        padding: 8.5rem 0 4rem;
    }

    .hero__visual {
        height: auto;
        margin-top: 0;
    }
}

/* Photo hero */
.hero {
    isolation: isolate;
    min-height: 700px;
    background: url("assets/hero-laptop-background.png") center / cover no-repeat;
    border-bottom: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 23, 17, 0.66);
}

@media (min-width: 900px) {
    .hero__container {
        grid-template-columns: minmax(0, 660px);
    }

    .hero .hero__title {
        white-space: normal;
    }
}

.hero__visual {
    display: none;
}

.hero__title {
    color: #ffffff;
}

.hero__title-sub {
    color: #8de5ae;
}

.hero__description {
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn--primary {
    background: #00b84c;
}

.hero .btn--primary:hover {
    background: #0a943f;
}

.plan__grid--single {
    grid-template-columns: minmax(0, 680px);
    justify-content: center;
}

.plan__cta {
    align-self: center;
    margin-top: 1.5rem;
}

.contact__coconala-link {
    min-width: min(100%, 300px);
}

.contact__line--secondary {
    padding-top: 1.25rem;
    text-align: center;
}

.coconala-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.coconala-button img {
    display: block;
    width: auto;
    height: 32px;
    max-width: 150px;
}

.why-line {
    background: #ffffff;
}

.why-line__intro {
    margin-bottom: 2.75rem;
    text-align: center;
}

.why-line__intro .eyebrow {
    margin-bottom: 1rem;
}

.why-line__intro h2 {
    font-size: 2.35rem;
    line-height: 1.3;
}

.why-line__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #cddbd2;
    border-bottom: 1px solid #cddbd2;
}

.why-line__item {
    min-height: 230px;
    padding: 2rem 2.25rem;
}

.why-line__item + .why-line__item {
    border-left: 1px solid #cddbd2;
}

.why-line__icon {
    display: inline-grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    margin-bottom: 1.4rem;
    border-radius: 50%;
}

.why-line__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke-width: 2;
}

.why-line__icon--message {
    background: #e8f7ed;
    color: #008a3d;
}

.why-line__icon--calendar {
    background: #e8f5f6;
    color: #167d86;
}

.why-line__icon--repeat {
    background: #fff4e7;
    color: #ba6918;
}

.why-line__item h3 {
    margin-bottom: 0.85rem;
    color: #16382a;
    font-size: 1.2rem;
    line-height: 1.5;
}

.why-line__item p {
    color: var(--color-gray);
    font-size: 0.93rem;
    line-height: 1.8;
}

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

    .why-line__intro {
        margin-bottom: 2rem;
    }

    .why-line__intro h2 {
        font-size: 1.85rem;
    }

    .why-line__item {
        min-height: 0;
        padding: 1.5rem 0;
    }

    .why-line__item + .why-line__item {
        border-top: 1px solid #cddbd2;
        border-left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 760px;
        background-position: 67% center;
    }
}

/* Strengths section */
.strengths {
    background: #f4f8f5;
}

.strengths__intro {
    margin-bottom: 2.75rem;
}

.strengths__eyebrow {
    margin-bottom: 1.25rem;
}

.strengths__grid {
    gap: 1rem;
    border: 0;
}

.strengths__item,
.strengths__item + .strengths__item {
    display: flex;
    min-height: 270px;
    padding: 2rem;
    flex-direction: column;
    border: 1px solid #d8e6dc;
    border-radius: 6px;
    background: #ffffff;
}

.strengths__item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.strengths__number {
    display: inline-grid;
    width: 3.35rem;
    height: 3.35rem;
    margin: 0;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #54df82 0 50%, #079347 50% 100%);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(7, 147, 71, 0.22);
}

.strengths__item:nth-child(2) .strengths__number {
    background: linear-gradient(135deg, #49c4a2 0 50%, #087f69 50% 100%);
    box-shadow: 0 8px 16px rgba(8, 127, 105, 0.22);
}

.strengths__item:nth-child(3) .strengths__number {
    background: linear-gradient(135deg, #4d7887 0 50%, #173d4d 50% 100%);
    box-shadow: 0 8px 16px rgba(23, 61, 77, 0.22);
}

.service__card {
    display: flex;
    flex-direction: column;
}

.service__visual {
    display: block;
    width: min(100%, 190px);
    aspect-ratio: 1;
    margin: 0 auto 1.35rem;
    object-fit: contain;
}

.service__visual--character {
    width: min(100%, 154px);
}

/* Flow timeline */
.flow__steps {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    gap: 0;
    border: 0;
}

.flow__step,
.flow__step + .flow__step {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1.25rem;
    min-height: 116px;
    padding: 0 0 2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.flow__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 3.5rem;
    bottom: 0;
    left: 1.72rem;
    width: 1px;
    background: #b7d9c3;
}

.flow__number {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--color-dark);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
}

.flow__step-title {
    align-self: end;
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
}

.flow__step-text {
    grid-column: 2;
    margin: 0;
    color: var(--color-gray);
}

/* Customer voices */
.reviews {
    background: #f4f8f5;
}

.reviews__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 760px;
    margin: -0.75rem auto 2.25rem;
    gap: 1.5rem;
    color: var(--color-gray);
}

.reviews__intro p {
    margin: 0;
}

.reviews__source {
    flex: 0 0 auto;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

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

.review__card {
    overflow: hidden;
    padding: 1.85rem;
    border: 1px solid #d8e6dc;
    border-radius: 6px;
    background: #ffffff;
}

.review__visual {
    display: block;
    width: calc(100% + 3.7rem);
    max-width: none;
    height: 154px;
    margin: -1.85rem -1.85rem 1.5rem;
    object-fit: cover;
    object-position: center;
}

.review__card h3 {
    margin: 0 0 0.9rem;
    color: var(--color-dark);
    font-size: 1.2rem;
    line-height: 1.55;
}

.review__meta {
    display: inline-block;
    margin: 0 0 0.7rem;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: #e7f4ea;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
}

.review__card > p:last-child {
    margin: 0;
    color: var(--color-gray);
    line-height: 1.9;
}

/* Profile */
.profile {
    background: #ffffff;
}

.profile__inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 560px);
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.profile__image {
    display: block;
    width: 100%;
    max-width: 190px;
    border: 1px solid #d8e6dc;
    border-radius: 50%;
    background: #f4f8f5;
}

.profile__content .eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.profile__content h2 {
    margin: 0 0 0.9rem;
    color: var(--color-dark);
    font-size: 1.7rem;
}

.profile__name {
    margin: 0 0 1rem;
    color: var(--color-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.profile__name span {
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.profile__content > p:not(.eyebrow):not(.profile__name) {
    margin: 0 0 0.7rem;
    color: var(--color-gray);
    line-height: 1.85;
}

.profile__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.45rem;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.profile__link:hover {
    color: var(--color-primary);
}

.profile__link svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 600px) {
    .flow__step,
    .flow__step + .flow__step {
        grid-template-columns: 3rem minmax(0, 1fr);
        gap: 1rem;
        min-height: 100px;
        padding-bottom: 1.75rem;
    }

    .flow__number {
        width: 3rem;
        height: 3rem;
        font-size: 0.85rem;
    }

    .flow__step:not(:last-child)::before {
        top: 3rem;
        left: 1.47rem;
    }

    .reviews__intro {
        display: block;
        margin-top: -1rem;
    }

    .reviews__source {
        display: inline-block;
        margin-top: 0.85rem;
    }

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

    .review__card {
        padding: 1.5rem;
    }

    .review__visual {
        width: calc(100% + 3rem);
        height: 170px;
        margin: -1.5rem -1.5rem 1.35rem;
    }

    .profile__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .profile__image {
        width: 150px;
        margin: 0 auto;
    }
}

.strengths__label {
    color: #7a9184;
    font-family: var(--font-heading);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.strengths__item h3 {
    margin: 0 0 0.9rem;
    color: var(--color-dark);
    font-size: 1.32rem;
    line-height: 1.45;
}

.strengths__item p:last-child {
    margin-top: auto;
    color: var(--color-gray);
    font-size: 0.92rem;
    line-height: 1.8;
}

.strengths__item.strengths__item--featured {
    border-color: var(--color-dark);
    background: var(--color-dark);
}

.strengths__item--featured .strengths__number {
    border-color: #70cb90;
    background: #1b4b3b;
    color: #a5efbd;
}

.strengths__item--featured .strengths__label {
    color: #a5efbd;
}

.strengths__item--featured h3 {
    color: #ffffff;
}

.strengths__item--featured p:last-child {
    color: #d2e6d9;
}

@media (max-width: 899px) {
    .strengths__item,
    .strengths__item + .strengths__item {
        min-height: 0;
        padding: 1.5rem;
        border: 1px solid #d8e6dc;
    }

    .strengths__item-heading {
        margin-bottom: 1.5rem;
    }
}

/* Four-panel LINE setup example */
.examples__story {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1080px;
    margin: 0 auto;
}

.examples__story-item {
    overflow: hidden;
    border: 1px solid #cdded3;
    background: var(--color-white);
}

.examples__story-visual {
    position: relative;
    aspect-ratio: 0.66;
    overflow: hidden;
    border-bottom: 1px solid #cdded3;
    background: #ffffff;
}

.examples__story-visual img {
    position: absolute;
    top: -11%;
    display: block;
    width: 400%;
    max-width: none;
    height: auto;
}

.examples__story-visual--1 img { left: 0; }
.examples__story-visual--2 img { left: -100%; }
.examples__story-visual--3 img { left: -200%; }
.examples__story-visual--4 img { left: -300%; }

.examples__story-body {
    min-height: 132px;
    padding: 1rem;
}

.examples__story-body h3 {
    margin: 0 0 0.45rem;
    color: var(--color-dark);
    font-size: 1rem;
    letter-spacing: 0;
}

.examples__story-body span {
    display: block;
    color: var(--color-gray);
    font-size: 0.83rem;
    line-height: 1.65;
}

@media (max-width: 899px) {
    .examples__story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .examples__story-body {
        min-height: 126px;
        padding: 0.85rem;
    }

    .examples__story-body h3 {
        font-size: 0.95rem;
    }

    .examples__story-body span {
        font-size: 0.78rem;
    }
}

/* Editorial illustrations for the WHY LINE section */
.why-line__visual {
    position: relative;
    width: min(100%, 210px);
    aspect-ratio: 0.8;
    margin: 0 0 1.4rem;
    overflow: hidden;
    background: #f7f4ee;
}

.why-line__visual img {
    position: absolute;
    top: -8%;
    display: block;
    width: 300%;
    max-width: none;
    height: auto;
}

.why-line__visual--message img { left: 0; }
.why-line__visual--calendar img { left: -100%; }
.why-line__visual--repeat img { left: -200%; }

@media (max-width: 768px) {
    .why-line__visual {
        width: 170px;
        margin-bottom: 1.15rem;
    }
}

/* Object icons for the recommended audience section */
.audience__item {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 1.25rem;
}

.audience__icon {
    position: relative;
    display: block;
    width: 4.25rem;
    height: 4.25rem;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.audience__icon img {
    position: absolute;
    top: 0;
    display: block;
    width: 300%;
    max-width: none;
    height: auto;
}

.audience__icon--store img { left: 0; }
.audience__icon--school img { left: -100%; }
.audience__icon--message img { left: -200%; }

@media (max-width: 899px) {
    .audience__item {
        grid-template-columns: 3.75rem minmax(0, 1fr);
        gap: 1.1rem;
    }

    .audience__icon {
        width: 3.75rem;
        height: 3.75rem;
    }
}

/* Storyboard-style panels with readable dialogue overlays */
.examples__story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
    gap: 1.25rem;
}

.examples__story-visual {
    aspect-ratio: 1.19;
}

.examples__story-visual img {
    top: 0;
    width: 200%;
}

.examples__story-visual--1 img { left: 0; }
.examples__story-visual--2 img { left: -100%; }
.examples__story-visual--3 img { top: -100%; left: 0; }
.examples__story-visual--4 img { top: -100%; left: -100%; }

.examples__story-body {
    min-height: 118px;
    padding: 1.15rem 1.25rem;
}

.examples__bubble {
    position: absolute;
    top: 15%;
    z-index: 1;
    max-width: 48%;
    margin: 0;
    padding: 0.45rem 0.6rem;
    border: 1px solid #385445;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(23, 61, 45, 0.12);
    color: #142c1f;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.examples__bubble::after {
    position: absolute;
    bottom: -0.34rem;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #385445;
    border-bottom: 1px solid #385445;
    background: #ffffff;
    content: "";
    transform: rotate(45deg);
}

.examples__bubble--left { left: 6%; }
.examples__bubble--left::after { left: 0.75rem; }
.examples__bubble--right { right: 6%; }
.examples__bubble--right::after { right: 0.75rem; }

.examples__summary {
    max-width: 780px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #cdded3;
    color: var(--color-dark);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.85;
    text-align: center;
}

@media (max-width: 899px) {
    .examples__story {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .examples__story-body {
        min-height: 0;
    }

    .examples__bubble {
        font-size: 0.88rem;
    }

    .examples__summary {
        margin-top: 2rem;
        font-size: 0.96rem;
    }
}
