@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');
:root {
    --ink: #11110f;
    --paper: #f3f0e9;
    --white: #fff;
    --muted: #6c6a64;
    --line: rgba(17, 17, 15, .16);
    --accent: #e7ff34;
    --accent2: #ff5c35;
    --dark: #151513;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(12, 12, 10, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: .01em
}

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

img {
    max-width: 100%
}

button, input, textarea {
    font: inherit
}

.lp-container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.lp-section {
    padding: 120px 0
}

.lp-section-index {
    font: 700 12px/1 'Inter', sans-serif;
    letter-spacing: .18em;
    margin: 0 0 26px;
    color: var(--muted)
}

.lp-section-head {
    max-width: 850px;
    margin-bottom: 60px
}

.lp-section-head h2 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.22;
    letter-spacing: -.04em;
    margin: 0 0 28px;
    font-weight: 900
}

.lp-section-head h2 em {
    font-style: normal;
    color: var(--muted)
}

.lp-section-head>p:last-child {
    font-size: 17px;
    max-width: 720px;
    color: #55534e
}

.lp-head-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 80px;
    align-items: end
}

.lp-head-split>p {
    margin-bottom: 12px
}

.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(243, 240, 233, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 15, .1)
}

.lp-header-inner {
    height: 76px;
    width: min(1280px, calc(100% - 36px));
    margin: auto;
    display: flex;
    align-items: center;
    gap: 32px
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: auto
}

.lp-logo-mark {
    width: 37px;
    height: 37px;
    background: var(--ink);
    color: var(--accent);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font: 800 10px 'Inter'
}

.lp-logo strong {
    display: block;
    font: 800 13px 'Inter';
    letter-spacing: .13em
}

.lp-logo small {
    display: block;
    font: 600 9px 'Inter';
    letter-spacing: .16em;
    color: var(--muted)
}

.lp-nav {
    display: flex;
    gap: 26px;
    font-size: 13px;
    font-weight: 600
}

.lp-nav a:hover {
    opacity: .55
}

.lp-header-cta {
    background: var(--ink);
    color: var(--white);
    padding: 12px 19px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700
}

.lp-header-cta:hover {
    background: var(--accent);
    color: var(--ink)
}

.lp-fv {
    min-height: 100svh;
    padding: 136px 0 84px;
    position: relative;
    overflow: hidden;
    background: var(--paper)
}

.lp-fv-noise {
    position: absolute;
    inset: 0;
    opacity: .07;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E")
}

.lp-fv-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 72px;
    align-items: center;
    position: relative
}

.lp-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 24px
}

.lp-eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--accent2)
}

.lp-fv h1 {
    margin: 0;
    font-size: clamp(44px, 6.3vw, 88px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.065em
}

.lp-fv h1 span {
    display: block
}

.lp-fv-question {
    font-size: .58em;
    letter-spacing: -.03em;
    margin-bottom: 8px
}

.lp-fv-accent {
    position: relative;
    width: max-content;
    z-index: 1
}

.lp-fv-accent:after {
    content: "";
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 5%;
    height: 22%;
    background: var(--accent);
    z-index: -1;
    transform: rotate(-1.5deg)
}

.lp-fv-statement {
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1.45;
    margin: 34px 0 15px;
    letter-spacing: -.025em
}

.lp-fv-statement span {
    color: var(--accent2)
}

.lp-fv-lead {
    max-width: 680px;
    font-size: 16px;
    color: #4e4c47;
    margin: 0 0 28px
}

.lp-fv-actions {
    display: flex;
    align-items: center;
    gap: 24px
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: .25s
}

.lp-btn-primary {
    background: var(--ink);
    color: #fff;
    padding: 17px 27px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(17, 17, 15, .18)
}

.lp-btn-primary:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px)
}

.lp-btn-dark {
    background: #ebe8e0;
    padding: 15px 22px;
    border-radius: 100px
}

.lp-btn-dark:hover {
    background: var(--ink);
    color: #fff
}

