/* shared/ui.css */

.color-red {
    color: var(--color-red) !important;
}

.d-flex {
    display: flex !important;
}

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
    border: 0 solid;
}

.yl-loadingSpinner {
    width: 24px;
    height: 24px;
    border: 3px solid #eee;
    border-top: 3px solid var(--color-main);
    border-radius: 50%;
    animation: yl-spin 0.8s linear infinite;
}

@keyframes yl-spin {
    to {
        transform: rotate(360deg);
    }
}

.mt-3 {
    margin-top: 1rem !important;
}
.mr-3 {
    margin-right: 1rem !important;
}
.ml-1 {
    margin-left: 0.5rem !important;
}
.ml-2 {
    margin-left: 0.75rem !important;
}
.ml-3 {
    margin-left: 1rem !important;
}

.bg-subcolor {
    background-color: var(--color-sub) !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.bg-secondary-lt {
    background-color: #f3f4f6 !important;
}

.text-secondary {
    color: #6b7280 !important;
}

.bg-green-lt {
    background-color: #dcfce7 !important;
}

.text-green {
    color: #166534 !important;
}

.bg-yellow-lt {
    background-color: #fef3c7 !important;
}

.text-yellow {
    color: #92400e !important;
}

.bg-orange-lt {
    background-color: #ffedd5 !important;
}

.text-orange {
    color: #c2410c !important;
}

.bg-blue-lt {
    background-color: #dbeafe !important;
}

.text-blue {
    color: #1d4ed8 !important;
}

.bg-red-lt {
    background-color: #fee2e2 !important;
}

.text-red {
    color: #b91c1c !important;
}

/* =========================
   Layout Utilities
========================= */
.yl-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.yl-containerCenter {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
}
.yl-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.yl-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 66px;
}

/* =========================
   Section Titles
========================= */
.yl-sectionTitle {
    font-size: 28px;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
}

.yl-sectionLead {
    margin: 0 0 22px;
    color: var(--color-muted);
}

.yl-moreLink {
    display: inline-block;
    margin-top: 14px;
    text-decoration: underline;
    color: inherit;
}

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

