:root {
    --kopt-gold: #C59A3D;
    --kopt-red: #E5342A;
    --kopt-blue: #173C78;
    --kopt-ink: #111111;
    --kopt-text: #232323;
    --kopt-muted: #777777;
    --kopt-soft: #F7F6F2;
    --kopt-line: rgba(17,17,17,.10);
    --kopt-white: #ffffff;
    --kopt-radius: 28px;
    --kopt-shadow: 0 24px 70px rgba(0, 0, 0, .14);
    --kopt-font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
    --kopt-font-en: "Oswald", "Arial Narrow", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--kopt-white);
    color: var(--kopt-text);
    font-family: var(--kopt-font-jp);
    line-height: 1.8;
    letter-spacing: .02em;
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed !important;
    top: 12px; left: 12px;
    z-index: 99999;
    width: auto; height: auto;
    padding: 10px 16px;
    background: var(--kopt-ink);
    color: #fff;
    clip: auto;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}
.container.narrow { width: min(850px, calc(100% - 40px)); }
.section { position: relative; padding: 110px 0; }
.section-dark { color: #fff; background: var(--kopt-ink); }
.soft-dark { background: linear-gradient(135deg, #101010 0%, #1c1c1c 58%, #071225 100%); }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background .28s ease, border-color .28s ease, transform .28s ease;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.12);
    backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.92);
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.site-header.is-scrolled .brand { color: var(--kopt-ink); }
.brand-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.3);
    background: linear-gradient(135deg, var(--kopt-gold), #765414);
    color: #fff;
    font-family: var(--kopt-font-en);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transform: skew(-8deg);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong {
    font-family: var(--kopt-font-en);
    font-size: 22px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.brand-text small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; opacity: .78; }
.custom-logo-link img { max-height: 52px; width: auto; }

.site-nav .menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    position: relative;
    padding: 8px 0;
}
.site-header.is-scrolled .site-nav a { color: var(--kopt-ink); }
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--kopt-gold);
    transition: width .24s ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
}
.nav-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.site-header.is-scrolled .nav-toggle span:not(.screen-reader-text) { background: var(--kopt-ink); }

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    isolation: isolate;
    overflow: hidden;
}
.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-media img, .hero-media video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.04);
}
.hero-overlay {
    z-index: -1;
    background:
        radial-gradient(circle at 72% 40%, rgba(197,154,61,.24), transparent 32%),
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,.70), rgba(0,0,0,.10));
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
    gap: 44px;
    align-items: end;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 46px; height: 2px;
    background: currentColor;
}
.eyebrow.dark { color: var(--kopt-gold); }
.hero h1, .section-title h2, .service h2, .goal-copy h2, .profile h2, .final-cta h2 {
    margin: 0;
    color: inherit;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.03em;
}
.hero h1 {
    font-size: clamp(42px, 7vw, 92px);
    text-transform: none;
    text-wrap: balance;
}
.hero h1 span { color: var(--kopt-gold); }
.lead {
    max-width: 720px;
    margin: 26px 0 0;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
}
.hero-note {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.78);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button-row.center { justify-content: center; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
    background: linear-gradient(135deg, var(--kopt-gold), #8a651d);
    color: #fff;
    box-shadow: 0 14px 34px rgba(197,154,61,.28);
}
.btn-ghost {
    border-color: rgba(255,255,255,.44);
    color: #fff;
    background: rgba(255,255,255,.08);
}
.btn-outline {
    border-color: rgba(17,17,17,.18);
    color: var(--kopt-ink);
    background: #fff;
}
.btn-outline:hover { border-color: var(--kopt-gold); color: var(--kopt-gold); }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.hero-points li {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 700;
}
.hero-card {
    width: min(100%, 330px);
    justify-self: end;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    border-radius: var(--kopt-radius);
    box-shadow: var(--kopt-shadow);
}
.card-number {
    display: block;
    font-family: var(--kopt-font-en);
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    color: var(--kopt-gold);
}
.hero-card p { margin: 18px 0 8px; color: rgba(255,255,255,.70); font-family: var(--kopt-font-en); letter-spacing: .16em; }
.hero-card strong { display: block; font-size: 18px; line-height: 1.45; }
.scroll-indicator {
    position: absolute;
    right: 28px;
    bottom: 34px;
    writing-mode: vertical-rl;
    color: rgba(255,255,255,.62);
    font-family: var(--kopt-font-en);
    letter-spacing: .22em;
    font-size: 12px;
}
.scroll-indicator::after {
    content: "";
    display: inline-block;
    width: 1px; height: 70px;
    margin-top: 12px;
    background: linear-gradient(var(--kopt-gold), transparent);
}

.section-title { max-width: 780px; margin-bottom: 48px; }
.section-title h2, .service h2, .goal-copy h2, .profile h2, .final-cta h2 { font-size: clamp(34px, 5vw, 58px); }
.section-title p:not(.eyebrow) { color: var(--kopt-muted); margin: 18px 0 0; font-size: 16px; }
.section-problem {
    background:
        linear-gradient(90deg, rgba(197,154,61,.08) 0 1px, transparent 1px),
        linear-gradient(0deg, rgba(197,154,61,.06) 0 1px, transparent 1px),
        #fff;
    background-size: 64px 64px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.problem-card {
    min-height: 160px;
    padding: 24px;
    border: 1px solid var(--kopt-line);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}
.problem-card::after {
    content: "";
    position: absolute;
    right: -24px; top: -24px;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(197,154,61,.12);
}
.problem-card span {
    display: inline-block;
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-size: 28px;
    font-weight: 700;
}
.problem-card p { margin: 16px 0 0; font-weight: 700; }
.section-message {
    margin-top: 36px;
    padding: 28px 34px;
    border-left: 5px solid var(--kopt-gold);
    background: var(--kopt-ink);
    color: #fff;
    border-radius: 0 24px 24px 0;
}
.section-message p { margin: 0; font-size: 18px; font-weight: 700; }

.service { overflow: hidden; background: var(--kopt-soft); }
.side-label {
    position: absolute;
    left: 18px;
    top: 110px;
    writing-mode: vertical-rl;
    color: rgba(17,17,17,.10);
    font-family: var(--kopt-font-en);
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}
.side-label.right { left: auto; right: 18px; }
.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 44px;
    align-items: center;
}
.service-copy p:not(.eyebrow) { color: #535353; }
.bold-line {
    color: var(--kopt-ink) !important;
    font-size: 20px;
    font-weight: 900;
}
.service-panel {
    padding: 34px;
    border-radius: var(--kopt-radius);
    background: #fff;
    box-shadow: var(--kopt-shadow);
    border: 1px solid rgba(17,17,17,.08);
    position: relative;
}
.service-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(197,154,61,.25);
    border-radius: 22px;
    pointer-events: none;
}
.service-panel h3 {
    margin: 0 0 24px;
    font-family: var(--kopt-font-en);
    font-size: 40px;
    letter-spacing: .04em;
    color: var(--kopt-ink);
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f6f6f6;
    border: 1px solid rgba(17,17,17,.08);
    color: #333;
    font-size: 13px;
    font-weight: 800;
}
.tag-cloud span:nth-child(3n+1) { background: rgba(197,154,61,.12); }
.tag-cloud span:nth-child(3n+2) { background: rgba(229,52,42,.08); }
.tag-cloud span:nth-child(3n+3) { background: rgba(23,60,120,.08); }

.goal-section { overflow: hidden; }
.goal-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.goal-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--kopt-shadow);
    transform: rotate(-2deg);
}
.goal-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 32px;
}
.goal-image img { width: 100%; height: 650px; object-fit: cover; }
.goal-copy h2 span { color: var(--kopt-gold); }
.goal-copy p { color: rgba(255,255,255,.76); }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; display: grid; gap: 14px; }
.check-list li {
    position: relative;
    padding-left: 32px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--kopt-gold);
    box-shadow: 0 0 0 6px rgba(197,154,61,.16);
}