.lp-text-link {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid
}

.lp-text-link span {
    color: var(--accent2)
}

.lp-fv-note {
    font-size: 11px;
    color: var(--muted);
    margin: 10px 0 24px
}

.lp-trust-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    max-width: 720px
}

.lp-trust-line p {
    margin: 0
}

.lp-trust-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    background: var(--accent);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900
}

.lp-workflow-visual {
    background: var(--dark);
    color: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
    overflow: hidden
}

.lp-workflow-topbar {
    height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px
}

.lp-workflow-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555
}

.lp-workflow-topbar span:first-child {
    background: var(--accent2)
}

.lp-workflow-topbar b {
    margin-left: auto;
    font: 600 9px 'Inter';
    letter-spacing: .17em;
    color: #aaa
}

.lp-workflow-body {
    padding: 25px
}

.lp-flow-input, .lp-flow-output {
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, .035)
}

.lp-workflow-visual small {
    font: 700 9px 'Inter';
    letter-spacing: .14em;
    color: var(--accent)
}

.lp-flow-input p {
    font-size: 12px;
    color: #bbb;
    line-height: 1.8;
    margin: 10px 0 0
}

.lp-flow-command {
    display: flex;
    align-items: center;
    padding: 12px 5px;
    gap: 10px
}

.lp-flow-command span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    display: grid;
    place-items: center;
    font: 800 9px 'Inter'
}

.lp-flow-command p {
    font-size: 11px;
    margin: 0;
    color: #aaa
}

.lp-flow-command i {
    margin-left: auto;
    font-style: normal;
    color: var(--accent)
}

.lp-flow-output ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0
}

.lp-flow-output li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 0;
    font-size: 12px
}

.lp-flow-output li b {
    font: 700 9px 'Inter';
    color: #777
}

.lp-flow-output li span {
    font: 700 8px 'Inter';
    color: var(--accent)
}

.lp-flow-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    font-size: 13px
}

.lp-flow-result strong:first-child {
    text-decoration: line-through;
    color: #888
}

.lp-flow-result strong:last-child {
    color: var(--accent)
}

.lp-scroll-cue {
    position: absolute;
    bottom: 18px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font: 700 8px 'Inter';
    letter-spacing: .18em
}

.lp-scroll-cue i {
    display: block;
    width: 1px;
    height: 30px;
    background: var(--ink)
}

.lp-authority {
    background: var(--ink);
    color: #fff;
    padding: 30px 0 20px
}

.lp-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.lp-authority-grid>div {
    padding: 12px 30px;
    border-right: 1px solid rgba(255, 255, 255, .15)
}

.lp-authority-grid>div:last-child {
    border: 0
}

.lp-authority strong {
    display: block;
    font: 800 clamp(25px, 3vw, 42px) 'Inter';
    letter-spacing: -.04em;
    color: var(--accent)
}

.lp-authority span {
    font-size: 11px;
    color: #aaa
}

.lp-authority>p {
    text-align: center;
    font-size: 9px;
    color: #666;
    margin: 12px 0 0
}

.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.lp-problem-grid article {
    min-height: 290px;
    padding: 26px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column
}

.lp-problem-grid article>span {
    font: 700 11px 'Inter';
    color: var(--accent2)
}

.lp-problem-grid h3 {
    font-size: 20px;
    line-height: 1.5;
    margin: 50px 0 15px
}

.lp-problem-grid p {
    font-size: 12px;
    color: var(--muted);
    margin: auto 0 0
}

.lp-manifesto {
    background: var(--ink);
    color: #fff;
    padding: 140px 0
}

.lp-manifesto p:first-child {
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    color: #8d8d88
}

.lp-manifesto p:first-child span {
    text-decoration: line-through
}

.lp-manifesto h2 {
    font-size: clamp(38px, 6vw, 84px);
    line-height: 1.2;
    letter-spacing: -.05em;
    margin: 55px 0;
    font-weight: 900
}

.lp-manifesto h2 span {
    color: var(--accent)
}