.yl-containerHeader {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.yl-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.yl-nav {
    display: none;
    gap: 12px;
}

.yl-navLink {
    color: #222;
    font-size: 14px;
    text-decoration: none;
}

.yl-headerRight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yl-sns {
    font-size: 14px;
    color: #222;
    text-decoration: none;
}

.yl-ctaSm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   Hero
========================= */
.yl-page {
    background: #fff;
}

.yl-hero {
    padding: 46px 0 28px;
    background: linear-gradient(180deg, #fff, #faf7fb);
}

.yl-containerHero {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.yl-heroEyebrow {
    margin: 0 0 10px;
    color: #555;
    font-weight: 600;
}

.yl-heroTitle {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.yl-heroLead {
    margin: 0 0 18px;
    font-size: 18px;
    color: #222;
    font-weight: 700;
}

.yl-heroBadges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 8px;
    align-items: center;
}

.yl-heroNote {
    margin: 0 0 18px;
    font-size: 12px;
    color: #777;
}

.yl-heroButtons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.yl-storeBtn {
    display: inline-flex;
}

.yl-heroVisual {
    justify-self: end;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   Sections
========================= */
.yl-about {
    padding: 40px 0;
}
.yl-features,
.yl-howto,
.yl-safety,
.yl-faq,
.yl-news,
.yl-events,
.yl-column,
.yl-bottomCta {
    padding: 54px 0;
}

/* About text */
.yl-aboutText {
    margin: 0 auto;
    max-width: 820px;
    color: #333;
    line-height: 1.9;
}

/* =========================
   Testimonials
========================= */
.yl-testimonials {
    padding: 48px 0;
    background: #fff;
}

.yl-tcard {
    display: grid;
    gap: 12px;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.yl-titem {
    border-top: 1px dashed #eee;
    padding-top: 12px;
}

.yl-titem:first-child {
    border-top: 0;
    padding-top: 0;
}

.yl-tTitle {
    margin: 0 0 8px;
    font-size: 18px;
}

.yl-tExcerpt {
    margin: 0 0 10px;
    color: #444;
    line-height: 1.8;
}

.yl-tMeta {
    margin: 0;
    color: #777;
    font-size: 13px;
}

/* =========================
   Media
========================= */
.yl-media {
    padding: 40px 0;
    background: #fafafa;
}

.yl-mediaGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
}

.yl-mediaLogo {
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
}

/* =========================
   Features
========================= */
.yl-featureList {
    display: grid;
    gap: 18px;
}

.yl-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px;
}

.yl-featureTitle {
    margin: 0 0 8px;
    font-size: 20px;
}

.yl-featurePoints {
    margin: 0;
    padding-left: 18px;
    color: #333;
    line-height: 1.9;
}

.yl-featureImages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
}

.yl-featureImgWrap {
    border-radius: 14px;
    overflow: hidden;
    background: #f1f1f1;
}

/* =========================
   HowTo
========================= */
.yl-howto {
    background: #faf7fb;
}

.yl-howtoList {
    display: grid;
    gap: 16px;
}

.yl-howtoItem {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.yl-howtoImg {
    border-radius: 14px;
    overflow: hidden;
    background: #f1f1f1;
}

.yl-howtoTitle {
    margin: 0 0 8px;
    font-size: 18px;
}

.yl-howtoDesc {
    margin: 0;
    color: #444;
    line-height: 1.9;
}

/* =========================
   Safety
========================= */
.yl-safetyGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.yl-safetyCard {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.yl-safetyTitle {
    margin: 10px 0 6px;
    font-size: 16px;
}

.yl-safetyDesc {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 14px;
}

/* =========================
   FAQ
========================= */
.yl-faq {
    background: #fafafa;
}

.yl-faqList {
    display: grid;
    gap: 10px;
}

.yl-faqItem {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.yl-faqQ {
    cursor: pointer;
    font-weight: 700;
}

.yl-faqA {
    margin-top: 10px;
    color: #444;
    line-height: 1.9;
}

/* =========================
   News / Events
========================= */
.yl-events {
    background: #fafafa;
}

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

.yl-listRow {
    display: grid;
    grid-template-columns: 120px 90px 1fr;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
}

.yl-listDate {
    color: #666;
    font-size: 13px;
}

.yl-listTag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.yl-listTitle {
    color: #222;
}

/* =========================
   Column
========================= */
.yl-linkList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.yl-linkItem {
    display: block;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    background: #fff;
}

/* =========================
   Bottom CTA
========================= */
.yl-bottomCta {
    background: linear-gradient(180deg, #fff, #faf7fb);
}

.yl-bottomTitle {
    margin: 0 0 8px;
    font-size: 28px;
}

.yl-bottomLead {
    margin: 0 0 18px;
    color: #444;
}

/* =========================
   Footer
========================= */
.yl-footer {
    padding: 34px 0;
    border-top: 1px solid var(--color-border);
    background: #fff;
}

.yl-containerFooter {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.7fr;
    gap: 18px;
    align-items: start;
}

.yl-footerSmall {
    margin: 10px 0 0;
    color: #777;
    font-size: 12px;
}

.yl-footerLinks {
    display: grid;
    gap: 8px;
}

.yl-footerLinks a,
.yl-footerSns a {
    color: #222;
    text-decoration: none;
}

.yl-footerSns {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.yl-socialIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f7eef3;
}

.yl-socialLogoLine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    border-radius: 8px;
    background: #06c755;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.yl-socialLogoInstagram {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.yl-socialLogoInstagram::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid #fff;
    border-radius: 999px;
}

.yl-socialLogoInstagram::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #fff;
}

/* =========================
   Responsive
========================= */
@media (min-width: 980px) {
    .yl-nav {
        display: flex;
    }
}

@media (max-width: 980px) {
    .yl-containerHero {
        grid-template-columns: 1fr;
    }
    .yl-heroVisual {
        justify-self: start;
    }

    .yl-feature {
        grid-template-columns: 1fr;
    }
    .yl-howtoItem {
        grid-template-columns: 1fr;
    }
    .yl-safetyGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .yl-mediaGrid {
        grid-template-columns: repeat(3, 1fr);
    }

    .yl-containerFooter {
        grid-template-columns: 1fr;
    }
    .yl-footerSns {
        justify-content: flex-start;
    }
}

.yl-form {
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 16px;
    padding: 18px;
}

.yl-formGrid {
    display: grid;
    gap: 14px;
}

.yl-field {
    display: grid;
    gap: 6px;
}

.yl-label {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.yl-warning-label {
    font-size: 13px;
    color: var(--color-warning);
    border: 1px solid var(--color-warning);
    background-color: var(--color-border-warning);
    border-radius: 5px;
    padding: 2px 5px;
}

.yl-input {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.yl-input:focus {
    border-color: #bbb;
}

.yl-textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.7;
}

.yl-help {
    font-size: 12px;
    color: #777;
}

.yl-error {
    color: #b42318;
    font-size: 13px;
}

.yl-alert {
    border: 1px solid #f8d7da;
    background: #fff5f6;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 0 0 14px;
}

.yl-alertTitle {
    font-weight: 800;
}

.yl-alertList {
    margin: 0;
    padding-left: 18px;
    color: #8a1c1c;
}

.yl-formActions {
    margin-top: 48px;
    display: grid;
    gap: 12px;
}

.yl-ctaLg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    border-radius: 999px;
    border: 0;
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

.yl-ctaLg:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yl-small {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.yl-birthRow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.yl-select,
.yl-selectFull {
    width: 100%;
}

.yl-file {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 14px;
    background: #fff;
}

/* =========================
   Checkbox Component
========================= */

.yl-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.yl-checkInput {
    position: absolute;
    opacity: 0;
}

.yl-checkBox {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.yl-checkIcon {
    width: 14px;
    height: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.18s ease;
}

/* checked */

.yl-checkInput:checked + .yl-checkBox {
    background: var(--color-main);
    border-color: var(--color-main);
}

.yl-checkInput:checked + .yl-checkBox .yl-checkIcon {
    opacity: 1;
    transform: scale(1);
}

/* hover */

.yl-check:hover .yl-checkBox {
    border-color: #fd869f;
}

/* focus */

.yl-checkInput:focus-visible + .yl-checkBox {
    outline: 3px solid rgba(253, 134, 159, 0.35);
    outline-offset: 2px;
}

.yl-checkLabel a {
    text-decoration: underline;
}

.yl-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 16px;
}

.yl-required {
    color: var(--color-red);
    margin-left: 4px;
    font-weight: 900;
}

.yl-previewImage {
    max-width: 320px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-top: 6px;
}

.yl-static {
    padding: 12px 14px;
    background: #f7f7f7;
    border-radius: 6px;
    font-size: 14px;
}

/* =========================
  Signup
========================= */
.yl-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.yl-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.yl-stepNumber {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 8px;
    font-weight: bold;
}

.yl-stepLabel {
    font-size: 12px;
    color: #666;
}

.yl-step-active .yl-stepNumber {
    background: var(--color-sub);
    color: white;
}

.yl-step-active .yl-stepLabel {
    color: #000;
    font-weight: bold;
}

.yl-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}
.yl-auth {
    flex: 1;
    padding: 54px 0;
    background: linear-gradient(180deg, #fff, #faf7fb);
}

.yl-authContainer {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
}

.yl-authTitle {
    font-size: 28px;
    margin: 0 0 8px;
}

.yl-authLead {
    margin: 0 0 18px;
    color: var(--color-muted);
}

.yl-completeBox {
    margin-top: 30px;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 10px;
    line-height: 1.8;
}

/* =========================
  Mypage Header
========================= */
.yl-mypageHeader {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.yl-mypageHeaderInner {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.yl-mypageBrand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.yl-mypageBrandLogo {
    display: block;
}

.yl-mypageMenuButton {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    color: #222;
    cursor: pointer;
}

.yl-mypageMenuButtonLine {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

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

.yl-mypageNav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

.yl-mypageNavGroup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.yl-mypageNavLink {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.yl-mypageNavLink:hover {
    color: var(--color-main);
}

.yl-mypageNavToggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.yl-mypageNavToggle:hover {
    color: var(--color-main);
}

.yl-mypageNavToggle::after {
    content: '▾';
    font-size: 11px;
    line-height: 1;
}

.yl-mypageSubNav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    display: grid;
    gap: 8px;
    min-width: 160px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.yl-mypageSubNavLink {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 700;
}

.yl-mypageSubNavLink:hover {
    color: var(--color-main);
}

.yl-mypageHeaderRight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yl-mypageHeaderRightNav {
    display: none;
}

.yl-mypageUser {
    display: flex;
    align-items: center;
}

.yl-mypageUserName {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.yl-mypageLogoutBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.yl-mypageMain {
    background: linear-gradient(180deg, #fff, #faf7fb);
    padding-top: 0px;
}

@media (max-width: 980px) {
    .yl-mypageHeaderInner {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
    }

    .yl-mypageNav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        z-index: 30;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border: 1px solid var(--color-border);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
        width: 100%;
        flex: none;
        justify-content: flex-start;
    }

    .yl-mypageNav.is-open {
        display: flex;
    }

    .yl-mypageNavGroup {
        width: 100%;
    }

    .yl-mypageNavLink,
    .yl-mypageNavToggle {
        min-height: 48px;
        padding: 10px 4px;
    }

    .yl-mypageSubNav {
        position: static;
        margin-top: 8px;
        width: 100%;
        box-shadow: none;
    }

    .yl-mypageMenuButton {
        display: inline-flex;
        position: relative;
        flex-direction: column;
        flex-shrink: 0;
    }

    .yl-mypageHeaderRightDesktop {
        display: none;
    }

    .yl-mypageHeaderRightNav {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }
}

.yl-mypageNavLink.is-active {
    color: var(--color-main);
    font-weight: 700;
}

.yl-mypageNavToggle.is-active {
    color: var(--color-main);
    font-weight: 700;
}

.yl-mypageSubNavLink.is-active {
    color: var(--color-main);
}

/* =========================
  Mypage
========================= */
.yl-mypageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.yl-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.yl-mypage {
    padding: 54px 0;
    min-height: 100%;
    background: linear-gradient(180deg, #fff, #faf7fb);
}

.yl-pageTitle {
    margin: 0 0 24px;
    font-size: 32px;
}

.yl-cardTitle {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
}

.yl-infoList {
    display: grid;
    gap: 12px;
}

.yl-infoRow {
    display: grid;
    gap: 4px;
}

.yl-infoLabel {
    font-size: 12px;
    color: #777;
}

.yl-infoValue {
    font-size: 16px;
    color: #222;
    white-space: pre-wrap;
}

.yl-infoRowBlock {
    display: grid;
    gap: 4px;
}

.yl-statusText {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.yl-mypageSummary {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.yl-summaryHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.yl-summaryTitle {
    font-size: 14px;
    color: #666;
}

.yl-summaryValue {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.yl-simpleList {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 12px;
}

@media (max-width: 980px) {
    .yl-mypageSummary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .yl-mypageGrid {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
    }

    .yl-mypageSummary {
        grid-template-columns: 1fr;
    }
}

.yl-profileSummary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.yl-profileAvatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f3f3;
    border: 1px solid #eee;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .yl-profileSummary {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .yl-profileSummary .yl-infoList {
        width: 100%;
    }

    .yl-profileAvatar {
        margin-inline: auto;
    }

    .yl-profileEditAction {
        display: flex;
        justify-content: center;
    }
}

.yl-profileEditCard {
    max-width: 860px;
}

.yl-profileImageEditor {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.yl-profileImagePreview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f3f3;
    border: 1px solid #eee;
}

.yl-profileImageActions {
    display: grid;
    gap: 8px;
}

.yl-subImageEditor {
    display: grid;
    gap: 16px;
}

.yl-subImageGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.yl-subImageCard {
    display: grid;
    gap: 8px;
}

.yl-subImagePreview {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    object-fit: cover;
    background: #f3f3f3;
    border: 1px solid #eee;
}

.yl-subImageMeta {
    display: grid;
    gap: 8px;
}

.yl-subImageOrderActions {
    display: flex;
    gap: 8px;
}

.yl-subImageOrderButton {
    appearance: none;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #333;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.yl-subImageOrderButton:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* =========================
   New Design Top Page
========================= */
.nd-page {
    --nd-pink: #f4698a;
    --nd-pink-light: #f9a8be;
    --nd-pink-pale: #fde8ef;
    --nd-pink-bg: #fff5f8;
    --nd-yellow-bg: #faf9ec;
    --nd-red: #e8435a;
    --nd-text-dark: #3a2a30;
    --nd-text-mid: #6b5560;
    --nd-text-light: #a08890;
    --nd-white: #ffffff;
    --nd-cream: #fff9f0;
    --nd-border: #f2d0da;
    --nd-font-round:
        var(--font-zen-maru-gothic), 'Hiragino Maru Gothic ProN', 'Yu Gothic',
        sans-serif;
    --nd-radius-md: 16px;
    --nd-radius-lg: 24px;
    --nd-shadow: 0 4px 20px rgba(244, 105, 138, 0.12);
    --nd-shadow-lg: 0 8px 40px rgba(244, 105, 138, 0.18);

    color: var(--nd-text-dark);
    background: var(--nd-white);
}

.nd-page *,
.nd-page *::before,
.nd-page *::after {
    box-sizing: border-box;
}

.nd-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.nd-page a {
    color: inherit;
    text-decoration: none;
}

.nd-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.nd-section {
    padding: 80px 0;
}

.nd-anchorSection {
    scroll-margin-top: 96px;
}

.nd-sectionTitle {
    margin: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--nd-font-round);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--nd-text-dark);
}

.nd-sectionTitle span {
    color: var(--nd-pink);
    font-size: 32px;
}

.nd-sectionLead {
    max-width: 720px;
    margin: -24px auto 40px;
    color: var(--nd-text-mid);
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.nd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.nd-btn:hover {
    transform: translateY(-2px);
}

.nd-btnPrimary {
    background: linear-gradient(135deg, var(--nd-pink), var(--nd-red));
    color: var(--nd-white);
    box-shadow: 0 4px 16px rgba(232, 67, 90, 0.35);
}

.nd-btnOutline {
    border: 2px solid var(--nd-pink);
    color: var(--nd-pink);
    background: transparent;
}

.nd-btnOutline:hover {
    background: var(--nd-pink);
    color: var(--nd-white);
}

.nd-btnGhost {
    border: 2px solid var(--nd-border);
    color: var(--nd-text-mid);
    background: var(--nd-white);
}

.nd-btnWhite {
    padding: 16px 52px;
    background: var(--nd-white);
    color: var(--nd-pink);
    font-family: var(--nd-font-round);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nd-btnBlock {
    width: 100%;
    padding: 14px 24px;
    font-family: var(--nd-font-round);
    font-size: 16px;
    font-weight: 700;
}

.nd-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--nd-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.2s ease;
}

.nd-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(244, 105, 138, 0.12);
}

.nd-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    height: 64px;
    margin: 0 auto;
    padding: 0 32px;
}

.nd-navLogo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nd-navLinks {
    display: flex;
    gap: 24px;
}

.nd-navLinks a {
    color: var(--nd-text-mid);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nd-navLinks a:hover {
    color: var(--nd-pink);
}

.nd-navActions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nd-navLogin,
.nd-navButton {
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--nd-text-mid);
    font-size: 14px;
    font-weight: 500;
}

.nd-navLogin:hover,
.nd-navButton:hover {
    background: var(--nd-pink-pale);
}

.nd-navButton {
    border: none;
    background: transparent;
}

.nd-navCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nd-pink), var(--nd-red));
    color: var(--nd-white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.nd-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.nd-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nd-text-dark);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

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

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

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

.nd-mobileMenu {
    display: none;
    position: fixed;
    top: 64px;
    inset-inline: 0;
    z-index: 999;
    padding: 20px 24px 28px;
    background: var(--nd-white);
    border-bottom: 1px solid var(--nd-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nd-mobileMenu.is-open {
    display: flex;
    flex-direction: column;
}

.nd-mobileLinks a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    color: var(--nd-text-dark);
    border-bottom: 1px solid var(--nd-border);
}

.nd-mobileActions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.nd-mobileActions .nd-btn {
    padding: 13px 20px;
}

.nd-mobileAuthActions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.nd-mobileAuthActions .nd-btn {
    width: 100%;
    padding: 13px 20px;
    font-family: var(--nd-font-round);
    font-size: 16px;
    font-weight: 700;
}

.nd-mobileLogoutButton {
    width: 100%;
}

.nd-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin-top: 64px;
    overflow: hidden;
}

.nd-heroBg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #fde8ef 0%, #fff0e8 60%, #fde8ef 100%);
}

.nd-heroImageArea {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
}

.nd-coverImage {
    object-fit: cover;
    object-position: center;
}

.nd-heroContent {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 24px 60px 80px;
}

.nd-heroCatch {
    margin: 30px 0;
    font-family: var(--nd-font-round);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--nd-text-dark);
}

.nd-heroSub {
    margin: 0 0 36px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--nd-text-mid);
}

.nd-heroButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nd-heroButtons .nd-btn {
    padding: 14px 36px;
    font-family: var(--nd-font-round);
    font-size: 16px;
    font-weight: 700;
}

.nd-about {
    padding: 80px 0;
    background: var(--nd-yellow-bg);
}

.nd-aboutInner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nd-aboutTitle {
    margin: 0 0 8px;
    font-family: var(--nd-font-round);
    font-size: 22px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-aboutPoints {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.nd-aboutPoints li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--nd-radius-md);
    background: var(--nd-white);
    color: var(--nd-text-mid);
    font-size: 16px;
    box-shadow: var(--nd-shadow);
}

.nd-aboutPoints li::before {
    content: '♥';
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--nd-pink);
    font-size: 16px;
}

.nd-aboutIllustration {
    width: 100%;
    height: auto;
}

.nd-features {
    background: var(--nd-white);
}

.nd-featuresGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nd-featureCard {
    padding: 36px 24px;
    border: 1.5px solid var(--nd-border);
    border-radius: var(--nd-radius-lg);
    background: var(--nd-white);
    text-align: center;
    box-shadow: var(--nd-shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nd-featureCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--nd-shadow-lg);
}

.nd-featureIcon {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.nd-featureCard h3 {
    margin: 0 0 10px;
    font-family: var(--nd-font-round);
    font-size: 18px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-featureCard p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--nd-text-mid);
}

.nd-testimonials {
    background: var(--nd-pink-bg);
}

.nd-testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nd-testimonialCard {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--nd-radius-lg);
    background: var(--nd-white);
    box-shadow: var(--nd-shadow);
}

.nd-quoteMark {
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: var(--nd-pink-pale);
    pointer-events: none;
}

.nd-testimonialText {
    margin: 0 0 20px;
    padding-top: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--nd-text-mid);
}

.nd-testimonialAuthor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nd-testimonialAvatar {
    border-radius: 999px;
}

.nd-testimonialInfo {
    font-size: 16px;
    font-weight: 500;
    color: var(--nd-text-light);
}

.nd-howto {
    background: var(--nd-yellow-bg);
}

.nd-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nd-steps::before {
    content: '';
    position: absolute;
    top: 130px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--nd-pink-light), var(--nd-pink));
    z-index: 0;
}

.nd-stepCard {
    position: relative;
    z-index: 1;
    text-align: center;
}

.nd-stepNum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto 10px;
    padding: 4px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--nd-pink), var(--nd-red));
    color: var(--nd-white);
    font-family: var(--nd-font-round);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(244, 105, 138, 0.4);
}

