:root {
    --aine-primary: #138a5b;
    --aine-ink: #1f2a24;
    --aine-accent: #ff8a3d;
    --aine-ai: #6ad7c2;
    --aine-canvas: #f8faf4;
    --aine-soft: #edf8e9;
    --aine-border: #ddeed7;
    --aine-muted: #66746b;
    --white: #ffffff;
    --font-sans: "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--aine-canvas);
    color: var(--aine-ink);
    font-family: var(--font-sans);
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    min-height: 76px;
    padding: 14px clamp(20px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(248, 250, 244, 0.92);
    border-bottom: 1px solid var(--aine-border);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-image {
    display: block;
    width: auto;
    height: 54px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--aine-primary);
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.brand strong {
    display: block;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--aine-primary);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 44px);
    font-size: 0.98rem;
    font-weight: 900;
}

.site-nav a {
    color: var(--aine-ink);
}

.nav-line-cta {
    min-height: 44px;
    margin-left: clamp(4px, 1.4vw, 20px);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--aine-primary);
    border-radius: 6px;
    color: var(--aine-primary) !important;
}

.nav-cta {
    min-height: 44px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--aine-primary);
    color: var(--white) !important;
    border-radius: 6px;
}

.hero {
    min-height: min(820px, 100vh);
    padding: 116px clamp(28px, 4.5vw, 64px) 56px;
    display: grid;
    grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
    grid-template-areas: "copy visual";
    align-items: center;
    column-gap: clamp(28px, 3vw, 48px);
    overflow: hidden;
}

.hero-copy {
    grid-area: copy;
    max-width: 720px;
    min-width: 0;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--aine-primary);
    font-size: clamp(0.76rem, 1.2vw, 0.88rem);
    font-weight: 900;
    letter-spacing: 0;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 4.45vw, 4.85rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    word-break: keep-all;
    overflow-wrap: normal;
}

h1 span {
    color: inherit;
}

.lead {
    margin: 24px 0 0;
    color: #111814;
    font-size: clamp(1.08rem, 1.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1.9;
}

.pain-points {
    margin-top: clamp(28px, 4.4vw, 46px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pain-points span {
    min-height: 44px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 248, 233, 0.78);
    border: 1px solid var(--aine-border);
    border-radius: 6px;
    color: var(--aine-primary);
    font-size: 0.95rem;
    font-weight: 900;
}

.pain-points img {
    display: none;
}

.pain-points span::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: var(--aine-primary);
}

.hero-actions {
    margin-top: clamp(32px, 4.2vw, 52px);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.button {
    width: min(220px, 100%);
    min-width: 0;
    min-height: 64px;
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--aine-primary);
    border-radius: 6px;
    font-size: 1.16rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 42, 36, 0.08);
}

.button-primary {
    background: var(--aine-primary);
    color: var(--white);
}

.button-secondary {
    background: var(--aine-canvas);
    color: var(--aine-primary);
}

.hero-visual-pc {
    grid-area: visual;
    position: relative;
    min-height: min(640px, calc(100vh - 164px));
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-visual-mobile {
    display: none;
}

.hero-status {
    position: absolute;
    z-index: 2;
    width: min(220px, 34%);
    padding: 16px 18px;
    display: grid;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 138, 91, 0.14);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(31, 42, 36, 0.08);
    color: var(--aine-ink);
}

.hero-status b {
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.35;
}

.hero-status span {
    color: var(--aine-muted);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.55;
}

.hero-status-plan {
    left: 11%;
    top: 28%;
}

.hero-status-reply {
    left: 10%;
    top: 48%;
}

.hero-status-growth {
    left: 12%;
    top: 69%;
}

.agent-main-image-pc {
    display: block;
    width: min(72%, 560px);
    max-height: min(720px, calc(100vh - 136px));
    object-fit: contain;
    clip-path: none;
    transform: translateX(2%);
}

.usage-section {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    padding: 88px 0 104px;
    border-top: 1px solid var(--aine-border);
}

.usage-heading {
    max-width: 860px;
    margin-bottom: 36px;
}

.usage-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 3.8vw, 3.7rem);
    line-height: 1.18;
}

.usage-heading p:not(.section-kicker) {
    max-width: 760px;
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.95;
}

.usage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: clamp(24px, 4vw, 54px);
    align-items: stretch;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.usage-card {
    min-height: 236px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
}

.usage-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    place-items: center;
    background: var(--aine-primary);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 900;
}

.usage-card h3 {
    margin-bottom: 12px;
}

.usage-card p {
    margin: 0;
    color: var(--aine-muted);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.85;
}

.usage-visual {
    min-height: 486px;
    display: grid;
    align-content: stretch;
    gap: 14px;
}

.usage-photo-slot {
    position: relative;
    min-height: 250px;
    background:
        linear-gradient(135deg, rgba(106, 215, 194, 0.24), rgba(255, 138, 61, 0.12)),
        rgba(255, 255, 255, 0.78);
    border: 2px dashed rgba(19, 138, 91, 0.42);
    border-radius: 8px;
    overflow: hidden;
}

.usage-photo-slot img {
    position: absolute;
    right: -8px;
    bottom: -42px;
    width: min(45%, 210px);
    filter: drop-shadow(0 18px 28px rgba(31, 42, 36, 0.12));
}

.usage-photo-copy {
    position: relative;
    z-index: 1;
    max-width: 285px;
    padding: 28px;
}

.usage-photo-copy span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--aine-primary);
    font-size: 0.76rem;
    font-weight: 900;
}

.usage-photo-copy b {
    display: block;
    color: var(--aine-ink);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.45;
}

.usage-photo-copy p {
    margin: 14px 0 0;
    color: var(--aine-muted);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.8;
}

.usage-console {
    padding: 24px;
    background: var(--aine-ink);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    color: var(--white);
}

.usage-console-top {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.usage-console-top b {
    font-size: 0.96rem;
    font-weight: 900;
}

.usage-console-top span {
    display: inline-grid;
    min-height: 28px;
    padding: 0 12px;
    place-items: center;
    background: rgba(106, 215, 194, 0.16);
    border: 1px solid rgba(106, 215, 194, 0.44);
    border-radius: 999px;
    color: var(--aine-ai);
    font-size: 0.74rem;
    font-weight: 900;
}

.usage-console p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.85;
}

.usage-console-actions {
    margin-top: 20px;
    display: grid;
    gap: 8px;
}

.usage-console-actions em {
    display: block;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 800;
}

.intro-worries {
    position: relative;
    isolation: isolate;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 52px 0 96px;
    overflow: hidden;
}

.intro-worries::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    z-index: -1;
    width: 100vw;
    margin-left: -50vw;
    background: #f8faf4;
}

.worry-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.worry-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 3.8vw, 3.7rem);
    line-height: 1.18;
}

.worry-heading p:not(.section-kicker) {
    max-width: 720px;
    margin: 0;
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.95;
}

.worry-diagnosis-image {
    display: block;
    width: calc(100% + 72px);
    height: auto;
    margin-left: -36px;
    filter: saturate(0.96) contrast(0.98);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 4%, #000 13%, #000 86%, rgba(0, 0, 0, 0.2) 96%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 4%, #000 13%, #000 86%, rgba(0, 0, 0, 0.2) 96%, transparent 100%);
}