.lp-manifesto-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .17)
}

.lp-manifesto-small {
    max-width: 650px;
    font-size: 15px;
    color: #aaa;
    margin: 32px 0 0
}

.lp-service-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.lp-service-steps article {
    background: var(--paper);
    padding: 36px;
    min-height: 230px
}

.lp-service-steps b {
    font: 800 12px 'Inter';
    color: var(--accent2)
}

.lp-service-steps h3 {
    font-size: 23px;
    margin: 34px 0 12px
}

.lp-service-steps p {
    font-size: 13px;
    color: var(--muted)
}

.lp-cases {
    background: #dedad0
}

.lp-case {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 48px;
    margin-bottom: 24px
}

.lp-case-featured {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 55px
}

.lp-case-title>span, .lp-case-small>span {
    font: 700 10px 'Inter';
    letter-spacing: .18em;
    color: var(--accent)
}

.lp-case-title h3 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.25;
    margin: 26px 0
}

.lp-case-title p {
    font-size: 12px;
    color: #999
}

.lp-case-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center
}

.lp-before, .lp-after {
    background: #242421;
    padding: 26px;
    border-radius: 16px
}

.lp-case-compare small {
    font: 700 9px 'Inter';
    letter-spacing: .14em;
    color: #888
}

.lp-case-compare strong {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    margin: 15px 0
}

.lp-case-compare em {
    font-style: normal;
    font-size: 30px;
    color: var(--accent)
}

.lp-case-compare ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #aaa
}

.lp-case-compare li {
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.lp-case-arrow {
    font-size: 27px;
    color: var(--accent)
}

.lp-case-benefits {
    grid-column: 1/-1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.lp-case-benefits span {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding: 7px 12px;
    font-size: 10px
}

.lp-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.lp-case-small {
    background: #f0ede6;
    padding: 44px;
    border-radius: var(--radius)
}

.lp-case-small h3 {
    font-size: 32px;
    line-height: 1.35;
    margin: 24px 0
}

.lp-case-small p, .lp-case-small li {
    font-size: 13px;
    color: #666
}

.lp-case-small ul {
    padding-left: 18px
}

.lp-deliverables {
    background: var(--accent)
}

.lp-deliverables-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: center
}

.lp-deliverables-list {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.lp-deliverables-list span {
    padding: 18px 0;
    border-bottom: 1px solid rgba(17, 17, 15, .28);
    font-weight: 700;
    font-size: 14px
}

.lp-deliverables-list span:nth-child(odd) {
    padding-right: 25px
}

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

.lp-scope-grid article {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px
}

.lp-scope-grid small {
    font: 700 9px 'Inter';
    letter-spacing: .14em;
    color: var(--accent2)
}

.lp-scope-grid h3 {
    font-size: 20px;
    margin: 22px 0
}

.lp-scope-grid ul {
    padding-left: 17px;
    margin: 0;
    font-size: 12px;
    color: #666
}

.lp-scope-grid li {
    margin: 7px 0
}

.lp-scope-note {
    text-align: center;
    margin: 35px 0 0;
    font-size: 12px;
    color: var(--muted)
}

.lp-comparison {
    background: #fff
}

.lp-table-wrap {
    overflow: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(17, 17, 15, .08)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
    font-size: 13px
}

th, td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #e7e5df
}

th:first-child {
    text-align: left
}

.is-aibase {
    background: var(--ink);
    color: #fff
}

.lp-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line)
}

.lp-process-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 28px 10px;
    border-bottom: 1px solid var(--line);
    align-items: center
}

.lp-process-list b {
    font: 800 22px 'Inter';
    color: var(--accent2)
}

.lp-process-list h3 {
    font-size: 22px;
    margin: 0 0 6px
}

.lp-process-list p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.lp-profile {
    background: var(--ink);
    color: #fff
}

.lp-profile-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px
}

.lp-profile h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.25;
    letter-spacing: -.04em;
    margin: 0 0 20px
}

.lp-profile h2 em {
    font-style: normal;
    color: #888
}