.reasons { background: #fff; }
.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.reason-card {
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--kopt-line);
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0,0,0,.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kopt-shadow);
    border-color: rgba(197,154,61,.4);
}
.reason-num {
    display: inline-flex;
    width: 54px; height: 54px;
    align-items: center; justify-content: center;
    border-radius: 16px;
    background: var(--kopt-ink);
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-size: 26px;
    font-weight: 700;
}
.reason-card h3 { margin: 22px 0 12px; font-size: 19px; line-height: 1.45; }
.reason-card p { margin: 0; color: #626262; font-size: 14px; }

.profile { background: var(--kopt-soft); overflow: hidden; }
.profile-grid {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
}
.profile-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--kopt-shadow);
}
.profile-image img { width: 100%; height: 720px; object-fit: cover; object-position: center top; }
.profile-badge {
    position: absolute;
    left: 24px; right: 24px; bottom: 24px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(0,0,0,.72);
    color: #fff;
    backdrop-filter: blur(14px);
    font-family: var(--kopt-font-en);
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
}
.profile-copy h2 {
    color: var(--kopt-ink);
    margin-bottom: 18px;
}
.profile-copy p { color: #565656; }
.profile-lead {
    font-size: 18px;
    font-weight: 800;
    color: var(--kopt-ink) !important;
}
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.profile-stats div {
    padding: 18px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    text-align: center;
}
.profile-stats strong {
    display: block;
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-size: 30px;
    line-height: 1;
}
.profile-stats span { display: block; margin-top: 8px; color: #777; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.intro-video {
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--kopt-shadow);
}
.intro-video video { width: 100%; max-height: 620px; object-fit: cover; }

