:root {
    --lp-blue: #1a4ed8;
    --lp-blue-dark: #1640b0;
    --lp-blue-deep: #1e3a8a;
    --lp-blue-pale: #e6effd;
    --lp-blue-paler: #f3f7fe;
    --lp-blue-bg: #f5f9ff;
    --lp-teal: #14b8a6;
    --lp-teal-pale: #e0f7f3;
    --lp-accent: #eb4b55;
    --lp-accent-dark: #c93840;
    --lp-accent-pale: #fde7e9;
    --lp-text: #1f2937;
    --lp-text-soft: #4b5563;
    --lp-text-mute: #6b7280;
    --lp-white: #ffffff;
    --lp-border: #e5e7eb;
    --lp-border-soft: #eef2f7;
    --lp-shadow-sm: 0 4px 14px rgba(26, 78, 216, 0.06);
    --lp-shadow-md: 0 10px 30px rgba(26, 78, 216, 0.10);
    --lp-shadow-lg: 0 20px 50px rgba(26, 78, 216, 0.14);
    --lp-radius: 14px;
    --lp-radius-lg: 20px;
    --lp-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    color: var(--lp-text);
    background: var(--lp-white);
    line-height: 1.75;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--lp-ease);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.45;
    letter-spacing: .02em;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.lp-container {
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
    padding-inline: 24px;
}

.lp-sp-only {
    display: none;
}

@media (max-width: 768px) {
    .lp-sp-only {
        display: inline;
    }
}

.lp-accent-text {
    color: var(--lp-accent);
}

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    transition: all .25s var(--lp-ease);
    white-space: nowrap;
    line-height: 1.2;
    cursor: pointer;
    border: 2px solid transparent;
}

.lp-btn-lg {
    padding: 16px 30px;
    font-size: 16px;
}

.lp-btn-primary {
    background: var(--lp-blue);
    color: #fff;
}

.lp-btn-primary:hover {
    background: var(--lp-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 78, 216, 0.32);
}

.lp-btn-outline {
    background: #fff;
    color: var(--lp-blue);
    border-color: var(--lp-blue);
}

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

.lp-btn-white {
    background: #fff;
    color: var(--lp-blue);
}

.lp-btn-white:hover {
    background: var(--lp-blue-pale);
    transform: translateY(-1px);
}

.lp-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.lp-btn-outline-white:hover {
    background: #fff;
    color: var(--lp-blue);
}

/* ---------- Header ---------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp-border-soft);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

.lp-header-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lp-header-logo img {
    height: 50px;
    width: auto;
}

.lp-header-logo-icon {
    width: 36px;
    height: 36px;
    display: inline-block;
}

.lp-header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-header-logo-main {
    font-weight: 900;
    font-size: 17px;
    color: var(--lp-blue-deep);
    letter-spacing: .04em;
}

.lp-header-logo-sub {
    font-size: 10px;
    color: var(--lp-text-mute);
    letter-spacing: .04em;
    margin-top: 2px;
}

.lp-nav-list {
    display: flex;
    gap: 28px;
}

.lp-nav-list a {
    color: var(--lp-text);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s var(--lp-ease);
}

.lp-nav-list a:hover {
    color: var(--lp-blue);
}

.lp-nav-caret {
    margin-top: 2px;
}

.lp-header-cta {
    padding: 11px 22px;
    font-size: 14px;
}

.lp-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

.lp-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--lp-text);
    transition: .3s var(--lp-ease);
}

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

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

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

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    padding: 64px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, var(--lp-blue-bg) 100%);
    overflow: hidden;
}

.lp-hero-shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(26, 78, 216, 0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.lp-hero-badge {
    display: inline-block;
    background: var(--lp-blue-deep);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 24px;
}

.lp-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--lp-blue-deep);
    margin-bottom: 24px;
}

.lp-hero-accent {
    color: var(--lp-blue);
}

.lp-hero-lead {
    font-size: 1.2rem;
    line-height: 1.95;
    margin-bottom: 32px;
}

.lp-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.lp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-hero-stats li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--lp-border-soft);
    border-radius: var(--lp-radius);
    padding: 12px 14px;
    box-shadow: var(--lp-shadow-sm);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.5;
}

.lp-hero-stat-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-hero-stat-icon svg {
    width: 20px;
    height: 20px;
}

/* Hero visual */
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-hero-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.lp-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-hero-like {
    position: absolute;
    left: 8%;
    bottom: 14%;
    background: #fff;
    border-radius: 999px;
    padding: 8px 16px 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--lp-shadow-md);
    font-weight: 800;
    font-size: 14px;
    color: var(--lp-text);
}