.worry-diagnosis-picture {
    display: block;
}

.worry-diagnosis-board {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) minmax(0, 1fr);
    grid-template-areas:
        "start center staff"
        "cost center solution";
    gap: 18px;
    align-items: stretch;
}

.worry-diagnosis-board::before {
    content: "";
    position: absolute;
    inset: 6% 8%;
    z-index: -1;
    background:
        radial-gradient(circle at 48% 52%, rgba(106, 215, 194, 0.18), transparent 32%),
        radial-gradient(circle at 18% 16%, rgba(19, 138, 91, 0.1), transparent 24%),
        radial-gradient(circle at 78% 76%, rgba(255, 138, 61, 0.1), transparent 22%);
    filter: blur(18px);
}

.diagnosis-panel,
.diagnosis-solution {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(19, 138, 91, 0.12);
}

.diagnosis-panel {
    min-height: 326px;
    padding: 28px;
    display: grid;
    align-content: start;
    gap: 18px;
}

.diagnosis-panel h2 {
    width: fit-content;
    margin: -58px auto 0;
    min-width: min(100%, 250px);
    padding: 12px 22px;
    background: linear-gradient(180deg, #0f6f49, #06452e);
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    color: var(--white);
    font-size: clamp(1.18rem, 2vw, 1.76rem);
    line-height: 1.3;
    text-align: center;
}

.diagnosis-panel p {
    margin: 0;
    color: var(--aine-muted);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.8;
}

.diagnosis-start {
    grid-area: start;
    margin-top: 58px;
}

.diagnosis-cost {
    grid-area: cost;
    margin-top: 34px;
}

.diagnosis-staff {
    grid-area: staff;
    margin-top: 58px;
}

.diagnosis-center {
    grid-area: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.diagnosis-center img {
    position: relative;
    z-index: 2;
    width: min(94%, 320px);
    max-height: 560px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 18px 28px rgba(31, 42, 36, 0.14));
}

.diagnosis-speech {
    position: absolute;
    top: 72px;
    left: 50%;
    z-index: 3;
    width: min(280px, 92%);
    padding: 18px 20px;
    background: var(--aine-canvas);
    border: 3px solid var(--aine-ink);
    border-radius: 999px;
    color: var(--aine-ink);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.7;
    transform: translateX(-50%);
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
}

.diagnosis-speech::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-right: 3px solid var(--aine-ink);
    border-bottom: 3px solid var(--aine-ink);
    transform: translateX(-50%) rotate(45deg);
}

.diagnosis-table {
    position: absolute;
    left: 8px;
    bottom: 92px;
    z-index: 3;
    width: 152px;
    padding: 14px;
    display: grid;
    gap: 8px;
    background: #f2fbf4;
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.14);
    transform: rotate(-6deg);
}

.diagnosis-table span {
    color: var(--aine-primary);
    font-size: 0.72rem;
    font-weight: 900;
}

.diagnosis-table b {
    position: relative;
    padding-left: 18px;
    color: var(--aine-ink);
    font-size: 0.78rem;
    line-height: 1.2;
}

.diagnosis-table b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 10px;
    height: 10px;
    background: var(--aine-primary);
    border-radius: 50%;
}

.line-phone {
    width: min(100%, 210px);
    min-height: 188px;
    padding: 12px;
    display: grid;
    gap: 10px;
    background: linear-gradient(160deg, #eaf8f3, #d8edf5);
    border: 3px solid var(--aine-ink);
    border-radius: 22px;
    transform: rotate(-5deg);
}

.line-phone-top {
    padding: 8px 10px;
    background: var(--aine-primary);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 900;
}

.line-message,
.line-flow-empty {
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(31, 42, 36, 0.18);
    border-radius: 10px;
    color: var(--aine-ink);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.5;
}

.line-flow-empty {
    border: 2px dashed rgba(19, 138, 91, 0.5);
    color: var(--aine-primary);
}

.invoice-stack {
    min-height: 190px;
    position: relative;
}

.invoice-stack div {
    position: absolute;
    width: 155px;
    min-height: 96px;
    padding: 16px 14px;
    display: grid;
    gap: 8px;
    background: var(--white);
    border: 2px solid rgba(31, 42, 36, 0.7);
    box-shadow: 5px 5px 0 rgba(31, 42, 36, 0.08);
}

.invoice-stack div:nth-child(1) {
    left: 10%;
    top: 8px;
    transform: rotate(-8deg);
}

.invoice-stack div:nth-child(2) {
    left: 40%;
    top: 0;
    transform: rotate(7deg);
}

.invoice-stack div:nth-child(3) {
    left: 26%;
    top: 88px;
    transform: rotate(-2deg);
}

.invoice-stack span {
    color: var(--aine-ink);
    font-size: 0.9rem;
    font-weight: 900;
}

.invoice-stack b {
    color: var(--aine-ink);
    font-size: 1rem;
    font-weight: 900;
}

.task-stack {
    display: grid;
    gap: 10px;
}

.task-stack span {
    min-height: 46px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    background: #f6faf5;
    border: 2px solid rgba(31, 42, 36, 0.34);
    border-radius: 8px;
    color: var(--aine-ink);
    font-size: 0.92rem;
    font-weight: 900;
}

.task-stack span::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background: var(--aine-primary);
    border-radius: 50%;
}

.diagnosis-solution {
    grid-area: solution;
    align-self: center;
    min-height: 208px;
    padding: 34px;
    display: grid;
    place-items: center;
    text-align: center;
}

.diagnosis-solution > span {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 64px;
    height: 64px;
    background: var(--aine-primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(19, 138, 91, 0.2);
    transform: translateX(-50%);
}

.diagnosis-solution > span::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 16px;
    width: 18px;
    height: 30px;
    border-right: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    transform: rotate(45deg);
}

.diagnosis-solution p {
    margin: 0;
    color: var(--aine-ink);
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    font-weight: 900;
    line-height: 1.55;
}

.diagnosis-solution strong {
    color: var(--aine-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 138, 61, 0.64);
    text-decoration-thickness: 0.2em;
    text-underline-offset: -0.08em;
}

.intro-guide {
    display: grid;
    grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
    align-items: end;
    gap: clamp(22px, 4vw, 46px);
}

.intro-character {
    height: 330px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.intro-character img {
    width: min(100%, 280px);
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 34px rgba(31, 42, 36, 0.13));
}

.intro-balloon {
    position: relative;
    margin-bottom: 34px;
    padding: clamp(26px, 3.4vw, 38px);
    background: var(--white);
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 10px 10px 0 rgba(19, 138, 91, 0.14);
}

.intro-balloon::before {
    content: "";
    position: absolute;
    left: -21px;
    bottom: 62px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border-left: 3px solid var(--aine-ink);
    border-bottom: 3px solid var(--aine-ink);
    transform: rotate(45deg);
}

.intro-name {
    margin-bottom: 12px;
    color: var(--aine-primary);
    font-size: 0.86rem;
    font-weight: 900;
}

.intro-balloon h2 {
    margin-bottom: 22px;
    font-size: clamp(1.42rem, 2.45vw, 2.12rem);
    line-height: 1.35;
}

