/* ============================================================
   PIVOT Theme — Main CSS
   Design tokens + all section styles
   Font: Noto Sans JP (日本語) + Inter (英数字)
   ============================================================ */

/* ---- Design Tokens ---------------------------------------- */
:root {
    /* Background scale */
    --clr-bg-page:       #0A0F1D;
    --clr-bg-dark:       #0F1729;
    --clr-bg-mid:        #111A2C;
    --clr-bg-light:      #141D33;
    --clr-bg-lighter:    #16203A;

    /* Card/panel */
    --clr-card-1:        #1B2436;
    --clr-card-2:        #232D42;
    --clr-card-3:        #2A3344;
    --clr-card-4:        #2B3548;
    --clr-card-5:        #303B54;

    /* Text */
    --clr-text-main:     #F3F4F7;
    --clr-text-sub:      #C7CDDA;
    --clr-text-mute:     #8792A8;
    --clr-text-dim:      #5B6B85;
    --clr-text-faint:    #4A5568;

    /* Accents */
    --clr-teal:          #7FBFB2;
    --clr-teal-light:    #9FD8CC;
    --clr-lavender:      #AEB9D6;
    --clr-lavender-2:    #A7AFC2;
    --clr-lavender-3:    #A6A8C9;
    --clr-lavender-4:    #C7CDDA;
    --clr-rose:          #C9A8A0;
    --clr-rose-light:    #E6D9D2;

    /* Gradient shortcuts */
    --grad-accent:       linear-gradient(135deg, var(--clr-lavender), var(--clr-teal));
    --grad-accent-rev:   linear-gradient(135deg, var(--clr-teal), var(--clr-rose));
    --grad-divider:      linear-gradient(90deg, var(--clr-teal), var(--clr-rose));

    /* Typography */
    --font-sans:         'Noto Sans JP', 'Inter', sans-serif;
    --font-en:           'Inter', 'Noto Sans JP', sans-serif;

    /* Spacing scale */
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  40px;
    --space-xl:  64px;
    --space-2xl: 96px;
    --space-3xl: 130px;

    /* Section padding */
    --section-pad-v: clamp(80px, 10vw, 130px);
    --section-pad-h: clamp(20px, 4vw, 40px);

    /* Container */
    --container-max: 1200px;
    --container-narrow: 760px;

    /* Radius */
    --r-sm:  12px;
    --r-md:  16px;
    --r-lg:  20px;
    --r-xl:  24px;
    --r-pill: 9999px;

    /* Transitions */
    --dur-fast:   0.2s;
    --dur-base:   0.3s;
    --dur-slow:   0.5s;
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ----------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg-page);
    color: var(--clr-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: rgba(127, 191, 178, 0.35);
    color: var(--clr-text-main);
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ---- Accessibility ----------------------------------------- */
:focus-visible {
    outline: 2px solid var(--clr-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

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

/* ---- prefers-reduced-motion -------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ---- Keyframes --------------------------------------------- */
@keyframes floatSlowA {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(10px, -18px); }
}
@keyframes floatSlowB {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(-14px, 14px); }
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.45; }
    50%       { opacity: 0.85; }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerBtn {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ---- Scroll Reveal ----------------------------------------- */
[data-reveal] {
    opacity: 1;
}

@supports (animation-timeline: view()) {
    [data-reveal] {
        opacity: 0;
        animation: revealFadeUp 0.7s var(--ease-out) both;
        animation-timeline: view();
        animation-range: entry 0% cover 28%;
    }
}

/* Intersection Observer fallback (JS triggers this class) */
[data-reveal].is-visible {
    opacity: 1;
    animation: revealFadeUp 0.7s var(--ease-out) both;
}


/* ============================
   LAYOUT UTILITIES
   ============================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--section-pad-h);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--section-pad-v) var(--section-pad-h);
}

.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: var(--clr-text-main);
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title--inter {
    font-family: var(--font-en);
}

.section-divider {
    width: 44px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad-divider);
    margin: 0 auto 22px;
}

.section-header:not(.section-header--center) .section-divider {
    margin-left: 0;
}

.section-sub {
    color: var(--clr-text-mute);
    font-size: 15px;
    line-height: 1.85;
    max-width: 600px;
}

.section-header--center .section-sub {
    margin-inline: auto;
}


/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-out),
        opacity var(--dur-base);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 15.5px;
}

.btn-primary {
    background: var(--grad-accent);
    color: #0F1729;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(127, 191, 178, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(127, 191, 178, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--clr-text-main);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 11px 22px;
    font-size: 14px;
    background: var(--grad-accent);
    color: #0F1729;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(15, 23, 41, 0.18);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(127, 191, 178, 0.25);
}

.btn-submit {
    width: 100%;
    padding: 18px 34px;
    font-size: 16px;
    font-weight: 700;
    background: var(--grad-accent);
    color: #0F1729;
    box-shadow: 0 4px 20px rgba(127, 191, 178, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(127, 191, 178, 0.32);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* ============================
   HEADER
   ============================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(243, 244, 247, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 36, 54, 0.04);
    transition:
        background var(--dur-base),
        border-color var(--dur-base),
        box-shadow var(--dur-base);
}

.site-header.scrolled {
    background: rgba(243, 244, 247, 0.96);
    border-bottom-color: rgba(27, 36, 54, 0.1);
    box-shadow: 0 8px 24px rgba(10, 15, 29, 0.12);
}

.header-inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 40px);
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo img {
    height: 36px; /* 46pxから36pxへ縮小して隣の3本線とサイズ感を統一 */
    width: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.nav-link {
    color: rgb(27, 36, 54);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity var(--dur-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--clr-teal);
    border-radius: 1px;
    transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--dur-fast);
}

.hamburger:hover {
    background: rgba(27, 36, 54, 0.06);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgb(27, 36, 54);
    border-radius: 1px;
    transition:
        transform var(--dur-base) var(--ease-out),
        opacity var(--dur-base);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Menu ------------------------------------------ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 29, 0.7);
    opacity: 0;
    transition: opacity var(--dur-base);
}