/* ---------- Section heading ---------- */
.lp-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.lp-section-tag {
    display: inline-block;
    color: var(--lp-accent);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .25em;
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 900;
    color: var(--lp-blue-deep);
    line-height: 1.45;
    margin-bottom: 14px;
}

.lp-section-lead {
    font-size: 1.3rem;
    line-height: 1.9;
}

/* ---------- Problem ---------- */
.lp-problem {
    padding: 96px 0 80px;
    background: #fff;
}

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

.lp-problem-card {
    background: #fff;
    border: 1px solid var(--lp-border-soft);
    border-radius: var(--lp-radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}

.lp-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
}

.lp-problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-problem-icon svg {
    width: 28px;
    height: 28px;
}

.lp-problem-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lp-blue-deep);
    margin-bottom: 12px;
}

.lp-problem-card p {
    font-size: 1.2rem;
    line-height: 1.85;
    text-align: left;
}

.lp-problem-arrow {
    margin-top: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--lp-blue);
    font-weight: 800;
    font-size: 1.3rem;
}

.lp-problem-arrow svg {
    width: 26px;
    height: 26px;
}

/* ---------- Service ---------- */
.lp-service {
    padding: 96px 0;
    background: var(--lp-blue-bg);
}

.lp-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.lp-svc-card {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 24px;
    align-items: center;
    box-shadow: var(--lp-shadow-md);
    border-top: 6px solid var(--lp-blue);
}

.lp-svc-card--accent {
    border-top-color: var(--lp-teal);
}

.lp-svc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.lp-svc-num {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-blue);
    line-height: 1;
}

.lp-svc-num--accent {
    color: var(--lp-teal);
}

.lp-svc-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--lp-blue-deep);
}

.lp-svc-text {

    font-size: 13.5px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.lp-svc-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lp-text);
    border-bottom: 1px dashed var(--lp-border-soft);
}

.lp-svc-list li:last-child {
    border-bottom: none;
}

.lp-svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.lp-svc-list--primary {
    margin-left: 10%;
}

.lp-svc-list--primary li::before {
    background-color: var(--lp-blue);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 13l4 4L19 7'/></svg>");
}

.lp-svc-list--accent {
    margin-left: 10%;
}

.lp-svc-list--accent li::before {
    background-color: var(--lp-teal);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 13l4 4L19 7'/></svg>");
}

.lp-svc-img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Spec */
.lp-spec {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    padding: 28px 32px 32px;
    box-shadow: var(--lp-shadow-sm);
}

.lp-spec-title {
    text-align: center;
    font-size: 14px;
    color: var(--lp-blue);
    font-weight: 800;
    letter-spacing: .2em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--lp-border-soft);
    margin-bottom: 22px;
    position: relative;
}

.lp-spec-title::before,
.lp-spec-title::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--lp-blue);
    vertical-align: middle;
    margin: 0 10px;
}

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

.lp-spec-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
}

.lp-spec-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-spec-icon svg {
    width: 22px;
    height: 22px;
}

.lp-spec-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--lp-blue-deep);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.lp-spec-num small {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-spec-label {
    font-size: 12px;
    color: var(--lp-text-mute);
    margin-left: auto;
    text-align: right;
    line-height: 1.4;
}

/* ---------- Reason ---------- */
.lp-reason {
    padding: 96px 0;
    background: #fff;
}

.lp-reason-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-reason-item {
    display: grid;
    grid-template-columns: 80px 1fr 320px;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--lp-border-soft);
    border-radius: var(--lp-radius-lg);
    padding: 24px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}

.lp-reason-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md);
}

.lp-reason-num {
    width: 64px;
    height: 64px;
    background: var(--lp-blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lp-reason-body h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--lp-blue-deep);
    margin-bottom: 10px;
}

.lp-reason-body em {
    color: var(--lp-accent);
    font-style: normal;
}

.lp-reason-body p {
    font-size: 13.5px;

    line-height: 1.85;
}

.lp-reason-img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--lp-blue-paler);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-reason-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-reason-item:nth-child(2) .lp-reason-img img,
.lp-reason-item:nth-child(3) .lp-reason-img img {
    object-fit: contain;
    padding: 8px;
}