.nd-stepIcon {
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
}

.nd-stepCard h3 {
    margin: 0 0 8px;
    font-family: var(--nd-font-round);
    font-size: 18px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-stepCard p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--nd-text-mid);
}

.nd-safety {
    background: var(--nd-pink-bg);
}

.nd-safetyHeader {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.nd-safetyHeader h2 {
    margin: 0;
    font-family: var(--nd-font-round);
    font-size: 28px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-safetyGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nd-safetyCard {
    padding: 32px 24px;
    border-radius: var(--nd-radius-lg);
    background: var(--nd-white);
    text-align: center;
    box-shadow: var(--nd-shadow);
}

.nd-safetyIcon {
    width: 150px;
    margin: 0 auto 20px;
}

.nd-safetyCard h3 {
    margin: 0 0 10px;
    font-family: var(--nd-font-round);
    font-size: 18px;
    font-weight: 700;
    color: var(--nd-red);
}

.nd-safetyCard p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--nd-text-mid);
}

.nd-safetyBadges {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.nd-safetyBadges span {
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--nd-pink-pale);
    color: var(--nd-pink);
    font-size: 11px;
    font-weight: 600;
}

.nd-pricing {
    background: var(--nd-cream);
}

.nd-pricingLead {
    max-width: 760px;
}