.mobile-menu.is-open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--clr-card-1);
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.is-open .mobile-nav {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-text-main);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur-fast);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-link {
    color: var(--clr-text-sub);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--dur-fast);
}

.mobile-nav-link:hover {
    color: var(--clr-text-main);
}

.mobile-cta {
    margin-top: 24px;
    text-align: center;
}


/* ============================
   HERO SECTION
   ============================ */
.section-hero {
    position: relative;
    padding: clamp(120px, 16vw, 168px) var(--section-pad-h) clamp(90px, 10vw, 130px);
    overflow: hidden;
    background: radial-gradient(circle at 18% 8%, #16203A 0%, var(--clr-bg-page) 46%, #080C16 100%);
    text-align: center;
}

/* Background grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(174, 185, 214, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(174, 185, 214, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(at 50% 30%, black 20%, transparent 72%);
    pointer-events: none;
}

/* Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    animation: pulseGlow 9s ease-in-out infinite;
}

.hero-orb--teal {
    top: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(127, 191, 178, 0.16), transparent 70%);
}

.hero-orb--lavender {
    bottom: -140px;
    left: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(174, 185, 214, 0.14), transparent 70%);
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.hero-orb--rose {
    top: 36%;
    left: 32%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(201, 168, 160, 0.07), transparent 72%);
    filter: blur(14px);
}

/* Floating glass panels */
.hero-float {
    position: absolute;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    pointer-events: none;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
}

.hero-float--a {
    top: 14%;
    right: 8%;
    width: 180px;
    height: 120px;
    animation: floatSlowA 10s ease-in-out infinite;
}

.hero-float--b {
    top: 56%;
    right: 16%;
    width: 110px;
    height: 76px;
    background: linear-gradient(155deg, rgba(174, 185, 214, 0.12), rgba(255, 255, 255, 0.02));
    animation: floatSlowB 12s ease-in-out infinite;
}

.hero-float--c {
    top: 30%;
    left: 6%;
    width: 130px;
    height: 90px;
    background: linear-gradient(155deg, rgba(127, 191, 178, 0.1), rgba(255, 255, 255, 0.02));
    animation: floatSlowB 13s ease-in-out 2s infinite;
}

/* Dots */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-dot--teal {
    top: 8%;
    left: 14%;
    width: 8px;
    height: 8px;
    background: var(--clr-teal);
    filter: drop-shadow(0 0 16px rgba(127, 191, 178, 0.6));
    animation: floatSlowA 7s ease-in-out infinite;
}

.hero-dot--lavender {
    top: 66%;
    right: 26%;
    width: 6px;
    height: 6px;
    background: var(--clr-lavender);
    filter: drop-shadow(0 0 14px rgba(174, 185, 214, 0.6));
    animation: floatSlowB 9s ease-in-out 1s infinite;
}

.hero-ring {
    position: absolute;
    top: 22%;
    right: 38%;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(174, 185, 214, 0.14);
    border-radius: 50%;
    animation: spinSlow 60s linear infinite;
    pointer-events: none;
}

/* Hero content */
.hero-content {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.hero-logo {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(174, 185, 214, 0.28);
    color: var(--clr-lavender-4);
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

.hero-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-teal);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(36px, 6.4vw, 68px);
    line-height: 1.28;
    font-weight: 900;
    color: var(--clr-text-main);
    margin-bottom: 26px;
    letter-spacing: 0.01em;
}

.hero-lead {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.9;
    color: var(--clr-text-sub);
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 18px;
}

.hero-note {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--clr-text-mute);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 44px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E5EC;
    font-size: 13.5px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}