.intro-problem-lead {
    margin-bottom: 0;
    color: var(--aine-ink);
    font-size: clamp(1.36rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.45;
}

.intro-problem-lead span {
    display: inline-block;
    margin-right: 0.08em;
    color: var(--aine-primary);
    font-size: 1.22em;
    text-decoration: underline;
    text-decoration-color: rgba(255, 138, 61, 0.6);
    text-decoration-thickness: 0.18em;
    text-underline-offset: -0.08em;
}

.worry-list {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.worry-card {
    min-height: 252px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
}

.worry-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    place-items: center;
    background: var(--aine-primary);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 900;
}

.worry-card p {
    margin-bottom: 0;
    color: var(--aine-muted);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.85;
}

.aine-can-do {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    padding: 92px 0 112px;
}

.can-do-intro {
    max-width: 860px;
    margin-bottom: 44px;
}

.can-do-intro h2 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 3.8vw, 3.7rem);
    line-height: 1.18;
}

.can-do-intro p:not(.section-kicker) {
    max-width: 760px;
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.9;
}

.before-after-visual {
    position: relative;
    margin: 20px 0 0;
    overflow: visible;
}

.before-after-visual picture {
    display: block;
}

.before-after-visual::before {
    content: none;
}

.before-after-visual img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.98) contrast(0.99);
}

.before-after-mobile-compare {
    display: none;
}

.before-after-mobile-panels {
    display: none;
}

.before-after-list {
    display: grid;
    gap: 22px;
}

.before-after-card {
    padding: clamp(24px, 3.4vw, 40px);
    display: grid;
    grid-template-columns: 56px minmax(0, 0.95fr) 52px minmax(0, 1.15fr);
    align-items: stretch;
    gap: clamp(16px, 2.4vw, 28px);
    background: rgba(255, 255, 255, 0.72);
    border: 2px solid rgba(31, 42, 36, 0.18);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(19, 138, 91, 0.1);
}

.before-after-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--aine-primary);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 900;
}

.before-after-column {
    min-height: 190px;
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 12px;
    border-radius: 8px;
}

.before-after-column span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
}

.before-after-column p {
    margin: 0;
    color: var(--aine-muted);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.85;
}

.before-after-column h3 {
    margin: 0;
    color: var(--aine-ink);
    font-size: clamp(1.36rem, 2vw, 2rem);
    line-height: 1.35;
}

.before {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 42, 36, 0.12);
}

.before span {
    background: rgba(31, 42, 36, 0.08);
    color: var(--aine-muted);
}

.after {
    background: rgba(237, 248, 233, 0.84);
    border: 2px solid rgba(19, 138, 91, 0.2);
}

.after span {
    background: var(--aine-primary);
    color: var(--white);
}

.before-after-arrow {
    display: grid;
    place-items: center;
    color: var(--aine-primary);
    font-size: 2.4rem;
    font-weight: 900;
}

.aine-workflow {
    display: grid;
    gap: 34px;
}

.workflow-scene {
    min-height: 480px;
    padding: clamp(28px, 4vw, 46px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(26px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.78);
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 10px 10px 0 rgba(19, 138, 91, 0.12);
}

.workflow-reverse {
    grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.workflow-reverse .workflow-copy {
    order: 2;
}

.workflow-reverse .workflow-visual {
    order: 1;
}

.workflow-copy > span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    background: var(--aine-primary);
    border: 2px solid var(--aine-ink);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 900;
}

.workflow-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 3.1vw, 3.1rem);
    line-height: 1.22;
}

.workflow-copy p {
    max-width: 620px;
    margin-bottom: 22px;
    color: var(--aine-muted);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.9;
}

.workflow-copy .workflow-method-label {
    margin-bottom: 10px;
    color: var(--aine-primary);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.4;
}

.workflow-copy ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.workflow-copy li {
    position: relative;
    padding-left: 28px;
    color: var(--aine-ink);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.6;
}

.workflow-copy li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--aine-accent);
    border: 2px solid var(--aine-ink);
    border-radius: 50%;
}

.workflow-visual {
    min-height: 360px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(19, 138, 91, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 138, 91, 0.08) 1px, transparent 1px),
        #f5fbef;
    background-size: 28px 28px;
    border: 2px solid var(--aine-border);
    border-radius: 8px;
}

.workflow-image-visual {
    padding: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
}

.workflow-image-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.mock-window,
.scenario-board,
.chat-phone,
.inbox-panel {
    width: min(86%, 460px);
    background: var(--white);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(19, 138, 91, 0.16);
}

.mock-topbar {
    height: 42px;
    padding: 14px;
    display: flex;
    gap: 7px;
    border-bottom: 2px solid var(--aine-ink);
}

.mock-topbar span {
    width: 10px;
    height: 10px;
    background: var(--aine-accent);
    border-radius: 50%;
}

.setup-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.setup-grid div,
.scenario-card,
.inbox-row {
    padding: 16px;
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    background: var(--aine-canvas);
}

.setup-grid b,
.scenario-card b,
.inbox-row b {
    display: block;
    margin-bottom: 6px;
    color: var(--aine-ink);
    font-size: 0.98rem;
    font-weight: 900;
}

.setup-grid em,
.scenario-card em {
    color: var(--aine-muted);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
}

.scenario-board,
.inbox-panel {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.scenario-card span,
.inbox-row span,
.chat-draft span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: var(--aine-primary);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
}

.scenario-card.active {
    background: #e9f8ef;
    border-color: var(--aine-primary);
}

.chat-phone {
    max-width: 330px;
    padding: 20px;
    display: grid;
    gap: 12px;
    border-radius: 22px;
}

.chat-line {
    width: fit-content;
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.55;
}

.chat-line.customer {
    justify-self: start;
    background: #eef2f0;
}

.chat-line.aine {
    justify-self: end;
    background: var(--aine-primary);
    color: var(--white);
}

.chat-draft {
    margin-top: 8px;
    padding: 16px;
    background: var(--aine-soft);
    border: 2px solid var(--aine-primary);
    border-radius: 8px;
}

.chat-draft b {
    display: block;
    color: var(--aine-ink);
    font-size: 0.94rem;
    line-height: 1.5;
}

.inbox-row {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.inbox-row span {
    margin-bottom: 0;
    justify-content: center;
}

.inbox-row.human span {
    background: var(--aine-accent);
}

.skill-visual {
    min-height: 420px;
}

.skill-core {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    background: var(--aine-primary);
    border: 3px solid var(--aine-ink);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 0 0 18px rgba(19, 138, 91, 0.12);
}

.skill-visual span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    padding: 10px 13px;
    background: var(--white);
    border: 2px solid var(--aine-ink);
    border-radius: 999px;
    color: var(--aine-ink);
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: 5px 5px 0 rgba(19, 138, 91, 0.14);
}

.comparison-section {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    padding: 92px 0 104px;
    border-top: 1px solid var(--aine-border);
}

.comparison-heading {
    max-width: 840px;
    margin-bottom: 34px;
}

.comparison-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 3.9vw, 3.75rem);
    line-height: 1.18;
}

.comparison-heading p:not(.section-kicker) {
    max-width: 780px;
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.95;
}

.comparison-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 920px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(31, 42, 36, 0.22);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(19, 138, 91, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 22px 24px;
    border-right: 1px solid rgba(31, 42, 36, 0.16);
    border-bottom: 1px solid rgba(31, 42, 36, 0.14);
    text-align: left;
    vertical-align: middle;
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.9);
    color: var(--aine-ink);
    font-size: 1.12rem;
    font-weight: 900;
}