.lp-profile-lead {
    font-size: 20px;
    font-weight: 700
}

.lp-profile-name {
    margin: 50px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.lp-profile-name small, .lp-profile-name span {
    display: block;
    font: 600 9px 'Inter';
    letter-spacing: .16em;
    color: #888
}

.lp-profile-name strong {
    display: block;
    font-size: 30px;
    margin: 7px 0
}

.lp-profile-copy>p:not(.lp-section-index):not(.lp-profile-lead) {
    font-size: 13px;
    color: #aaa
}

.lp-profile blockquote {
    margin: 35px 0 0;
    border-left: 3px solid var(--accent);
    padding-left: 22px;
    font-size: 15px;
    font-weight: 700
}

.lp-profile-card {
    background: var(--accent);
    color: var(--ink);
    padding: 34px;
    border-radius: 22px;
    transform: rotate(1deg)
}

.lp-profile-card>small {
    font: 800 10px 'Inter';
    letter-spacing: .16em
}

.lp-profile-card dl {
    margin: 25px 0
}

.lp-profile-card dl div {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 17, 15, .25)
}

.lp-profile-card dt {
    font-size: 11px
}

.lp-profile-card dd {
    font: 800 22px 'Inter';
    margin: 0
}

.lp-profile-card>p {
    font-size: 9px
}

.lp-profile-skills {
    margin-top: 30px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px
}

.lp-profile-skills h3 {
    font-size: 18px
}

.lp-profile-skills p {
    font-size: 11px;
    color: #999
}

.lp-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch
}

.lp-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px;
    display: flex;
    flex-direction: column
}

.lp-price-card.is-featured {
    background: var(--ink);
    color: #fff;
    transform: translateY(-12px);
    box-shadow: var(--shadow)
}

.lp-price-card>small {
    font: 700 10px 'Inter';
    letter-spacing: .16em;
    color: var(--accent2)
}

.lp-price-card h3 {
    font-size: 25px;
    line-height: 1.35
}

.lp-price-value {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin: 20px 0
}

.lp-price-value strong {
    font: 800 55px 'Inter';
    letter-spacing: -.05em
}

.lp-price-value span {
    font-weight: 700
}

.lp-price-old {
    font-size: 10px;
    color: #999
}

.lp-price-card ul {
    padding-left: 18px;
    font-size: 12px;
    line-height: 2.05;
    margin-bottom: 28px
}

.lp-price-card .lp-btn {
    margin-top: auto
}

.lp-price-badge {
    position: absolute;
    right: 22px;
    top: -13px;
    background: var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    padding: 7px 13px;
    border-radius: 100px
}

.lp-price-note {
    text-align: center;
    font-size: 10px;
    color: var(--muted);
    margin-top: 30px
}

.lp-diagnosis {
    background: #d7d2c8
}

.lp-diagnosis-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center
}

.lp-diagnosis-copy h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.2;
    letter-spacing: -.05em
}

.lp-diagnosis-copy>p {
    color: #605e58
}

.lp-diagnosis-copy ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.lp-diagnosis-copy li {
    background: var(--accent);
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700
}

.lp-chat-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 480px
}

.lp-chat-head {
    height: 62px;
    background: var(--ink);
    color: #fff;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lp-chat-head>div {
    display: flex;
    align-items: center;
    gap: 9px
}

.lp-chat-head strong {
    font: 700 12px 'Inter';
    letter-spacing: .08em
}

.lp-chat-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(231, 255, 52, .12)
}

.lp-chat-head button {
    background: none;
    border: 0;
    color: #999;
    font-size: 10px;
    cursor: pointer
}

.lp-chat-progress {
    padding: 14px 22px 0
}

.lp-chat-progress>div:first-child {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #777
}

.lp-chat-progress-track {
    height: 4px;
    background: #eee;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 8px
}

.lp-chat-progress-track i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--accent2);
    transition: .3s
}

.lp-chat-messages {
    padding: 22px;
    max-height: 280px;
    overflow: auto
}