/* ---------- Flow ---------- */
.lp-flow {
    padding: 96px 0;
    background: var(--lp-blue-bg);
}

.lp-flow-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}

.lp-flow-step {
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 26px 18px 22px;
    box-shadow: var(--lp-shadow-sm);
    text-align: left;
    position: relative;
    border-top: 4px solid var(--lp-blue);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lp-flow-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--lp-blue-bg);
}

.lp-flow-step h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lp-blue-deep);
    margin-bottom: 8px;
    text-align: center;
    min-height: 42px;
}

.lp-flow-step p {
    font-size: 1.1rem;

    line-height: 1.75;
    margin-bottom: 12px;
}

.lp-flow-time {
    display: block;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    line-height: 1.5;
    margin-top: auto;
}

/* ---------- Price ---------- */
.lp-price {
    padding: 96px 0;
    background: #fff;
}

.lp-price-card {
    background: linear-gradient(180deg, #f7fbff 0%, #fff 60%);
    border: 1px solid var(--lp-border-soft);
    border-radius: var(--lp-radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--lp-shadow-md);
}

.lp-price-badge {
    position: absolute;
    top: -16px;
    left: 36px;
    background: var(--lp-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
}

.lp-price-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.3fr 0.95fr;
    gap: 28px;
    align-items: start;
    margin-top: 12px;
}

.lp-price-plan {
    font-size: 17px;
    font-weight: 800;
    color: var(--lp-blue-deep);
    margin-bottom: 14px;
}

.lp-price-big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--lp-blue);
    flex-wrap: wrap;
}

.lp-price-yen {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.lp-price-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.lp-price-unit {
    font-size: 13px;
    color: var(--lp-text-mute);
    font-weight: 600;
}

.lp-price-note {
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--lp-text-mute);
    line-height: 1.7;
}

.lp-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
}

.lp-price-table thead th {
    background: var(--lp-blue-pale);
    color: var(--lp-blue-deep);
    font-weight: 700;
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid var(--lp-border-soft);
    font-size: 12px;
}

.lp-price-table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--lp-border-soft);
    text-align: center;
    vertical-align: middle;
    color: var(--lp-text);
}

.lp-price-table tbody tr td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--lp-blue-deep);
    background: #f8fbff;
}

.lp-price-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--lp-blue);
}

.lp-price-detail {
    color: var(--lp-text-mute);
    font-size: 11.5px;
}

.lp-price-total-row td {
    background: var(--lp-blue);
    color: #fff;
    font-weight: 800;
}

.lp-price-total-row td:first-child {
    background: var(--lp-blue-deep);
    color: #fff;
}

.lp-price-total {
    color: #fff !important;
    font-size: 16px;
}

.lp-price-total-row .lp-price-detail {
    color: #dbe7ff;
}

.lp-price-includes-title {
    font-size: 14px;
    color: var(--lp-blue-deep);
    font-weight: 800;
    padding: 8px 14px;
    background: var(--lp-blue-pale);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 12px;
}

.lp-price-includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-price-includes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--lp-text);
    font-weight: 600;
    line-height: 1.6;
}

.lp-price-includes svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: var(--lp-blue);
    margin-top: 2px;
}

/* ---------- CTA ---------- */
.lp-cta {
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-deep) 100%);
    padding: 56px 0;
    color: #fff;
}

.lp-cta-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.lp-cta-title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 900;
    line-height: 1.55;
    margin-bottom: 14px;
    text-align: center;
}

.lp-cta-lead {
    font-size: 1.2rem;
    line-height: 1.85;
    opacity: 0.9;
    margin-bottom: 22px;
    text-align: center;
    font-weight: 600;
}

.lp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 18px;
}

.lp-cta-points {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.95;
    justify-content: center;
}

.lp-cta-img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--lp-shadow-lg);
}

.lp-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Footer ---------- */
.lp-footer {
    background: #fff;
    padding: 32px 0 28px;
    border-top: 1px solid var(--lp-border-soft);
}

.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.lp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lp-footer-logo-icon {
    width: 32px;
    height: 32px;
}

.lp-footer-brand-name {
    font-weight: 800;
    color: var(--lp-blue-deep);
    font-size: 14px;
    line-height: 1.5;
}

.lp-footer-brand-name small {
    display: block;
    font-size: 11px;
    color: var(--lp-text-mute);
    font-weight: 500;
}

.lp-footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13px;

}

.lp-footer-nav a:hover {
    color: var(--lp-blue);
}