.comparison-table thead th:first-child {
    width: 180px;
    color: var(--aine-muted);
    font-size: 0.94rem;
}

.comparison-table tbody th {
    color: var(--aine-ink);
    font-size: 1rem;
    font-weight: 900;
}

.comparison-table td {
    color: var(--aine-ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.comparison-table td b {
    font-weight: 900;
}

.comparison-table tr > *:last-child {
    border-right: 0;
}

.comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

.comparison-aine {
    background: rgba(237, 248, 233, 0.72);
}

.comparison-table thead .comparison-aine {
    background: var(--aine-primary);
    color: var(--white);
}

.compare-aine-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-aine-head img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
}

.compare-aine-head b,
.compare-aine-head em {
    display: block;
    line-height: 1.1;
}

.compare-aine-head b {
    font-size: 1.72rem;
    letter-spacing: 0.04em;
}

.compare-aine-head em {
    margin-top: 4px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 900;
}

.mark {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.mark.good {
    color: var(--aine-primary);
}

.mark.caution {
    color: #12805a;
    border-radius: 6px;
}

.mark.bad {
    color: #171f1b;
}

.comparison-takeaway {
    margin-top: 28px;
    min-height: 118px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(19, 138, 91, 0.42);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.1);
}

.comparison-takeaway img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.comparison-takeaway p {
    margin: 0;
    color: var(--aine-ink);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.45;
}

.comparison-takeaway strong {
    color: var(--aine-primary);
}

.pricing-section {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    padding: 96px 0 112px;
    border-top: 1px solid var(--aine-border);
}

.pricing-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.pricing-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 4.1vw, 4rem);
}

.pricing-heading p:not(.section-kicker) {
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pricing-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.78);
    border: 3px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 7px 7px 0 rgba(19, 138, 91, 0.12);
}

.pricing-card.featured {
    background: #eef9ec;
    box-shadow: 7px 7px 0 rgba(255, 138, 61, 0.22);
}

.pricing-card.enterprise {
    background: var(--aine-ink);
    color: var(--white);
}

.plan-label {
    position: absolute;
    top: -17px;
    right: 18px;
    margin: 0;
    padding: 7px 12px;
    background: var(--aine-accent);
    border: 2px solid var(--aine-ink);
    border-radius: 999px;
    color: var(--aine-ink);
    font-size: 0.78rem;
    font-weight: 900;
}

.plan-name {
    margin-bottom: 24px;
    color: var(--aine-primary);
    font-size: 1.35rem;
    font-weight: 900;
}

.pricing-card.enterprise .plan-name {
    color: var(--aine-ai);
}

.pricing-card strong {
    display: block;
    margin-bottom: 28px;
    color: var(--aine-ink);
    font-size: 1.34rem;
    font-weight: 900;
    line-height: 1.2;
}

.pricing-card strong span {
    font-size: clamp(2.35rem, 3.7vw, 3.3rem);
    letter-spacing: 0;
}

.pricing-card.enterprise strong {
    color: var(--white);
    font-size: 2rem;
}

.pricing-card ul {
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 24px;
    color: var(--aine-muted);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.6;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--aine-primary);
    border-radius: 50%;
}

.pricing-card.enterprise li {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-card.enterprise li::before {
    background: var(--aine-ai);
}

.pricing-card a {
    min-height: 50px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--aine-primary);
    border: 2px solid var(--aine-primary);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 900;
}

.pricing-card.enterprise a {
    background: var(--white);
    border-color: var(--white);
    color: var(--aine-ink);
}

.pricing-note {
    margin: 22px 0 0;
    color: var(--aine-muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.7;
}

.faq-section {
    width: min(100% - 40px, 1040px);
    margin: 0 auto;
    padding: 96px 0 112px;
    border-top: 1px solid var(--aine-border);
}

.faq-heading {
    margin-bottom: 30px;
}

.faq-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
    padding: 96px 0;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--aine-primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.align-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

h2,
h3,
p {
    margin-top: 0;
}

h2 {
    margin-bottom: 18px;
    color: var(--aine-ink);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.22;
}

h3 {
    margin-bottom: 14px;
    color: var(--aine-ink);
    font-size: 1.36rem;
    font-weight: 900;
    line-height: 1.42;
}

.section-heading p,
.concept-copy p,
.dashboard-copy p,
.price-panel p,
.final-cta p {
    color: var(--aine-muted);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 2;
}

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

.problem-card,
.feature-card {
    min-height: 260px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
}

.card-number {
    display: block;
    margin-bottom: 48px;
    color: var(--aine-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.problem-card p,
.feature-card p,
.flow-list p,
.faq-list p {
    margin-bottom: 0;
    color: var(--aine-muted);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.85;
}

.concept-section,
.dashboard-section {
    width: 100%;
    max-width: none;
    padding: 104px clamp(20px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
    align-items: center;
    gap: clamp(42px, 6vw, 86px);
    background: var(--white);
    border-top: 1px solid var(--aine-border);
    border-bottom: 1px solid var(--aine-border);
}

.concept-copy,
.dashboard-copy {
    max-width: 590px;
}

.concept-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
}

.compare-panel {
    padding: 30px;
    display: grid;
    align-content: start;
    gap: 14px;
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    background: var(--aine-canvas);
}

.compare-panel span {
    color: var(--aine-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.compare-panel strong {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.45;
}

.compare-panel p {
    margin: 0;
    color: var(--aine-muted);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.85;
}

.compare-panel.active {
    background: var(--aine-primary);
    border-color: var(--aine-primary);
    color: var(--white);
}

.compare-panel.active span,
.compare-panel.active p {
    color: rgba(255, 255, 255, 0.82);
}

.compare-arrow {
    display: grid;
    place-items: center;
    color: var(--aine-primary);
    font-size: 1.8rem;
    font-weight: 900;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--aine-primary);
    color: var(--white);
    font-weight: 900;
}

.operation-section {
    padding-bottom: 112px;
}

.flow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 2px solid var(--aine-primary);
}

.flow-list li {
    min-height: 250px;
    padding: 28px 26px 0;
    border-right: 1px solid var(--aine-border);
}

.flow-list li:first-child {
    border-left: 1px solid var(--aine-border);
}

.flow-list span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--aine-primary);
    font-size: 0.86rem;
    font-weight: 900;
}

.flow-list strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.28rem;
    font-weight: 900;
}

.task-board {
    display: grid;
    gap: 12px;
}

.task-row {
    min-height: 92px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 92px;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    background: var(--aine-canvas);
}

.task-row span {
    color: var(--aine-primary);
    font-size: 0.9rem;
    font-weight: 900;
}

.task-row strong {
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.5;
}

.task-row em {
    justify-self: end;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--aine-soft);
    color: var(--aine-primary);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.task-row.active {
    background: var(--aine-primary);
    border-color: var(--aine-primary);
    color: var(--white);
}

.task-row.active span,
.task-row.active em {
    color: var(--white);
}

.task-row.active em {
    background: rgba(255, 255, 255, 0.18);
}

.price-section {
    width: 100%;
    max-width: none;
    padding: 104px clamp(20px, 5vw, 72px);
    background: var(--aine-primary);
    color: var(--white);
}