/* ============================
   PROBLEMS SECTION
   ============================ */
.section--problems {
    background: var(--clr-bg-dark);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 52px;
}

.problem-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.016));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-md);
    padding: 24px 26px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition:
        border-color var(--dur-base),
        transform var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base);
}

.problem-card:hover {
    border-color: rgba(127, 191, 178, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.problem-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
}

.problem-dot--teal {
    background: var(--clr-teal);
    filter: drop-shadow(0 0 10px rgba(127, 191, 178, 0.35));
}

.problem-dot--rose {
    background: var(--clr-rose);
    filter: drop-shadow(0 0 10px rgba(201, 168, 160, 0.35));
}

.problem-text {
    color: #D6DAE4;
    font-size: 15px;
    line-height: 1.75;
}

.problems-close {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--clr-text-main);
    font-weight: 500;
    line-height: 1.8;
    max-width: 760px;
    margin-inline: auto;
}


/* ============================
   SERVICES SECTION
   ============================ */
.section--services {
    background: var(--clr-bg-page);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.service-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition:
        border-color 0.35s,
        transform 0.35s var(--ease-out),
        box-shadow 0.35s;
}

.service-card:hover {
    border-color: rgba(127, 191, 178, 0.32);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.service-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    background: rgba(127, 191, 178, 0.12);
    border: 1px solid rgba(127, 191, 178, 0.28);
}

.service-num--teal {
    color: var(--clr-teal);
}

.service-num--rose {
    color: var(--clr-rose);
}