.nd-pricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.nd-planCard {
    position: relative;
    padding: 36px 28px;
    border: 2px solid var(--nd-border);
    border-radius: var(--nd-radius-lg);
    background: var(--nd-white);
    text-align: center;
    box-shadow: var(--nd-shadow);
}

.nd-planCard.is-featured {
    transform: scale(1.03);
    border-color: var(--nd-pink);
    box-shadow: var(--nd-shadow-lg);
}

.nd-planBadge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--nd-pink), var(--nd-red));
    color: var(--nd-white);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.nd-planIcon {
    margin-bottom: 10px;
    font-size: 28px;
}

.nd-planName {
    margin-bottom: 16px;
    font-family: var(--nd-font-round);
    font-size: 28px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-planPrice {
    margin-bottom: 4px;
    font-family: var(--nd-font-round);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--nd-text-dark);
}

.nd-planCurrency {
    font-size: 32px;
}

.nd-planPeriod {
    font-size: 14px;
    font-weight: 400;
    color: var(--nd-text-light);
}

.nd-planDivider {
    margin: 24px 0;
    border: none;
    border-top: 1px solid var(--nd-border);
}

.nd-planFeatures {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 28px;
    text-align: left;
}

.nd-planFeatures li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid #faf0f3;
    font-size: 16px;
    color: var(--nd-text-mid);
}