.price-panel {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 48px;
}

.price-section .section-kicker,
.price-section h2,
.price-section p {
    color: var(--white);
}

.price-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.price-box {
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    color: var(--aine-ink);
}

.price-box span {
    color: var(--aine-primary);
    font-size: 0.86rem;
    font-weight: 900;
}

.price-box strong {
    display: block;
    margin: 12px 0 14px;
    font-size: 2.2rem;
    font-weight: 900;
}

.price-box p {
    color: var(--aine-muted);
}

.price-box .button {
    margin-top: 10px;
    width: 100%;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.74);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 5px 5px 0 rgba(19, 138, 91, 0.1);
}

.faq-list summary {
    min-height: 68px;
    padding: 20px 24px;
    cursor: pointer;
    color: var(--aine-ink);
    font-size: 1.02rem;
    font-weight: 900;
}

.faq-list p {
    padding: 0 24px 22px;
}

.line-register-section {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    padding: 96px 0 0;
    border-top: 1px solid var(--aine-border);
}

.line-register-card {
    padding: clamp(30px, 5vw, 52px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(26px, 4vw, 42px);
    background: var(--aine-canvas);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    color: var(--aine-ink);
    box-shadow: 8px 8px 0 rgba(19, 138, 91, 0.14);
}

.line-register-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
    gap: clamp(24px, 5vw, 56px);
}

.line-register-copy h2 {
    margin-bottom: 18px;
    color: var(--aine-ink);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.line-register-copy p:not(.section-kicker),
.line-register-action p {
    margin: 0;
    color: var(--aine-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.9;
}

.line-register-card .section-kicker {
    color: var(--aine-ai);
}

.line-register-action {
    display: grid;
    gap: 14px;
}

.line-register-visual {
    margin: 0 auto;
    width: min(100%, 1040px);
}

.line-register-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.line-register-button {
    min-height: 64px;
    padding: 18px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #06c755;
    border: 2px solid #06c755;
    border-radius: 6px;
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 900;
}

.line-register-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.contact-section {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    padding: 96px 0 116px;
    border-top: 1px solid var(--aine-border);
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.contact-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.contact-heading p:not(.section-kicker) {
    margin: 0;
    color: var(--aine-muted);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.9;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-guide {
    position: sticky;
    top: 110px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
}

.contact-guide img {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 12px;
}

.contact-guide span {
    display: block;
    margin-bottom: 8px;
    color: var(--aine-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.contact-guide p {
    margin: 0;
    color: var(--aine-muted);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.8;
}

.contact-form {
    padding: clamp(24px, 4vw, 42px);
    display: grid;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--aine-ink);
    border-radius: 8px;
    box-shadow: 7px 7px 0 rgba(19, 138, 91, 0.12);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 9px;
}

.form-row label,
.form-choice-row legend {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--aine-ink);
    font-size: 0.94rem;
    font-weight: 900;
}

.form-row label span,
.form-choice-row legend span {
    padding: 3px 7px;
    background: var(--aine-primary);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 900;
}

.form-row label span.optional {
    background: rgba(102, 116, 107, 0.14);
    color: var(--aine-muted);
}

.form-choice-row {
    min-width: 0;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    border: 0;
}

.form-choice-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.form-choice-group label {
    display: block;
    min-height: 54px;
    cursor: pointer;
}

.form-choice-group input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-choice-group span {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--aine-canvas);
    border: 2px solid var(--aine-border);
    border-radius: 6px;
    color: var(--aine-ink);
    font-size: 1rem;
    font-weight: 900;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.form-choice-group span::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: var(--white);
    border: 2px solid var(--aine-border);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px var(--white);
}

.form-choice-group input:checked + span {
    background: rgba(19, 138, 91, 0.1);
    border-color: var(--aine-primary);
    color: var(--aine-primary);
    box-shadow: 0 0 0 4px rgba(19, 138, 91, 0.1);
}

.form-choice-group input:checked + span::before {
    background: var(--aine-primary);
    border-color: var(--aine-primary);
}

.form-choice-group label:hover span {
    border-color: var(--aine-primary);
}

.form-choice-group input:focus-visible + span {
    border-color: var(--aine-primary);
    box-shadow: 0 0 0 4px rgba(19, 138, 91, 0.12);
}

.form-row input,
.form-row textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    background: var(--aine-canvas);
    border: 2px solid var(--aine-border);
    border-radius: 6px;
    color: var(--aine-ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    outline: none;
}

.form-row textarea {
    min-height: 180px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--aine-primary);
    box-shadow: 0 0 0 4px rgba(19, 138, 91, 0.12);
}

.contact-submit {
    min-height: 58px;
    margin-top: 4px;
    padding: 16px 24px;
    background: var(--aine-primary);
    border: 2px solid var(--aine-primary);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 900;
}

.contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 42, 36, 0.08);
}

.form-note {
    margin: -4px 0 0;
    color: var(--aine-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.7;
}

.form-message {
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.75;
}

.form-message strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 900;
}

.form-message p,
.form-message ul {
    margin: 0;
}

.form-message ul {
    padding-left: 1.25em;
}

.form-message.success {
    background: var(--aine-soft);
    border: 2px solid var(--aine-primary);
    color: var(--aine-ink);
}

.form-message.error {
    background: #fff4ef;
    border: 2px solid var(--aine-accent);
    color: var(--aine-ink);
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.final-cta {
    padding: 112px 20px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--aine-border);
}

.final-cta h2 {
    margin-bottom: 18px;
}

.final-cta p {
    max-width: 680px;
    margin: 0 auto;
}

.final-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer {
    padding: 34px clamp(20px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--aine-canvas);
    border-top: 1px solid var(--aine-border);
}

.site-footer > small {
    color: var(--aine-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: var(--aine-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--aine-primary);
}

.legal-page {
    background:
        linear-gradient(180deg, rgba(237, 248, 233, 0.78) 0%, rgba(250, 252, 246, 0) 340px),
        var(--aine-canvas);
}

.legal-shell {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    padding: 136px 0 96px;
}

.legal-hero {
    margin-bottom: 30px;
    overflow-wrap: anywhere;
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}

.legal-hero p:not(.section-kicker) {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--aine-muted);
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.9;
}

