@charset "utf-8";

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0057FF;
    --primary-dark: #003FBF;
    --accent: #FF5722;
    --accent-light: #FF8A65;
    --success: #00BFA5;
    --dark: #0A0F1E;
    --dark-mid: #1A2035;
    --mid: #2E3A59;
    --light: #F0F4FF;
    --white: #FFFFFF;
    --gray: #8899BB;
    --gray-light: #E8EDF7;
    --gradient-main: linear-gradient(135deg, #0057FF 0%, #00BFA5 100%);
    --gradient-dark: linear-gradient(135deg, #0A0F1E 0%, #1A2A5E 100%);
    --shadow-card: 0 8px 40px rgba(0, 87, 255, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== EMOJI IMAGE UTILITY ===== */
.icon-emoji {
    height: 1.2em;
    width: auto;
    vertical-align: -0.2em;
    display: inline-block;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 87, 255, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--primary);
    position: relative;
}

.section-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-lead {
    font-size: 17px;
    color: #4A5580;
    line-height: 1.8;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    padding: 18px 40px;
    border-radius: 100px;
    box-shadow: 0 6px 30px rgba(255, 87, 34, 0.4);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.5);
}

.btn-cta-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 100px;
    border: 2px solid var(--primary);
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-cta-sub:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-icon {
    margin-right: 8px;
}

/* ===== FLOATING CTA BAR ===== */
.float-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    z-index: 9999;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.float-bar.visible {
    transform: translateY(0);
}

.float-bar p {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.float-bar strong {
    color: #FFD54F;
}

.float-btn {
    font-size: 14px;
    padding: 12px 24px;
}

/* ===== HERO ===== */
.hero {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
    }
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .underline-accent {
    position: relative;
    color: var(--white);
}

.hero-title .underline-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-sub strong {
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-btn-sub {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num span {
    font-size: 18px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ===== HERO RIGHT PANEL ===== */
.hero-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(12px);
}

.hero-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 87, 34, 0.08);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.5;
}

.pain-list li::before {
    content: '';
    background: url('https://www.z-sup.com/wp/wp-content/uploads/lp3icon02.png') no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-arrow {
    text-align: center;
    margin: 12px 0;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

.hero-arrow img {
    width: 28px;
    height: 28px;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.solution-box {
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
}

.solution-box p {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 96px 0;
    background: var(--light);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    border-top: 4px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF5722, #FF8A65);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 87, 255, 0.15);
}

.problem-icon {
    margin-bottom: 16px;
}

.problem-icon img {
    width: 40px;
    height: 40px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-card p {
    font-size: 14px;
    color: #5A6880;
    line-height: 1.75;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 96px 0;
    background: var(--white);
}

.solution-intro {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap img {
    width: 26px;
    height: 26px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-content p {
    font-size: 14px;
    color: #5A6880;
    line-height: 1.75;
}

/* ===== SUBSIDY SECTION ===== */
.subsidy-section {
    padding: 96px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.subsidy-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(0, 87, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.subsidy-section .section-label {
    background: rgba(0, 87, 255, 0.2);
    color: #7CB3FF;
}

.subsidy-section .section-title {
    color: var(--white);
}

.subsidy-section .section-title em {
    color: #7CB3FF;
}

.subsidy-section .section-lead {
    color: rgba(255, 255, 255, 0.65);
}

.subsidy-big {
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), rgba(0, 191, 165, 0.15));
    border: 1px solid rgba(0, 87, 255, 0.4);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.subsidy-big::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: url('https://www.z-sup.com/wp/wp-content/uploads/lp3icon12.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.subsidy-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.subsidy-amount-label {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    margin-bottom: 24px;
}

.subsidy-detail {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.subsidy-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.subsidy-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.subsidy-step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 87, 255, 0.3);
    line-height: 1;
    margin-bottom: 8px;
}

.subsidy-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.subsidy-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== COMPARISON ===== */
.compare-section {
    padding: 96px 0;
    background: var(--light);
}

.compare-intro {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.compare-table th {
    padding: 30px 24px 24px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--gray-light);
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table th.col-zoho {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.compare-table th.col-zoho::before {
    content: 'おすすめ';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent) url('https://www.z-sup.com/wp/wp-content/uploads/lp3icon13.png') no-repeat 6px center;
    background-size: 10px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px 4px 22px;
    border-radius: 100px;
    white-space: nowrap;
}

.compare-table th.col-other {
    background: #F5F7FA;
    color: #8899BB;
}

.compare-table td {
    padding: 18px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
    color: #4A5580;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.compare-table td.zoho-td {
    background: rgba(0, 87, 255, 0.04);
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.compare-table td.bad {
    color: #FF5722;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: rgba(0, 87, 255, 0.03);
}

.compare-table tr:hover td.zoho-td {
    background: rgba(0, 87, 255, 0.08);
}

/* ===== FLOW SECTION ===== */
.flow-section {
    padding: 96px 0;
    background: var(--white);
}

.flow-intro {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 48px;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--success));
    z-index: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.flow-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--light);
    transition: transform 0.25s ease;
}

.flow-step-circle img {
    width: 28px;
    height: 28px;
}

.flow-step:hover .flow-step-circle {
    transform: scale(1.1);
    background: var(--primary);
}

/* .flow-step:hover .flow-step-circle img {
            filter: brightness(0) invert(1);
        } */

.flow-step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.flow-step h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.4;
}

.flow-step p {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    line-height: 1.6;
}

.support-banner {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 32px;
}

.support-banner-icon img {
    width: 32px;
    height: 32px;
}

.support-banner-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.support-banner-desc {
    font-size: 14px;
    color: #5A6880;
}

/* ===== CASE STUDY ===== */
.case-section {
    padding: 96px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.case-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.case-section .section-label {
    background: rgba(0, 191, 165, 0.2);
    color: #4DD9CC;
}

.case-section-title {
    color: var(--white);
}

.case-section-title em {
    color: #4DD9CC;
}

.case-section-lead {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.case-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 87, 255, 0.5);
    transform: translateY(-6px);
}

.case-industry {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0, 87, 255, 0.25);
    color: #7CB3FF;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.case-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.case-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.case-card p strong {
    color: rgba(255, 255, 255, 0.85);
}

.case-card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-card-badge {
    font-size: 11px;
    color: rgba(0, 87, 255, 0.7);
    background: rgba(0, 87, 255, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 700;
}

/* ===== BEFORE / AFTER TABLE ===== */
.ba-section-header {
    margin-top: 72px;
}

.ba-section-label {
    background: rgba(0, 191, 165, 0.2);
    color: #4DD9CC;
}

.ba-table-wrap {
    overflow-x: auto;
}

.ba-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.ba-table th,
.ba-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ba-table th {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-th-theme {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    width: 28%;
}

.ba-th-before {
    background: rgba(255, 87, 34, 0.12);
    color: #FF8A65;
    text-align: center;
}

.ba-th-after {
    background: rgba(0, 87, 255, 0.18);
    color: #7CB3FF;
    text-align: center;
}

.ba-td-theme {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.ba-td-before {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.ba-td-after {
    font-size: 14px;
    color: rgba(0, 191, 165, 0.9);
    text-align: center;
    font-weight: 600;
}

.ba-table tbody tr:nth-child(even) .ba-td-theme {
    background: rgba(255, 255, 255, 0.02);
}

.ba-table tbody tr:nth-child(even) .ba-td-before {
    background: rgba(255, 87, 34, 0.03);
}

.ba-table tbody tr:nth-child(even) .ba-td-after {
    background: rgba(0, 87, 255, 0.04);
}

/* ===== TESTIMONIAL ===== */
.voice-section {
    padding: 80px 0;
    background: var(--light);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.voice-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.voice-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    color: rgba(0, 87, 255, 0.06);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.voice-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.voice-text {
    font-size: 15px;
    color: #3A4560;
    line-height: 1.8;
    margin-bottom: 20px;
}

.voice-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.voice-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.voice-company {
    font-size: 12px;
    color: var(--gray);
}

/* ===== FORM CTA ===== */
.form-section {
    padding: 96px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.form-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.form-section-label {
    background: rgba(0, 87, 255, 0.2);
    color: #7CB3FF;
}

.form-section-title {
    color: var(--white);
}

.form-section-title em {
    color: #7CB3FF;
}

.form-section .section-lead {
    color: rgba(255, 255, 255, 0.65);
}

.form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px 40px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
}

.form-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.form-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.form-point::before {
    content: '✓';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-form-main {
    font-size: 18px;
    padding: 22px 48px;
    width: 100%;
    justify-content: center;
}

.btn-form-sub {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: center;
}

.btn-icon-phone {
    margin-right: 8px;
    filter: grayscale(1) brightness(2);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
}

.company-info-box {
    margin-top: 40px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.company-info-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.company-info-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.lp-footer {
    background: #050810;
    padding: 32px 24px;
    text-align: center;
}

.lp-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-panel {
        display: none;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .flow-steps {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .voices-grid {
        grid-template-columns: 1fr;
    }

    .compare-table th.col-zoho::before {
        top: 5px;
        font-size: 9px;
    }

    .float-bar {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 26px;
    }
	.hero-stats{
		gap:25px;
	}
    .btn-cta {
        font-size: 15px;
        padding: 16px 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .subsidy-amount {
        font-size: 64px;
    }

    .form-card {
        padding: 32px 24px;
    }
	
}

.sp_only {
    display: none;
  }

@media (max-width: 900px) {
    .pc_only {
      display: none;
    }
    .sp_only {
      display: block;
    }
	.text_center{
		text-align:center;
	}
    }


/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] {
    transition-delay: 0.1s;
}

[data-animate-delay="2"] {
    transition-delay: 0.2s;
}

[data-animate-delay="3"] {
    transition-delay: 0.3s;
}

[data-animate-delay="4"] {
    transition-delay: 0.4s;
}

[data-animate-delay="5"] {
    transition-delay: 0.5s;
}