.nd-planFeatures li::before {
    content: '✓';
    flex-shrink: 0;
    color: var(--nd-pink);
    font-weight: 700;
}

.nd-planFeatures li.is-disabled {
    color: var(--nd-text-light);
}

.nd-planFeatures li.is-disabled::before {
    content: '✕';
    color: #d0babe;
}

.nd-faqBlock {
    background: var(--nd-white);
}

.nd-faqGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.nd-faqCard {
    padding: 24px 26px;
    border: 1.5px solid var(--nd-border);
    border-radius: var(--nd-radius-md);
    background: var(--nd-white);
    box-shadow: var(--nd-shadow);
}

.nd-faqCard h3 {
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    font-family: var(--nd-font-round);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--nd-text-dark);
}

.nd-faqCard h3::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--nd-pink-pale);
    color: var(--nd-pink);
    font-family: var(--nd-font-round);
    font-size: 14px;
    font-weight: 900;
}

.nd-faqCard p {
    margin: 0;
    color: var(--nd-text-mid);
    font-size: 15px;
    line-height: 1.8;
}

.nd-ctaBanner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--nd-pink) 0%, var(--nd-red) 100%);
}

.nd-ctaBanner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
}

.nd-ctaInner {
    position: relative;
    z-index: 1;
}

.nd-ctaLogoMark {
    display: block;
    margin-bottom: 10px;
    font-family: var(--nd-font-round);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.nd-ctaBanner h2 {
    margin: 0 0 16px;
    font-family: var(--nd-font-round);
    font-size: 36px;
    font-weight: 900;
    color: var(--nd-white);
}

.nd-ctaBanner p {
    margin: 0 0 36px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.nd-footer {
    padding-top: 60px;
    background: var(--nd-white);
    border-top: 1px solid var(--nd-border);
}

.nd-footerInner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.nd-footerLogo {
    margin-bottom: 12px;
}

.nd-footerBrand p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--nd-text-light);
}