.legal-card {
    padding: clamp(28px, 5vw, 54px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    box-shadow: 10px 10px 0 rgba(19, 138, 91, 0.08);
    overflow-wrap: anywhere;
}

.legal-section {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--aine-border);
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2,
.legal-table h2 {
    margin: 0 0 14px;
    color: var(--aine-ink);
    font-size: 1.14rem;
    font-weight: 900;
    line-height: 1.55;
}

.legal-section p,
.legal-section li,
.legal-table p {
    color: var(--aine-muted);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.95;
}

.legal-section p,
.legal-table p {
    margin: 0;
}

.legal-section ul,
.legal-section ol {
    margin: 12px 0 0;
    padding-left: 1.4em;
}

.legal-section li + li {
    margin-top: 8px;
}

.legal-section a,
.legal-table a {
    color: var(--aine-primary);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.legal-table {
    display: grid;
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table section {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid var(--aine-border);
}

.legal-table section:nth-child(even) {
    background: rgba(237, 248, 233, 0.44);
}

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

.legal-table h2 {
    margin: 0;
}

.legal-table span {
    color: var(--aine-muted);
    font-size: 0.9rem;
}

.legal-date {
    margin: 30px 0 0;
    color: var(--aine-muted);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: right;
}

.aine-opening {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
    padding: 72px 0 96px;
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 84px);
}

.aine-opening-visual {
    height: 440px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
}

.aine-opening-visual img {
    display: block;
    width: 122%;
    max-width: none;
    transform: translate(-10%, -8%);
}

.aine-opening-copy {
    max-width: 720px;
}

.aine-opening-copy p:not(.section-kicker) {
    color: var(--aine-muted);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 2;
}

.aine-tour {
    border-top: 1px solid var(--aine-border);
}

.tour-step {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
    padding: 104px 0;
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(34px, 5vw, 72px);
    border-bottom: 1px solid var(--aine-border);
}

.tour-step-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.tour-step-reverse .tour-guide {
    order: 2;
}

.tour-step-reverse .tour-body {
    order: 1;
}

.tour-guide {
    position: sticky;
    top: 106px;
}

.tour-guide img {
    display: block;
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: center 8%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
}

.speech-card {
    position: relative;
    margin: -30px 18px 0;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(31, 42, 36, 0.08);
}

.speech-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--aine-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.speech-card p {
    margin: 0;
    color: var(--aine-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.75;
}

.tour-body .section-heading {
    max-width: none;
    margin-bottom: 34px;
}

.tour-body .problem-grid,
.tour-body .feature-grid {
    gap: 14px;
}

.tour-dashboard {
    display: grid;
    gap: 24px;
}

.price-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(250px, 320px) minmax(320px, 400px);
}

.price-guide {
    align-self: stretch;
    display: grid;
    align-content: end;
}

.price-guide img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 8px 8px 0 0;
}

.price-guide div {
    padding: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.price-guide span {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 900;
}

.price-guide p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.8;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
    gap: 34px;
}

.faq-guide {
    position: sticky;
    top: 106px;
}

.faq-guide img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center 8%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
}