.lp-footer-copy {
    flex: 0 0 100%;
    text-align: center;
    color: var(--lp-text-mute);
    font-size: 11px;
    margin-top: 8px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .lp-svc-card {
        grid-template-columns: 1fr 160px;
    }

    .lp-reason-item {
        grid-template-columns: 64px 1fr 240px;
    }

    .lp-flow-list {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 32px;
    }

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

    .lp-price-center {
        grid-column: 1 / -1;
        order: 3;
    }

    .lp-cta-inner {
        grid-template-columns: 1fr;
    }

    .lp-cta-img {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .lp-nav,
    .lp-header-cta {
        display: none;
    }

    .lp-hamburger {
        display: flex;
    }

    .lp-header-logo img {
        height: 40px;
    }

    .lp-nav.is-open {
        display: block;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--lp-shadow-md);
        padding: 18px 24px 24px;
        text-align: center;
    }

    .lp-nav.is-open .lp-nav-list {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    /* ----- Hero (centered) ----- */
    .lp-hero {
        padding: 48px 0 64px;
        text-align: center;
    }

    .lp-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-hero-lead {
        text-align: center;
        font-size: 1.1rem;
    }

    .lp-hero-stats {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .lp-hero-stats li {
        justify-content: center;
        text-align: center;
        font-size: 1.2rem;
    }

    .lp-hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .lp-hero-cta .lp-btn {
        width: 100%;
    }

    .lp-hero-visual {
        justify-content: center;
    }

    /* ----- Section paddings ----- */
    .lp-problem,
    .lp-service,
    .lp-reason,
    .lp-flow,
    .lp-price {
        padding: 36px 0;
    }

    .lp-section-head {
        text-align: center;
    }

    .lp-section-lead {
        text-align: center;
        font-size: 1rem;
    }

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

    .lp-problem-card,
    .lp-problem-card p {
        text-align: center;
        font-size: 1rem;
    }

    .lp-svc-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-svc-head {
        justify-content: center;
    }

    .lp-svc-img {
        aspect-ratio: 16 / 10;
        order: -1;
    }

    .lp-svc-list li {
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }

    .lp-spec {
        text-align: center;
    }

    .lp-spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-spec-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .lp-spec-label {
        margin-left: 0;
        text-align: center;
        font-size: 1.2rem;
    }

    /* ----- Reason (fully centered) ----- */
    .lp-reason-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-reason-num {
        margin: 0 auto;
    }

    .lp-reason-body {
        text-align: center;
    }

    .lp-reason-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* ----- Flow (centered) ----- */
    .lp-flow-list {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }

    .lp-flow-step {
        text-align: center;
    }

    .lp-flow-step p {
        text-align: center;
        font-size: 1rem;
    }

    /* ----- Price (centered) ----- */
    .lp-price-card {
        padding: 28px 18px;
        text-align: center;
    }

    .lp-price-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .lp-price-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-price-center {
        order: 2;
    }

    .lp-price-right {
        order: 3;
    }

    .lp-price-big {
        justify-content: center;
    }

    .lp-price-table {
        font-size: 11.5px;
    }

    .lp-price-table th,
    .lp-price-table td {
        padding: 8px 6px;
    }

    .lp-price-table tbody tr td:first-child {
        text-align: center;
    }

    .lp-price-includes {
        align-items: center;
        margin-left: 22%;
    }

    .lp-price-includes li {
        justify-content: flex-start;
        text-align: left;
        max-width: 280px;
        width: 100%;
    }

    /* ----- CTA (centered) ----- */
    .lp-cta {
        padding: 56px 0 48px;
        text-align: center;
    }

    .lp-cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-cta-lead {
        text-align: center;
    }

    .lp-cta-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .lp-cta-buttons .lp-btn,
    .lp-cta-buttons .vet-btn {
        width: 100%;
    }

    .lp-cta-points {
        justify-content: center;
        text-align: center;
    }

    /* ----- Footer (centered) ----- */
    .lp-footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .lp-footer-brand,
    .lp-footer-logo,
    .lp-footer-brand-name {
        text-align: center;
    }

    .lp-footer-logo {
        justify-content: center;
    }

    .lp-footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lp-problem-grid {
        grid-template-columns: 1fr;
    }

    .lp-spec-grid {
        grid-template-columns: 1fr;
    }

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

    .lp-hero-title {
        font-size: 1.5rem;
    }

    .lp-price-num {
        font-size: 2.5rem;
    }
}