.lp-chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 13px
}

.lp-chat-message.user {
    flex-direction: row-reverse
}

.lp-chat-avatar {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--accent);
    font: 800 8px 'Inter'
}

.lp-chat-message.user .lp-chat-avatar {
    background: #ddd;
    color: #555
}

.lp-chat-bubble {
    background: #f0eee9;
    border-radius: 4px 15px 15px 15px;
    padding: 12px 15px;
    font-size: 12px;
    max-width: 80%
}

.lp-chat-message.user .lp-chat-bubble {
    background: var(--accent);
    border-radius: 15px 4px 15px 15px
}

.lp-chat-actions {
    padding: 0 22px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.lp-chat-start, .lp-chat-option, .lp-chat-cta, .lp-chat-secondary {
    border: 0;
    cursor: pointer;
    font-weight: 700
}

.lp-chat-start, .lp-chat-cta {
    width: 100%;
    background: var(--ink);
    color: #fff;
    padding: 15px;
    border-radius: 100px
}

.lp-chat-start:hover, .lp-chat-cta:hover {
    background: var(--accent);
    color: var(--ink)
}

.lp-chat-option {
    background: #eeeae3;
    border-radius: 100px;
    padding: 10px 14px;
    font-size: 11px
}

.lp-chat-option:hover {
    background: var(--accent)
}

.lp-chat-result {
    margin: 0 22px 22px;
    background: #f4f1eb;
    border-left: 4px solid var(--accent2);
    padding: 18px;
    border-radius: 8px;
    font-size: 12px
}

.lp-chat-result h3 {
    font-size: 16px
}

.lp-chat-result-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px
}

.lp-chat-secondary {
    background: transparent;
    text-decoration: underline;
    font-size: 10px
}

.lp-faq-list {
    border-top: 1px solid var(--line)
}

.lp-faq details {
    border-bottom: 1px solid var(--line)
}

.lp-faq summary {
    cursor: pointer;
    padding: 24px 10px;
    font-weight: 700;
    font-size: 15px;
    list-style: none
}

.lp-faq summary:before {
    content: 'Q.';
    color: var(--accent2);
    font: 800 15px 'Inter';
    margin-right: 14px
}

.lp-faq details p {
    padding: 0 40px 25px;
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.lp-contact {
    background: var(--accent)
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.lp-contact-copy h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.25;
    letter-spacing: -.05em
}

.lp-contact-copy>p:last-child {
    font-size: 15px
}

.lp-form {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.lp-form>label:not(.lp-form-check) {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 17px
}

.lp-form label em, .lp-form label>span {
    font-style: normal;
    font-size: 9px;
    margin-left: 7px;
    color: var(--accent2)
}

.lp-form input:not([type=checkbox]), .lp-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid #dcd8d0;
    border-radius: 9px;
    padding: 13px;
    background: #faf9f6;
    font-size: 13px
}

.lp-form textarea {
    resize: vertical
}

.lp-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    margin: 12px 0
}

.lp-form-check span {
    margin: 0!important;
    color: #555!important
}

.lp-form-check a {
    text-decoration: underline
}

.lp-form-error {
    color: #c33;
    font-size: 11px
}

.lp-btn-submit {
    width: 100%;
    border-radius: 8px
}

.lp-form-note {
    text-align: center;
    font-size: 9px;
    color: #888
}

.lp-floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    background: var(--accent2);
    color: #fff;
    border-radius: 100px;
    padding: 9px 14px 9px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(17, 17, 15, .25)
}

.lp-floating-cta span {
    background: #fff;
    color: var(--accent2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900
}

.lp-floating-cta strong {
    font-size: 12px
}

.lp-floating-cta i {
    font-style: normal
}

.lp-footer {
    background: var(--ink);
    color: #fff;
    padding: 55px 0
}

.lp-footer .lp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end
}

.lp-footer strong {
    font: 800 20px 'Inter';
    letter-spacing: .1em
}