.service-title {
    color: var(--clr-text-main);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-desc {
    color: var(--clr-lavender-2);
    font-size: 14px;
    line-height: 1.85;
}


/* ============================
   MV PRODUCTION SECTION
   ============================ */
.section--mv {
    background: linear-gradient(180deg, var(--clr-bg-dark) 0%, #121B30 100%);
    position: relative;
    overflow: hidden;
}

.mv-bg-orb {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(rgba(127, 191, 178, 0.1), transparent 70%);
    pointer-events: none;
}

.mv-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: var(--r-pill);
    background: rgba(127, 191, 178, 0.1);
    border: 1px solid rgba(127, 191, 178, 0.3);
    color: var(--clr-teal-light);
    font-family: var(--font-en);
    font-size: 12.5px;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 22px;
}

.mv-sub {
    max-width: 680px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.plan-card--featured {
    background: linear-gradient(160deg, rgba(174, 185, 214, 0.1), rgba(127, 191, 178, 0.05));
    border-color: rgba(127, 191, 178, 0.4);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: var(--r-pill);
    background: var(--grad-accent);
    color: #0F1729;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.plan-name {
    color: var(--clr-text-main);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 8px;
}

.plan-price {
    margin-bottom: 24px;
    line-height: 1;
}

.plan-price-yen {
    color: var(--clr-teal);
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
}

.plan-price-num {
    color: var(--clr-text-main);
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.plan-price-note {
    color: var(--clr-text-mute);
    font-size: 13px;
    margin-left: 4px;
}

.plan-features {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--clr-text-sub);
    font-size: 14px;
    line-height: 1.6;
}

.plan-check {
    color: var(--clr-teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-recommend {
    color: var(--clr-text-mute);
    font-size: 13px;
    line-height: 1.7;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--r-sm);
    margin-bottom: 24px;
    border-left: 2px solid var(--clr-teal);
}

.plan-cta {
    margin-top: auto;
    text-align: center;
}

/* Options */
.mv-options {
    margin-top: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 34px clamp(22px, 4vw, 40px);
}

.mv-options-title {
    color: var(--clr-text-sub);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mv-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.mv-option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-mute);
    font-size: 14px;
}

.mv-option-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-teal);
    flex-shrink: 0;
}

.mv-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
}


/* ============================
   CREATIVE SAMPLES SECTION
   ============================ */
.section--samples {
    background: var(--clr-bg-page);
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.sample-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--clr-bg-mid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s,
        border-color 0.35s;
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(127, 191, 178, 0.25);
}

.sample-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.sample-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 15, 29, 0.6) 100%);
}

.sample-category {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: rgba(10, 15, 29, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--clr-teal-light);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    backdrop-filter: blur(4px);
}

.sample-body {
    padding: 22px 24px 26px;
}