.final-cta-inner {
    width: min(100% - 40px, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(30px, 6vw, 72px);
}

.final-guide {
    height: 320px;
    overflow: hidden;
    background: var(--aine-canvas);
    border: 1px solid var(--aine-border);
    border-radius: 8px;
}

.final-guide img {
    display: block;
    width: 118%;
    max-width: none;
    transform: translate(-8%, -6%);
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }

    .hero-copy {
        max-width: 860px;
    }

    .hero-visual {
        min-height: 520px;
        height: 62vw;
        max-height: 660px;
    }

    .agent-main-image {
        max-height: 100%;
    }

    .problem-grid,
    .feature-grid,
    .worry-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .concept-section,
    .dashboard-section {
        grid-template-columns: 1fr;
    }

    .concept-board {
        grid-template-columns: 1fr;
    }

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

    .flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flow-list li:nth-child(3) {
        border-left: 1px solid var(--aine-border);
    }

    .usage-layout,
    .aine-opening,
    .intro-guide,
    .tour-step,
    .tour-step-reverse,
    .faq-layout,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .tour-step-reverse .tour-guide,
    .tour-step-reverse .tour-body {
        order: initial;
    }

    .tour-guide,
    .faq-guide {
        position: static;
    }

    .price-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .usage-visual {
        min-height: 0;
    }

    .worry-diagnosis-board {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "start staff"
            "center center"
            "cost solution";
        gap: 24px 18px;
    }

    .diagnosis-center {
        min-height: 480px;
    }

    .diagnosis-center img {
        width: min(54%, 340px);
    }

    .diagnosis-speech {
        top: 18px;
    }

    .diagnosis-table {
        left: 22%;
        bottom: 78px;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: absolute;
        min-height: 64px;
        padding: 12px 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 1.12rem;
    }

    .brand-logo-image {
        height: 42px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small,
    .site-nav {
        display: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "copy";
        min-height: 0;
        padding: 82px 18px 42px;
        gap: 0;
        position: relative;
        overflow: hidden;
    }

    .hero-copy {
        width: 100%;
        padding: 0;
        position: relative;
        z-index: 2;
    }

    .eyebrow {
        margin-bottom: 22px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    h1 {
        font-size: clamp(2.36rem, 10.6vw, 2.7rem);
        line-height: 1.14;
        letter-spacing: 0;
        word-break: keep-all;
        overflow-wrap: normal;
    }

    h1 span {
        color: var(--aine-primary);
        text-decoration: underline;
        text-decoration-color: rgba(255, 138, 61, 0.58);
        text-decoration-thickness: 0.16em;
        text-underline-offset: -0.08em;
    }

    .lead {
        margin-top: 24px;
        max-width: 230px;
        font-size: 0.98rem;
        line-height: 1.75;
        font-weight: 900;
    }

    .pain-points span {
        min-height: 48px;
        padding: 8px 10px;
        justify-content: flex-start;
        border-color: rgba(19, 138, 91, 0.2);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 10px 22px rgba(31, 42, 36, 0.08);
        font-size: 0.78rem;
        gap: 8px;
    }

    .pain-points img {
        display: block;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        box-shadow: 0 8px 16px rgba(19, 138, 91, 0.16);
        border-radius: 50%;
    }

    .pain-points span::before {
        display: none;
    }

    .pain-points {
        width: 164px;
        max-width: 164px;
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        position: relative;
        z-index: 3;
    }

    .pain-points span:last-child {
        grid-column: auto;
    }

    .hero-actions .button {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        min-height: 78px;
        padding: 20px 20px;
        border-radius: 10px;
        font-size: 1.38rem;
        box-shadow: 0 14px 28px rgba(19, 138, 91, 0.18);
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        margin-top: 84px;
        display: grid;
        justify-self: center;
        justify-items: stretch;
        gap: 16px;
        position: relative;
        z-index: 3;
    }

    .hero-actions .button-secondary {
        display: inline-flex;
        background: var(--white);
        box-shadow: 0 8px 18px rgba(31, 42, 36, 0.06);
    }

    .hero-visual-pc {
        display: none;
    }

    .hero-visual-mobile {
        display: block;
        position: absolute;
        right: -10px;
        top: 226px;
        width: 260px;
        max-height: none;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 1;
        overflow: visible;
        pointer-events: none;
    }

    .hero-status {
        display: none;
    }

    .agent-main-image-mobile {
        display: block;
        width: 260px;
        max-width: none;
        max-height: none;
        clip-path: inset(0 0 26% 0);
        transform: translate(0, 0);
    }

    .section {
        width: calc(100% - 36px);
        padding: 72px 0;
    }

    .usage-section {
        width: calc(100% - 36px);
        padding: 72px 0 84px;
    }

    .usage-heading {
        margin-bottom: 28px;
    }

    .usage-heading h2 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .usage-heading p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .usage-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .usage-card {
        min-height: 0;
        padding: 22px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .usage-card span {
        margin-bottom: 18px;
    }

    .usage-photo-slot {
        min-height: 220px;
    }

    .usage-photo-slot img {
        width: 158px;
        right: -18px;
        bottom: -34px;
    }

    .usage-photo-copy {
        max-width: 250px;
        padding: 22px;
    }

    .usage-photo-copy b {
        font-size: 1.08rem;
    }

    .usage-console {
        padding: 20px;
    }

    .section-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.18rem;
    }

    .section-heading p,
    .concept-copy p,
    .dashboard-copy p,
    .price-panel p,
    .final-cta p {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .problem-grid,
    .feature-grid,
    .flow-list,
    .price-panel,
    .worry-list {
        grid-template-columns: 1fr;
    }

    .intro-worries {
        width: calc(100% - 36px);
        padding: 40px 0 72px;
    }

    .worry-heading {
        margin-bottom: 28px;
    }

    .worry-heading h2 {
        font-size: 1.78rem;
        line-height: 1.25;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .worry-heading p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .worry-diagnosis-image {
        width: 100%;
        margin-left: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .worry-diagnosis-board {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .diagnosis-panel,
    .diagnosis-solution {
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .diagnosis-panel {
        min-height: 0;
        margin-top: 0;
        padding: 22px;
    }

    .diagnosis-panel h2 {
        min-width: 0;
        margin: 0 0 4px;
        padding: 10px 14px;
        font-size: 1.12rem;
        text-align: left;
    }

    .diagnosis-panel p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .diagnosis-center {
        order: -1;
        min-height: 430px;
        padding-top: 72px;
        overflow: hidden;
    }

    .diagnosis-center img {
        width: min(86%, 300px);
        max-height: 380px;
    }

    .diagnosis-speech {
        top: 0;
        width: min(100%, 320px);
        padding: 14px 16px;
        font-size: 0.9rem;
        border-width: 2px;
    }

    .diagnosis-table {
        left: 0;
        bottom: 44px;
        width: 136px;
        padding: 12px;
        border-width: 2px;
    }

    .line-phone {
        width: min(100%, 190px);
        min-height: 160px;
    }

    .invoice-stack {
        min-height: 156px;
    }

    .invoice-stack div {
        width: 132px;
        min-height: 82px;
        padding: 12px;
    }

    .invoice-stack div:nth-child(1) {
        left: 0;
    }

    .invoice-stack div:nth-child(2) {
        left: 36%;
    }

    .invoice-stack div:nth-child(3) {
        left: 18%;
        top: 72px;
    }

    .invoice-stack span {
        font-size: 0.8rem;
    }

    .invoice-stack b {
        font-size: 0.86rem;
    }

    .task-stack span {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .diagnosis-solution {
        min-height: 176px;
        padding: 32px 22px 24px;
    }

    .diagnosis-solution p {
        font-size: 1.36rem;
    }

    .intro-guide {
        gap: 0;
    }

    .intro-character {
        height: 250px;
    }

    .intro-character img {
        width: 190px;
    }

    .intro-balloon {
        margin-bottom: 0;
        padding: 22px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.14);
    }

    .intro-balloon::before {
        top: -16px;
        left: 50%;
        bottom: auto;
        width: 26px;
        height: 26px;
        transform: translateX(-50%) rotate(135deg);
    }

    .intro-balloon h2 {
        margin-bottom: 18px;
        font-size: 1.36rem;
        line-height: 1.38;
    }

    .intro-balloon h2 br {
        display: block;
    }

    .intro-problem-lead {
        font-size: 1.42rem;
        line-height: 1.48;
    }

    .worry-list {
        margin-top: 18px;
        gap: 10px;
    }

    .worry-card {
        min-height: 0;
        padding: 22px;
    }

    .worry-card span {
        margin-bottom: 20px;
    }

    .aine-can-do {
        width: calc(100% - 20px);
        padding: 72px 0 84px;
    }

    .can-do-intro {
        margin-bottom: 28px;
    }

    .can-do-intro h2 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .can-do-intro p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .before-after-visual {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        margin: 18px 0 0;
        padding: 0;
        overflow: visible;
    }

    .before-after-visual picture {
        width: 100%;
        max-width: 100%;
    }

    .before-after-visual .before-after-desktop-picture {
        display: none;
    }

    .before-after-mobile-compare {
        display: none;
    }

    .before-after-mobile-panels {
        display: block;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        margin: 6px auto 0;
        overflow: hidden;
    }

    .before-after-mobile-panels img {
        display: block;
        width: min(100%, 370px) !important;
        max-width: calc(100vw - 20px) !important;
        height: auto;
        margin: 0 auto 18px;
        filter: saturate(0.98) contrast(0.99);
    }

    .before-after-mobile-panels img:last-child {
        margin-bottom: 0;
    }

    .mobile-compare-head,
    .mobile-compare-row {
        display: grid;
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.12fr);
        gap: 8px;
    }

    .mobile-compare-head {
        padding-left: 42px;
    }

    .mobile-compare-head span {
        min-height: 42px;
        padding: 10px 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 6px;
        background: #eef1ed;
        color: #3e4842;
        font-size: 0.8rem;
        font-weight: 900;
    }

    .mobile-compare-head span:last-child {
        background: var(--aine-primary);
        color: var(--white);
    }

    .mobile-compare-head img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--white);
    }

    .mobile-compare-row {
        position: relative;
        padding-left: 42px;
        align-items: stretch;
    }

    .mobile-compare-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        background: var(--aine-primary);
        border-radius: 6px;
        color: var(--white);
        font-size: 0.78rem;
        font-weight: 900;
    }

    .mobile-compare-before,
    .mobile-compare-after {
        min-height: 126px;
        padding: 12px 9px;
        display: grid;
        align-content: start;
        gap: 6px;
        border: 2px solid rgba(31, 42, 36, 0.72);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.88);
    }

    .mobile-compare-before {
        color: var(--aine-ink);
        filter: grayscale(1);
        opacity: 0.82;
    }

    .mobile-compare-after {
        border-color: var(--aine-primary);
        background: #f6fff8;
        color: var(--aine-primary);
        box-shadow: 0 8px 18px rgba(19, 138, 91, 0.08);
    }

    .mobile-compare-before b,
    .mobile-compare-after b {
        display: block;
        font-size: 1rem;
        font-weight: 900;
        line-height: 1.34;
    }

    .mobile-compare-before p,
    .mobile-compare-after p {
        display: block;
        margin: 0;
        color: var(--aine-muted);
        font-size: 0.68rem;
        font-weight: 800;
        line-height: 1.52;
    }

    .mobile-compare-after em {
        width: fit-content;
        margin-top: 2px;
        padding: 5px 8px;
        border-radius: 999px;
        background: rgba(19, 138, 91, 0.1);
        color: var(--aine-primary);
        font-size: 0.76rem;
        font-style: normal;
        font-weight: 900;
    }

    .before-after-visual::before {
        content: none;
    }

    .before-after-visual img {
        width: 100%;
        max-width: 100%;
    }

    .before-after-visual .mobile-compare-head img {
        width: 24px;
        height: 24px;
        max-width: 24px;
        flex: 0 0 24px;
        object-fit: cover;
        filter: none;
    }

    .before-after-list {
        gap: 16px;
    }

    .before-after-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 12px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.1);
        overflow: hidden;
    }

    .before-after-number {
        width: 42px;
        height: 42px;
    }

    .before-after-column {
        min-width: 0;
        min-height: 0;
        padding: 16px;
        gap: 10px;
        overflow: hidden;
    }

    .before-after-column h3 {
        max-width: 100%;
        font-size: 1.02rem;
        line-height: 1.45;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .before-after-column p {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.75;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .before-after-arrow {
        min-height: 28px;
        transform: rotate(90deg);
        font-size: 1.8rem;
    }

    .aine-workflow {
        gap: 18px;
    }

    .workflow-scene,
    .workflow-reverse {
        min-height: 0;
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 22px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .workflow-reverse .workflow-copy,
    .workflow-reverse .workflow-visual {
        order: initial;
    }

    .workflow-copy > span {
        margin-bottom: 14px;
        font-size: 0.72rem;
    }

    .workflow-copy h3 {
        font-size: 1.72rem;
        line-height: 1.3;
    }

    .workflow-copy p,
    .workflow-copy li {
        font-size: 0.94rem;
    }

    .workflow-visual {
        min-height: 300px;
    }

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

    .mock-window,
    .scenario-board,
    .chat-phone,
    .inbox-panel {
        width: 100%;
        box-shadow: 5px 5px 0 rgba(19, 138, 91, 0.16);
    }

    .inbox-row {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .skill-visual {
        min-height: 340px;
    }

    .skill-core {
        width: 110px;
        height: 110px;
        font-size: 1.2rem;
    }

    .skill-visual span {
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .comparison-section {
        width: calc(100% - 36px);
        padding: 72px 0 84px;
    }

    .comparison-heading {
        margin-bottom: 26px;
    }

    .comparison-heading h2 {
        font-size: 2rem;
    }

    .comparison-heading p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .comparison-scroll {
        margin-right: -18px;
        padding: 0 18px 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 780px;
        box-shadow: 5px 5px 0 rgba(19, 138, 91, 0.1);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 14px;
        font-size: 0.9rem;
    }

    .comparison-table thead th:first-child {
        width: 120px;
    }

    .compare-aine-head img {
        width: 50px;
        height: 50px;
    }

    .compare-aine-head b {
        font-size: 1.35rem;
    }

    .mark {
        margin-right: 6px;
        font-size: 1.25rem;
    }

    .comparison-takeaway {
        margin-top: 20px;
        padding: 16px;
        gap: 14px;
    }

    .comparison-takeaway img {
        width: 78px;
        height: 78px;
    }

    .comparison-takeaway p {
        font-size: 1.05rem;
    }

    .pricing-section {
        width: calc(100% - 36px);
        padding: 72px 0 84px;
    }

    .pricing-heading {
        margin-bottom: 26px;
    }

    .pricing-heading h2 {
        font-size: 2rem;
    }

    .pricing-heading p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-card {
        min-height: 0;
        padding: 24px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .pricing-card strong span {
        font-size: 2.55rem;
    }

    .pricing-note {
        font-size: 0.82rem;
    }

    .faq-section {
        width: calc(100% - 36px);
        padding: 72px 0 84px;
    }

    .faq-heading {
        margin-bottom: 22px;
    }

    .faq-heading h2 {
        font-size: 2rem;
    }

    .line-register-section {
        width: calc(100% - 36px);
        padding: 72px 0 0;
    }

    .line-register-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .line-register-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .line-register-copy h2 {
        font-size: 2rem;
    }

    .line-register-copy p:not(.section-kicker),
    .line-register-action p {
        font-size: 0.94rem;
        line-height: 1.85;
    }

    .line-register-visual {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
    }

    .contact-section {
        width: calc(100% - 36px);
        padding: 72px 0 88px;
    }

    .contact-heading {
        margin-bottom: 24px;
    }

    .contact-heading h2 {
        font-size: 2rem;
    }

    .contact-heading p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .contact-panel,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-guide {
        position: static;
        padding: 20px;
        display: block;
        text-align: center;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .contact-guide img {
        max-width: 96px;
        margin: 0 auto 10px;
    }

    .contact-form {
        padding: 22px;
        gap: 18px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.12);
    }

    .form-row input,
    .form-row textarea {
        font-size: 0.96rem;
    }

    .form-row textarea {
        min-height: 160px;
    }

    .problem-card,
    .feature-card {
        min-height: 0;
        padding: 24px;
    }

    .card-number,
    .feature-icon {
        margin-bottom: 24px;
    }

    .concept-section,
    .dashboard-section,
    .price-section {
        padding: 72px 18px;
    }

    .compare-panel {
        padding: 24px;
    }

    .compare-panel strong {
        font-size: 1.22rem;
    }

    .flow-list {
        border-top: 0;
        gap: 12px;
    }

    .flow-list li,
    .flow-list li:first-child,
    .flow-list li:nth-child(3) {
        min-height: 0;
        padding: 24px;
        border: 1px solid var(--aine-border);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.74);
    }

    .flow-list span {
        margin-bottom: 20px;
    }

    .task-row {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .task-row em {
        justify-self: start;
    }

    .price-box {
        padding: 24px;
    }

    .price-box strong {
        font-size: 1.7rem;
    }

    .faq-list summary {
        padding: 18px 20px;
        font-size: 0.96rem;
    }

    .faq-list p {
        padding: 0 20px 20px;
    }

    .final-cta {
        padding: 80px 18px;
        text-align: left;
    }

    .final-actions {
        justify-content: flex-start;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .legal-shell {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 104px 18px 72px;
        overflow: hidden;
    }

    .legal-hero {
        margin-bottom: 22px;
    }

    .legal-hero h1 {
        font-size: 1.95rem;
        line-height: 1.22;
        word-break: break-all;
    }

    .legal-hero p:not(.section-kicker) {
        width: min(320px, calc(100vw - 36px));
        max-width: min(320px, calc(100vw - 36px));
        font-size: 0.94rem;
        line-height: 1.85;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .legal-card {
        width: min(320px, calc(100vw - 36px));
        max-width: min(320px, calc(100vw - 36px));
        padding: 22px;
        box-shadow: 6px 6px 0 rgba(19, 138, 91, 0.1);
        overflow: hidden;
    }

    .legal-section {
        min-width: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .legal-section h2,
    .legal-table h2 {
        font-size: 1.02rem;
    }

    .legal-section p,
    .legal-section li,
    .legal-table p {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.85;
        max-width: 100%;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .legal-section li {
        width: min(248px, calc(100vw - 104px));
        max-width: min(248px, calc(100vw - 104px));
    }

    .legal-section ul,
    .legal-section ol {
        padding-left: 1.1em;
    }

    .legal-table {
        border: 0;
        gap: 10px;
        overflow: visible;
    }

    .legal-table section {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
        border: 1px solid var(--aine-border);
        border-radius: 8px;
    }

    .legal-date {
        text-align: left;
    }

    .aine-opening {
        width: calc(100% - 36px);
        padding: 56px 0 72px;
    }

    .aine-opening-visual,
    .final-guide {
        height: 280px;
    }

    .aine-opening-visual img {
        width: 112%;
        transform: translate(-6%, -18%);
    }

    .aine-opening-copy p:not(.section-kicker) {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .tour-step {
        width: calc(100% - 36px);
        padding: 72px 0;
    }

    .tour-guide img,
    .faq-guide img {
        height: 320px;
    }

    .speech-card {
        margin: 12px 0 0;
        padding: 18px;
    }

    .speech-card p {
        font-size: 0.94rem;
    }

    .price-guide img {
        height: 240px;
    }

    .faq-layout {
        gap: 24px;
    }

    .final-cta-inner {
        width: 100%;
        gap: 24px;
    }
}
