/* ================================================
   ココトモ カスタマー LP — Modern Stylesheet v3.0
   Mobile-first responsive + image sections
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap');

:root {
    /* Brand Colors */
    --lp-green: #06C755;
    --lp-green-dark: #00b94a;
    --lp-green-grad: linear-gradient(135deg, #06C755 0%, #04a046 100%);
    --lp-blue: #4A90D9;
    --lp-blue-dark: #3a7cc0;
    --lp-purple: #7C5CFC;
    --lp-purple-dark: #6a4ce0;
    --lp-accent: #FF8C42;

    /* Backgrounds & surfaces */
    --lp-bg-body: #f4f6f8;
    --lp-glass: rgba(255, 255, 255, 0.7);
    --lp-glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --lp-text-main: #2D3436;
    --lp-text-sub: #636E72;

    /* Spacing & Layout */
    --lp-radius-lg: 24px;
    --lp-radius-md: 16px;
    --lp-radius-sm: 8px;
    --lp-container-width: 1140px;

    /* Shadows */
    --lp-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --lp-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --lp-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --lp-shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* ================================================
   Base
   ================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", sans-serif;
    color: var(--lp-text-main);
    background-color: var(--lp-bg-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(6, 199, 85, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 217, 0.03) 0%, transparent 20%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    font-feature-settings: "palt";
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.3; letter-spacing: -0.02em; }
p { margin-bottom: 1em; color: var(--lp-text-sub); }

/* ================================================
   Utilities
   ================================================ */
.lp-container {
    width: 100%;
    max-width: var(--lp-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.lp-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-section-light {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.8) 100%);
}

.lp-glass-card {
    background: var(--lp-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--lp-glass-border);
    box-shadow: var(--lp-shadow-glass);
    border-radius: var(--lp-radius-lg);
}

.lp-text-gradient {
    background: var(--lp-green-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section headings (unified) */
.lp-section-heading {
    font-size: 2rem;
    margin-bottom: 16px;
}
.lp-section-sub {
    color: var(--lp-text-sub);
    font-size: 1rem;
}

/* Responsive utilities */
.sp-only { display: none; }
.pc-only { display: inline; }

/* Fade-in animation */
.lp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   Header
   ================================================ */
.lp-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: var(--lp-container-width);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.lp-header.scrolled {
    top: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-logo {
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-text-main);
    white-space: nowrap;
}
.lp-logo i { color: var(--lp-green); font-size: 1.2rem; }

.lp-header-btn {
    background: var(--lp-green);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
    white-space: nowrap;
}
.lp-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
    background: var(--lp-green-dark);
}

/* ================================================
   Hero
   ================================================ */
.lp-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lp-hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}
.lp-shape-1 { top: -10%; left: -10%; width: 400px; height: 400px; background: rgba(6, 199, 85, 0.15); }
.lp-shape-2 { bottom: 10%; right: -5%; width: 500px; height: 500px; background: rgba(74, 144, 217, 0.12); }

.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lp-hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.lp-hero-text p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f9ed;
    color: var(--lp-green-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 199, 85, 0.15);
}

.lp-hero-actions { display: flex; gap: 16px; }

.lp-btn-main {
    background: var(--lp-green-grad);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 199, 85, 0.35);
}

/* Hero phone visual */
.lp-hero-phone-container {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease-out;
}
.lp-hero-phone-container:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.lp-hero-phone {
    width: 260px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    position: relative;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

.lp-hero-illust {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 200px;
    border-radius: 20px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: float 7s ease-in-out infinite 1s;
}

.lp-hero-pop {
    position: absolute;
    top: 18%;
    right: -80px;
    background: white;
    padding: 10px 16px;
    border-radius: 16px 16px 16px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--lp-text-main);
    z-index: 30;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s backwards, float 6s ease-in-out infinite 1s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0,0,0,0.05);
}
.lp-hero-pop i { color: var(--lp-accent); font-size: 1.1rem; }

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.5) translate(0, 20px); }
    100% { opacity: 1; transform: scale(1) translate(0, 0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ================================================
   Before / After Section (IMG_5960)
   ================================================ */
.lp-before-after-section {
    padding: 60px 0;
    background: white;
}
.lp-before-after-img-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}
.lp-before-after-img {
    width: 100%;
    display: block;
}

/* ================================================
   Robot Banner (IMG_5961)
   ================================================ */
.lp-robot-banner {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-md);
}
.lp-robot-banner-img {
    width: 100%;
    display: block;
}

/* ================================================
   Features (3 cards grid)
   ================================================ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    padding: 36px 24px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.lp-feature-card:hover { transform: translateY(-8px); }
.lp-feature-card:hover::before { left: 100%; }

.lp-feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}
.lp-icon-green { background: #e6f9ed; color: var(--lp-green); }
.lp-icon-blue  { background: #eef4fb; color: var(--lp-blue);  }
.lp-icon-purple{ background: #f3f0ff; color: var(--lp-purple);}

.lp-feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.lp-feature-img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* ================================================
   System Image (IMG_5962)
   ================================================ */