.gallery-strip {
    padding: 0;
    overflow: hidden;
    background: var(--kopt-ink);
}
.gallery-track {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr 1.1fr;
    gap: 0;
}
.gallery-track figure { margin: 0; min-height: 360px; position: relative; overflow: hidden; }
.gallery-track figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.38), transparent 55%);
}
.gallery-track img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform .5s ease; }
.gallery-track figure:hover img { transform: scale(1.06); }

.plans { background: #fff; }
.plan-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 20px;
    align-items: stretch;
}
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(17,17,17,.10);
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.05);
}
.plan-card.featured {
    background: var(--kopt-ink);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--kopt-shadow);
}
.plan-card.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: 22px; right: 22px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--kopt-gold);
    color: #fff;
    font-family: var(--kopt-font-en);
    font-size: 12px;
    letter-spacing: .12em;
}
.plan-label {
    display: block;
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.plan-card h3 { margin: 0 0 14px; font-size: 25px; line-height: 1.35; }
.price { margin: 0 0 16px; color: inherit; font-weight: 700; }
.price strong {
    font-family: var(--kopt-font-en);
    font-size: 52px;
    letter-spacing: -.02em;
}
.member-price { margin: -8px 0 16px; color: var(--kopt-gold); font-weight: 800; }
.plan-card p:not(.price):not(.member-price) { color: #646464; }
.plan-card.featured p:not(.price):not(.member-price) { color: rgba(255,255,255,.75); }
.plan-card ul { padding: 0; margin: 20px 0 28px; list-style: none; display: grid; gap: 10px; }
.plan-card li { position: relative; padding-left: 25px; font-size: 14px; font-weight: 700; }
.plan-card li::before {
    content: "";
    position: absolute;
    left: 0; top: .62em;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--kopt-gold);
}
.plan-card .btn { margin-top: auto; }
.plan-card small { display: block; margin-top: 14px; color: rgba(255,255,255,.58); }

.flow {
    background:
        radial-gradient(circle at 20% 20%, rgba(197,154,61,.11), transparent 24%),
        var(--kopt-soft);
}
.flow-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.flow-item {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
}
.flow-item span {
    color: var(--kopt-gold);
    font-family: var(--kopt-font-en);
    font-weight: 700;
    letter-spacing: .12em;
}
.flow-item h3 { margin: 10px 0 12px; font-size: 20px; }
.flow-item p { margin: 0; color: #666; font-size: 14px; }

.faq { background: #fff; }
.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 52px;
    align-items: start;
}
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 52px); line-height: 1.1; }
.faq-intro p { color: #666; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
    border: 1px solid rgba(17,17,17,.10);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--kopt-ink);
    text-align: left;
    cursor: pointer;
    font-weight: 900;
}
.faq-question i {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(17,17,17,.18);
    position: relative;
    flex: 0 0 auto;
}
.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 10px; height: 2px;
    background: var(--kopt-gold);
    transform: translate(-50%, -50%);
}
.faq-question i::after { transform: translate(-50%, -50%) rotate(90deg); transition: opacity .2s ease; }
.faq-question[aria-expanded="true"] i::after { opacity: 0; }
.faq-answer { padding: 0 22px 22px; color: #666; }
.faq-answer p { margin: 0; }

.notes { background: var(--kopt-soft); }
.notes-box {
    padding: 42px;
    border-radius: 32px;
    border: 1px solid rgba(17,17,17,.08);
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
}
.notes-box h2 { margin: 0 0 20px; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; }
.notes-box ul { margin: 0; padding-left: 1.2em; color: #5e5e5e; }
.notes-box li + li { margin-top: 8px; }

.final-cta {
    position: relative;
    padding: 130px 0;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
}
.final-bg { position: absolute; inset: 0; z-index: -2; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 30%, rgba(197,154,61,.28), transparent 32%),
        rgba(0,0,0,.76);
}
.final-content { max-width: 860px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow::before { display: none; }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.80); font-size: 17px; }