.sample-title {
    color: var(--clr-text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.sample-desc {
    color: var(--clr-text-mute);
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sample-link {
    color: var(--clr-teal);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}

.sample-link:hover {
    gap: 8px;
    opacity: 0.8;
}


/* ============================
   PROCESS SECTION
   ============================ */
.section--process {
    background: var(--clr-bg-dark);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

.process-step {
    position: relative;
    padding: 30px 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-md);
    transition:
        transform var(--dur-base) var(--ease-out),
        border-color var(--dur-base);
    margin-right: 0;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(127, 191, 178, 0.3);
}

.process-step-num {
    margin-bottom: 16px;
}

.process-step-num-inner {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: rgba(127, 191, 178, 0.1);
    border: 1px solid rgba(127, 191, 178, 0.3);
    color: var(--clr-teal-light);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.process-step-title {
    color: var(--clr-text-main);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.process-step-desc {
    color: var(--clr-lavender-2);
    font-size: 14px;
    line-height: 1.8;
}

/* Connector arrow between steps */
.process-list {
    gap: 16px;
}

@media (min-width: 768px) {
    .process-list {
        display: flex;
        align-items: stretch;
    }

    .process-step {
        flex: 1;
        position: relative;
    }

    .process-connector {
        display: flex;
        align-items: center;
        color: var(--clr-teal);
        font-size: 20px;
        opacity: 0.5;
        flex-shrink: 0;
        margin-top: 30px;
    }

    .process-connector::before {
        content: '→';
    }
}

@media (max-width: 767px) {
    .process-connector {
        display: none;
    }
}


/* ============================
   REASONS SECTION
   ============================ */
.section--reasons {
    background: var(--clr-bg-page);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.reason-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-lg);
    padding: 34px 28px;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.reason-num {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 900;
    color: rgba(127, 191, 178, 0.15);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 16px;
}

.reason-title {
    color: var(--clr-text-main);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

.reason-desc {
    color: var(--clr-lavender-2);
    font-size: 14px;
    line-height: 1.85;
}


/* ============================
   FAQ SECTION
   ============================ */
.section--faq {
    background: var(--clr-bg-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--dur-base);
}

.faq-item:hover,
.faq-item:has(.faq-toggle[aria-expanded="true"]) {
    border-color: rgba(127, 191, 178, 0.25);
}

.faq-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 24px;
    text-align: left;
    color: var(--clr-text-main);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.6;
    transition: background var(--dur-fast);
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-q-label {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(127, 191, 178, 0.12);
    border: 1px solid rgba(127, 191, 178, 0.28);
    color: var(--clr-teal);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-lavender);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.35s var(--ease-out);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer:not([hidden]) {
    animation: faqOpen 0.35s var(--ease-out);
}

.faq-answer-inner {
    display: flex;
    gap: 16px;
    padding: 0 24px 22px;
}

.faq-a-label {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(174, 185, 214, 0.1);
    border: 1px solid rgba(174, 185, 214, 0.2);
    color: var(--clr-lavender);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a-text {
    color: var(--clr-text-mute);
    font-size: 14.5px;
    line-height: 1.85;
    padding-top: 4px;
}


/* ============================
   CONTACT SECTION
   ============================ */
.section--contact {
    background: linear-gradient(160deg, var(--clr-bg-dark) 0%, #0D1624 100%);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-lead {
    color: var(--clr-lavender-2);
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.contact-note {
    background: linear-gradient(135deg, rgba(127, 191, 178, 0.08), rgba(201, 168, 160, 0.07));
    border: 1px solid rgba(201, 168, 160, 0.24);
    border-radius: 14px;
    padding: 18px 20px;
    color: var(--clr-rose-light);
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-tag {
    padding: 7px 16px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-text-mute);
    font-size: 13px;
}

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-xl);
    padding: clamp(28px, 4vw, 44px);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-sub);
    font-size: 14px;
    font-weight: 500;
}

.form-required {
    padding: 2px 8px;
    border-radius: var(--r-pill);
    background: rgba(201, 168, 160, 0.15);
    color: var(--clr-rose);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.form-optional {
    padding: 2px 8px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text-mute);
    font-size: 11px;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    color: var(--clr-text-main);
    font-family: var(--font-sans);
    font-size: 15px;
    transition:
        border-color var(--dur-base),
        box-shadow var(--dur-base),
        background var(--dur-base);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--clr-text-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(127, 191, 178, 0.5);
    box-shadow: 0 0 0 3px rgba(127, 191, 178, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-input.is-error,
.form-textarea.is-error {
    border-color: rgba(201, 168, 160, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 168, 160, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238792A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-error-summary {
    background: rgba(201, 168, 160, 0.08);
    border: 1px solid rgba(201, 168, 160, 0.3);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    color: var(--clr-rose-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-success {
    text-align: center;
    padding: 60px 30px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(127, 191, 178, 0.15);
    border: 2px solid rgba(127, 191, 178, 0.4);
    color: var(--clr-teal);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-title {
    color: var(--clr-text-main);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-desc {
    color: var(--clr-text-mute);
    font-size: 14px;
    line-height: 1.8;
}


/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--clr-bg-page);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(56px, 8vw, 96px) var(--section-pad-h) 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 56px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--clr-text-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 8px;
    max-width: 340px;
}

.footer-company {
    color: var(--clr-text-mute);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-sub {
    color: var(--clr-text-dim);
    font-size: 12.5px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-link {
    color: var(--clr-text-mute);
    font-size: 14px;
    transition: color var(--dur-fast);
}

.footer-nav-link:hover {
    color: var(--clr-text-main);
}

.footer-bottom {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
    color: var(--clr-text-dim);
    font-size: 12.5px;
    font-family: var(--font-en);
}


/* ============================
   PAGE (page.php)
   ============================ */
.page-main {
    padding: 80px var(--section-pad-h);
}

.page-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-body {
    color: var(--clr-text-sub);
    font-size: 15px;
    line-height: 1.85;
    max-width: 760px;
}

.page-body h2 {
    font-size: 22px;
    color: var(--clr-text-main);
    margin: 32px 0 12px;
}

.page-body p {
    margin-bottom: 16px;
}


/* ============================
   RESPONSIVE
   ============================ */

/* Tablet ---------------------------------------------------- */
@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
}

/* Mobile ---------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-pad-v: clamp(60px, 12vw, 90px);
    }

    /* Header */
    .primary-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-float,
    .hero-ring,
    .hero-dot {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Process */
    .process-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    /* Plans */
    .plans-grid {
        grid-template-columns: 1fr;
    }

    /* Samples */
    .samples-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Problems */
    .problems-grid {
        grid-template-columns: 1fr;
    }

    /* Reasons */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
}

/* Very small */
@media (max-width: 375px) {
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ============================================================
   VIDEO MODAL — 動画モーダルプレイヤー
   ============================================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.video-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-modal.is-open .video-modal-overlay {
    opacity: 1;
}

.video-modal-inner {
    position: relative;
    z-index: 1;
    width: min(900px, 92vw);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.video-modal.is-open .video-modal-inner {
    transform: scale(1);
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-modal-content {
    width: 100%;
    height: 100%;
}

/* Sample card — video play button */
.sample-card {
    position: relative;
}

.sample-card--has-video .sample-thumb {
    cursor: pointer;
}

.sample-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.sample-play-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

.sample-play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.sample-play-btn:hover .sample-play-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

/* Video placeholder notice */
.sample-video-notice {
    position: absolute;
    bottom: 52px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
}

/* ============================================================
   LP PAGES — 各サービス詳細LPページ用スタイル
   ============================================================ */
.section--lp-detail, .lp-page-section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #0A0F1D;
    position: relative;
    color: #F3F4F7;
}

.lp-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px);
}

.lp-detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(127,191,178,0.15), rgba(174,185,214,0.1));
    border: 1px solid rgba(127,191,178,0.3);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #7FBFB2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lp-detail-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #F3F4F7;
    line-height: 1.3;
    margin: 0 0 10px;
}

.lp-detail-sub {
    font-size: 15px;
    color: #7FBFB2;
    margin: 0 0 20px;
    font-weight: 500;
}

.lp-detail-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #AEB9D6;
    line-height: 1.8;
    margin: 20px 0 0;
}

.lp-detail-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #F3F4F7;
    margin: 0 0 18px;
    padding-top: 32px;
}

.lp-detail-pain-points, .lp-detail-services, .lp-detail-flow, .lp-detail-reasons {
    margin-top: 24px;
}

.lp-pain-list, .lp-reason-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.lp-pain-list li, .lp-reason-list li {
    padding: 12px 16px 12px 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    font-size: 14px;
    color: #D4D9E8;
    position: relative;
    line-height: 1.6;
}

.lp-pain-list li::before {
    content: '!';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(201,168,160,0.2);
    border: 1px solid rgba(201,168,160,0.4);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #C9A8A0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lp-reason-list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7FBFB2;
    font-weight: 700;
    font-size: 14px;
}

.lp-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.lp-service-item {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #F3F4F7;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.lp-flow-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 90px;
}

.lp-flow-num {
    font-size: 11px;
    font-weight: 700;
    color: #7FBFB2;
    letter-spacing: 0.05em;
}

.lp-flow-label {
    font-size: 12px;
    color: #D4D9E8;
    text-align: center;
    font-weight: 500;
}

.lp-flow-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    flex-shrink: 0;
}

.lp-detail-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #AEB9D6, #7FBFB2);
    color: #0F1729 !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-cta-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.lp-cta-btn-sub {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #F3F4F7 !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-cta-btn-sub:hover {
    border-color: rgba(127,191,178,0.5);
    background: rgba(127,191,178,0.06);
}

@media (max-width: 600px) {
    .lp-service-grid { grid-template-columns: 1fr 1fr; }
    .lp-flow-steps { flex-direction: column; }
    .lp-flow-arrow { transform: rotate(90deg); }
    .lp-detail-cta { flex-direction: column; align-items: stretch; }
}