.lp-system-img-wrap {
    max-width: 800px;
    margin: 0 auto 48px;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}
.lp-system-img {
    width: 100%;
    display: block;
}

/* ================================================
   Steps
   ================================================ */
.lp-steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.lp-step-card:hover { transform: translateY(-8px); }

.lp-step-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}
.lp-step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}
.lp-step-num-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--lp-accent);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
}
.lp-step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.lp-step-card p { font-size: 0.9rem; color: var(--lp-text-sub); line-height: 1.5; }

/* ================================================
   Two-column layout (Dashboard + Analytics)
   ================================================ */
.lp-two-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.lp-two-col-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.lp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}
.lp-check-list i { color: var(--lp-green); flex-shrink: 0; }
.lp-check-purple i { color: var(--lp-purple); }

/* Dashboard Mock */
.lp-dash-mock {
    background: white;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.lp-dash-mock-bar {
    background: #f8f9fa;
    padding: 10px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #eee;
}
.lp-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.lp-dash-mock-body {
    padding: 20px;
}
.lp-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.lp-mock-stat {
    background: #f8f9fa;
    padding: 12px 8px;
    border-radius: 10px;
    text-align: center;
}
.lp-mock-stat-active {
    background: #e6f9ed;
}
.lp-mock-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lp-text-main);
}
.lp-mock-stat-active .lp-mock-stat-num { color: var(--lp-green); }
.lp-mock-stat-active .lp-mock-stat-label { color: var(--lp-green-dark); }
.lp-mock-stat-label {
    font-size: 0.7rem;
    color: var(--lp-text-sub);
}
.lp-mock-chart {
    height: 100px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-end;
    padding: 0 16px;
    gap: 8px;
}
.lp-mock-bar-item {
    flex: 1;
    background: var(--lp-blue);
    border-radius: 4px 4px 0 0;
}
.lp-mock-tabs {
    display: flex;
    gap: 8px;
}
.lp-mock-tab {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--lp-text-sub);
}