.site-footer { background: #151515; color: #fff; }
.footer-cta-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 20px;
    background: var(--kopt-gold);
    color: #fff;
    font-weight: 900;
}
.footer-cta-mini a {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--kopt-ink);
}
.footer-inner {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.footer-inner p { color: rgba(255,255,255,.62); margin: 14px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-content: start; }
.footer-links a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.80); font-size: 13px; }
.footer-bottom {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    padding: 20px 0 34px;
    color: rgba(255,255,255,.44);
    border-top: 1px solid rgba(255,255,255,.10);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .24s; }

@media (max-width: 1040px) {
    .hero-grid, .service-grid, .goal-grid, .profile-grid, .faq-grid { grid-template-columns: 1fr; }
    .hero-card { justify-self: start; }
    .reason-grid, .plan-grid, .flow-list { grid-template-columns: repeat(2, 1fr); }
    .plan-card.featured { grid-column: 1 / -1; }
    .goal-image img, .profile-image img { height: 560px; }
    .faq-intro { position: static; }
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(17,17,17,.96);
        box-shadow: var(--kopt-shadow);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }
    .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .site-header.is-scrolled .site-nav a, .site-nav a { color: #fff; }
    .site-nav .menu { display: grid; gap: 8px; }
    .site-nav a { display: block; padding: 12px; }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero { min-height: 92svh; padding-top: 126px; }
    .problem-grid, .reason-grid, .plan-grid, .flow-list { grid-template-columns: 1fr; }
    .gallery-track { grid-template-columns: repeat(2, 1fr); }
    .side-label { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1120px); }
    .section { padding: 82px 0; }
    .header-inner { min-height: 66px; width: calc(100% - 24px); }
    .site-nav { top: 66px; }
    .brand-text small { display: none; }
    .brand-text strong { font-size: 18px; }
    .brand-mark { width: 38px; height: 38px; }
    .hero { padding: 112px 0 70px; }
    .hero h1 { font-size: clamp(38px, 12vw, 56px); }
    .lead { font-size: 16px; }
    .hero-note { font-size: 14px; }
    .btn { width: 100%; }
    .hero-points { display: grid; }
    .hero-card { display: none; }
    .scroll-indicator { display: none; }
    .section-title { margin-bottom: 34px; }
    .problem-card { min-height: auto; }
    .section-message { padding: 22px; }
    .service-panel, .plan-card, .notes-box { padding: 24px; }
    .goal-image img, .profile-image img { height: 460px; }
    .profile-stats { grid-template-columns: 1fr; }
    .gallery-track { display: block; }
    .gallery-track figure, .gallery-track img { min-height: 300px; height: 300px; }
    .price strong { font-size: 44px; }
    .footer-cta-mini { flex-direction: column; text-align: center; }
}