.lp-footer div span {
    display: block;
    font: 600 9px 'Inter';
    color: #777
}

.lp-footer p, .lp-footer small {
    font-size: 10px;
    color: #777
}

.lp-footer nav {
    text-align: right
}

.lp-footer nav a {
    font-size: 10px;
    margin-left: 20px
}

.lp-footer small {
    text-align: right
}

@media(max-width:980px) {
    .lp-nav {
        display: none
    }

    .lp-fv-grid, .lp-profile-grid, .lp-contact-grid {
        grid-template-columns: 1fr
    }

    .lp-fv-copy {
        max-width: 760px
    }

    .lp-workflow-visual {
        max-width: 620px;
        margin: auto;
        width: 100%;
        transform: none
    }

    .lp-problem-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-service-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-case-featured {
        grid-template-columns: 1fr
    }

    .lp-scope-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-deliverables-grid, .lp-diagnosis-grid {
        grid-template-columns: 1fr
    }

    .lp-price-grid {
        grid-template-columns: 1fr
    }

    .lp-price-card.is-featured {
        transform: none
    }

    .lp-head-split {
        grid-template-columns: 1fr;
        gap: 5px
    }
}

@media(max-width:640px) {
    .lp-container {
        width: min(100% - 30px, 1180px)
    }

    .lp-section {
        padding: 82px 0
    }

    .lp-header-inner {
        height: 66px
    }

    .lp-header-cta {
        font-size: 10px;
        padding: 10px 13px
    }

    .lp-logo strong {
        font-size: 11px
    }

    .lp-fv {
        padding: 108px 0 70px;
        min-height: auto
    }

    .lp-fv-grid {
        gap: 42px
    }

    .lp-fv h1 {
        font-size: 49px
    }

    .lp-fv-statement {
        font-size: 23px
    }

    .lp-fv-lead {
        font-size: 13px
    }

    .lp-fv-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px
    }

    .lp-btn-primary {
        padding: 15px 17px;
        font-size: 12px
    }

    .lp-text-link {
        text-align: center
    }

    .lp-trust-line {
        font-size: 10px
    }

    .lp-authority-grid {
        grid-template-columns: 1fr 1fr
    }

    .lp-authority-grid>div {
        padding: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, .15)
    }

    .lp-authority strong {
        font-size: 24px
    }

    .lp-section-head h2 {
        font-size: 39px
    }

    .lp-problem-grid {
        grid-template-columns: 1fr
    }

    .lp-problem-grid article {
        min-height: 210px
    }

    .lp-problem-grid h3 {
        margin: 30px 0 10px
    }

    .lp-manifesto {
        padding: 90px 0
    }

    .lp-service-steps {
        grid-template-columns: 1fr
    }

    .lp-case {
        padding: 28px 20px
    }

    .lp-case-compare {
        grid-template-columns: 1fr
    }

    .lp-case-arrow {
        text-align: center;
        transform: rotate(90deg)
    }

    .lp-case-grid {
        grid-template-columns: 1fr
    }

    .lp-case-small {
        padding: 30px 24px
    }

    .lp-case-small h3 {
        font-size: 27px
    }

    .lp-case-benefits {
        gap: 5px
    }

    .lp-deliverables-list {
        grid-template-columns: 1fr
    }

    .lp-scope-grid {
        grid-template-columns: 1fr
    }

    .lp-profile-card {
        transform: none
    }

    .lp-process-list li {
        grid-template-columns: 55px 1fr;
        padding: 23px 4px
    }

    .lp-process-list h3 {
        font-size: 18px
    }

    .lp-form {
        padding: 26px 20px
    }

    .lp-contact-copy h2 {
        font-size: 42px
    }

    .lp-floating-cta {
        right: 12px;
        bottom: 12px
    }

    .lp-footer .lp-container {
        grid-template-columns: 1fr
    }

    .lp-footer nav, .lp-footer small {
        text-align: left
    }

    .lp-footer nav a {
        margin: 0 15px 0 0
    }
}