/* Analytics Card */
.lp-analytics-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 24px;
}
.lp-analytics-heading {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.lp-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lp-tag {
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}
.lp-tag-purple { background: #f3f0ff; color: var(--lp-purple); }
.lp-tag-blue   { background: #eef4fb; color: var(--lp-blue); }
.lp-tag-green  { background: #e6f9ed; color: var(--lp-green); }
.lp-tag-gray   { background: #f9f9f9; color: var(--lp-text-sub); }
.lp-tag-orange { background: #fff5ec; color: var(--lp-accent); }

.lp-score-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}
.lp-score-label {
    width: 36px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}
.lp-score-bar {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}
.lp-score-fill { height: 100%; border-radius: 5px; }
.lp-score-hot { background: linear-gradient(90deg, #ff5f57, #ffbd2e); }
.lp-score-warm { background: #ccc; }
.lp-score-val { font-weight: 800; font-size: 0.9rem; }

/* ================================================
   Hierarchy
   ================================================ */
.lp-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
    gap: 12px;
}
.lp-hier-card {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.lp-hier-orange { border-left: 5px solid var(--lp-accent); }
.lp-hier-blue   { border-left: 5px solid var(--lp-blue); }
.lp-hier-green  { border-left: 5px solid var(--lp-green); }

.lp-hier-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.lp-hier-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.lp-hier-card p { margin: 0; font-size: 0.9rem; }
.lp-hier-arrow { color: #ddd; font-size: 1.2rem; }

/* ================================================
   Footer
   ================================================ */
.lp-footer {
    background: white;
    padding: 36px 0;
    border-top: 1px solid #eee;
    text-align: center;
}
.lp-footer-brand {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ================================================
   TABLET (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    .sp-only { display: block; }
    .pc-only { display: none; }
    br.sp-only { display: block; }
    br.pc-only { display: none; }

    .lp-section { padding: 60px 0; }
    .lp-section-heading { font-size: 1.7rem; text-align: center; }

    /* Header */
    .lp-header { width: 94%; padding: 8px 14px; }
    .lp-logo { font-size: 0.9rem; }
    .lp-header-btn { padding: 7px 14px; font-size: 0.8rem; }

    /* Hero */
    .lp-hero {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: auto;
        text-align: center;
    }
    .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lp-hero-text h1 { font-size: 1.8rem; }
    .lp-hero-text p { font-size: 0.95rem; margin-bottom: 24px; }
    .lp-hero-actions { justify-content: center; }
    .lp-btn-main { padding: 12px 28px; font-size: 0.95rem; }

    .lp-hero-phone-container {
        transform: none;
        margin-top: 10px;
    }
    .lp-hero-phone-container:hover { transform: none; }
    .lp-hero-phone { width: 200px; }
    .lp-hero-illust { width: 140px; right: 10px; bottom: -20px; }

    .lp-hero-pop {
        top: auto;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.75rem;
        padding: 8px 12px;
        border-radius: 12px;
    }

    /* Features grid → 1 column */
    .lp-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lp-feature-card { padding: 28px 20px; }

    /* Robot banner */
    .lp-robot-banner {
        max-width: 100%;
        margin-bottom: 28px;
        border-radius: var(--lp-radius-md);
    }

    /* System image */
    .lp-system-img-wrap {
        margin-bottom: 32px;
        border-radius: var(--lp-radius-md);
    }

    /* Steps → vertical */
    .lp-steps-container {
        flex-direction: column;
        gap: 16px;
    }
    .lp-step-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 16px;
        gap: 16px;
    }
    .lp-step-image-wrapper {
        width: 70px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }
    .lp-step-num-badge { width: 26px; height: 26px; font-size: 0.8rem; top: -6px; right: -6px; }
    .lp-step-card h3 { font-size: 1rem; margin-bottom: 4px; }
    .lp-step-card p { font-size: 0.85rem; margin-bottom: 0; }

    /* Two-column → stack */
    .lp-two-col,
    .lp-two-col-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lp-two-col-text { text-align: center; }
    .lp-two-col-text .lp-section-heading { text-align: center !important; }
    .lp-check-list { align-items: flex-start; padding-left: 16px; }

    /* Analytics - reverse order on mobile (text first) */
    .lp-two-col-reverse .lp-two-col-visual { order: 2; }
    .lp-two-col-reverse .lp-two-col-text { order: 1; }

    /* Dashboard mock */
    .lp-dash-mock-body { padding: 16px; }
    .lp-mock-stat-num { font-size: 1rem; }
    .lp-mock-chart { height: 80px; }

    /* Hierarchy */
    .lp-hier-card { padding: 18px 16px; gap: 14px; }
    .lp-hier-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .lp-hier-card h3 { font-size: 0.95rem; }
    .lp-hier-card p { font-size: 0.85rem; }

    /* CTA */
    #contact { padding: 70px 0 !important; }
    #contact h2 { font-size: 1.6rem !important; }
    #contact p { font-size: 0.95rem !important; }

    /* Before/After image */
    .lp-before-after-section { padding: 40px 0; }
    .lp-before-after-img-wrap { border-radius: var(--lp-radius-md); }
}

/* ================================================
   SMARTPHONE (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .lp-container { padding: 0 14px; }
    .lp-section { padding: 48px 0; }
    .lp-section-heading { font-size: 1.45rem; }
    .lp-section-sub { font-size: 0.88rem; }

    .lp-header { top: 8px; }
    .lp-header-btn { padding: 6px 12px; font-size: 0.75rem; }
    .lp-logo { font-size: 0.85rem; gap: 4px; }
    .lp-logo i { font-size: 1rem; }

    .lp-hero { padding-top: 100px; padding-bottom: 30px; }
    .lp-hero-text h1 {
        font-size: 1.5rem;
        word-break: auto-phrase;
    }
    .lp-hero-text p { font-size: 0.88rem; }
    .lp-hero-badge { font-size: 0.75rem; padding: 6px 12px; margin-bottom: 14px; }
    .lp-btn-main { padding: 11px 24px; font-size: 0.88rem; }

    .lp-hero-phone { width: 170px; }
    .lp-hero-illust { width: 110px; right: 20px; bottom: -15px; }
    .lp-hero-pop { font-size: 0.7rem; padding: 6px 10px; }

    .lp-feature-card { padding: 24px 16px; }
    .lp-feature-icon-box { width: 54px; height: 54px; font-size: 1.3rem; margin-bottom: 14px; }
    .lp-feature-card h3 { font-size: 1.05rem; }
    .lp-feature-card p { font-size: 0.88rem; }

    .lp-before-after-section { padding: 32px 0; }

    .lp-step-card { padding: 14px; gap: 12px; }
    .lp-step-image-wrapper { width: 60px; height: 60px; }

    .lp-mock-stats { gap: 6px; }
    .lp-mock-stat { padding: 8px 4px; }
    .lp-mock-stat-num { font-size: 0.9rem; }
    .lp-mock-stat-label { font-size: 0.6rem; }
    .lp-mock-chart { height: 60px; gap: 4px; padding: 0 8px; }
    .lp-mock-tab { padding: 8px 4px; font-size: 0.65rem; }

    .lp-analytics-card { padding: 18px; }
    .lp-analytics-heading { font-size: 0.9rem; }
    .lp-tag { font-size: 0.72rem; padding: 4px 10px; }
    .lp-score-label { font-size: 0.72rem; width: 30px; }
    .lp-score-val { font-size: 0.8rem; }

    .lp-hier-card { padding: 14px; gap: 12px; }
    .lp-hier-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; }
    .lp-hier-card h3 { font-size: 0.9rem; }
    .lp-hier-card p { font-size: 0.8rem; }

    #contact { padding: 50px 0 !important; }
    #contact h2 { font-size: 1.4rem !important; }
    #contact p { font-size: 0.88rem !important; }
    #contact .lp-btn-main { padding: 12px 24px !important; font-size: 0.88rem; }

    .lp-footer { padding: 28px 0; }
    .lp-footer-brand { font-size: 0.95rem; }
}