.nd-footerLinks h4,
.nd-footerSocial h4 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--nd-text-dark);
}

.nd-footerLinks li {
    margin-bottom: 10px;
}

.nd-footerLinks a {
    font-size: 13px;
    color: var(--nd-text-light);
}

.nd-footerLinks a:hover {
    color: var(--nd-pink);
}

.nd-socialIcons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nd-socialIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--nd-pink-pale);
    font-size: 14px;
    font-weight: 700;
    color: var(--nd-text-dark);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nd-socialIcon:hover {
    transform: translateY(-2px);
    background: var(--nd-pink-light);
}

.nd-socialIconLogo {
    width: 42px;
    height: 42px;
}

.nd-socialLogoLine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    border-radius: 8px;
    background: #06c755;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.nd-socialLogoInstagram {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.nd-socialLogoInstagram::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid #fff;
    border-radius: 999px;
}

.nd-socialLogoInstagram::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #fff;
}

.nd-footerBottom {
    padding: 20px 24px;
    border-top: 1px solid var(--nd-border);
    text-align: center;
    font-size: 12px;
    color: var(--nd-text-light);
}

.nd-animTarget {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.nd-animTarget.visible {
    opacity: 1;
    transform: translateY(0);
}

.nd-featuresGrid .nd-featureCard:nth-child(1) {
    transition-delay: 0s;
}

.nd-featuresGrid .nd-featureCard:nth-child(2) {
    transition-delay: 0.1s;
}

.nd-featuresGrid .nd-featureCard:nth-child(3) {
    transition-delay: 0.2s;
}

.nd-steps .nd-stepCard:nth-child(1) {
    transition-delay: 0s;
}

.nd-steps .nd-stepCard:nth-child(2) {
    transition-delay: 0.1s;
}

.nd-steps .nd-stepCard:nth-child(3) {
    transition-delay: 0.2s;
}

.nd-steps .nd-stepCard:nth-child(4) {
    transition-delay: 0.3s;
}

.nd-safetyGrid .nd-safetyCard:nth-child(1) {
    transition-delay: 0s;
}

.nd-safetyGrid .nd-safetyCard:nth-child(2) {
    transition-delay: 0.1s;
}

.nd-safetyGrid .nd-safetyCard:nth-child(3) {
    transition-delay: 0.2s;
}

.nd-pricingGrid .nd-planCard:nth-child(1) {
    transition-delay: 0s;
}

.nd-pricingGrid .nd-planCard:nth-child(2) {
    transition-delay: 0.12s;
}

.nd-pricingGrid .nd-planCard:nth-child(3) {
    transition-delay: 0.24s;
}

.nd-testimonialsGrid .nd-testimonialCard:nth-child(1) {
    transition-delay: 0s;
}

.nd-testimonialsGrid .nd-testimonialCard:nth-child(2) {
    transition-delay: 0.12s;
}

.nd-testimonialsGrid .nd-testimonialCard:nth-child(3) {
    transition-delay: 0.24s;
}

@media (max-width: 1024px) {
    .nd-navLinks {
        display: none;
    }

    .nd-heroContent {
        max-width: 460px;
        padding: 60px 24px 60px 48px;
    }

    .nd-heroCatch {
        font-size: 36px;
    }

    .nd-featuresGrid {
        gap: 20px;
    }

    .nd-pricingGrid {
        gap: 16px;
    }

    .nd-planCard.is-featured {
        transform: scale(1.01);
    }

    .nd-footerInner {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .nd-nav {
        padding: 0 20px;
    }

    .nd-navActions {
        display: none;
    }

    .nd-hamburger {
        display: flex;
    }

    .nd-section {
        padding: 56px 0;
    }

    .nd-sectionTitle {
        margin-bottom: 32px;
        font-size: 22px;
    }

    .nd-sectionLead {
        margin: -14px auto 28px;
        font-size: 14px;
        text-align: left;
    }

    .nd-hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .nd-heroBg {
        display: none;
    }

    .nd-heroImageArea {
        position: relative;
        order: -1;
        width: 100%;
        height: 260px;
    }

    .nd-heroContent {
        max-width: 100%;
        padding: 36px 24px 48px;
        background: linear-gradient(180deg, #fde8ef 0%, #fff0e8 100%);
    }

    .nd-heroCatch {
        margin-bottom: 14px;
        font-size: 30px;
    }

    .nd-heroSub {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .nd-heroButtons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nd-about {
        padding: 56px 0;
    }

    .nd-aboutInner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nd-aboutImage {
        order: -1;
    }

    .nd-featuresGrid,
    .nd-testimonialsGrid,
    .nd-safetyGrid,
    .nd-pricingGrid,
    .nd-faqGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nd-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }

    .nd-steps::before {
        display: none;
    }

    .nd-safetyHeader h2 {
        font-size: 22px;
    }

    .nd-pricingGrid {
        max-width: 400px;
        margin: 0 auto;
    }

    .nd-planCard.is-featured {
        order: -1;
        transform: none;
    }

    .nd-ctaBanner {
        padding: 56px 0;
    }

    .nd-ctaBanner h2 {
        font-size: 26px;
    }

    .nd-ctaBanner p {
        font-size: 14px;
    }

    .nd-btnWhite {
        padding: 14px 36px;
        font-size: 16px;
    }

    .nd-footer {
        padding-top: 48px;
    }

    .nd-footerInner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }
}

@media (max-width: 374px) {
    .nd-heroCatch {
        font-size: 26px;
    }

    .nd-steps {
        grid-template-columns: 1fr;
    }

    .nd-sectionTitle {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nd-animTarget {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nd-btn,
    .nd-socialIcon,
    .nd-featureCard,
    .nd-hamburger span {
        transition: none;
    }
}
