/* ========================================
   style-v2.css — lp-corporate base, green theme
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* Colors */
:root {
    --primary: #2d8f5e;
    --primary-dark: #1f6b45;
    --primary-light: #6fcf97;
    --accent: #f39800;
    --accent-dark: #e67e00;
    --bg-accent: #f0faf4;
    --bg-light-green: #e8f5ee;
    --text: #333333;
    --sub-text: #666666;
    --border: #e0e0e0;
    --light-bg: #F5F5F5;
    --dark: #1a2e23;
}

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

/* ======== HEADER ======== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-sub {
    font-size: 11px;
    color: var(--sub-text);
    line-height: 1.4;
}

.nav {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

.header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.header-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.m-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.m-toggle .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    transform-origin: center;
}

.m-toggle.active .icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.m-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.m-toggle.active .icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-inner a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-inner a:hover {
    color: var(--primary-light);
}

/* ======== BUTTONS ======== */
.btn {
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--bg-accent);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ======== SECTION COMMON ======== */
.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-header,
.features-center,
.works-title,
.price-header,
.flow-header,
.faq-title,
.company-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title::after,
.features-center .section-title::after,
.works-title .section-title::after,
.price-header .section-title::after,
.flow-header .section-title::after,
.faq-title .section-title::after,
.company-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ======== HERO ======== */
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.85) 0%, rgba(25, 30, 35, 0.65) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 150px 60px;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    color: var(--primary);
    padding: 8px 40px 10px;
    border-radius: 35px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--sub-text);
    line-height: 1;
}

.hero-badge-logo {
    height: 35px;
    width: auto;
}

.hero .btn-primary {
    background-color: #8df0b8;
    color: #0a1a12;
    font-weight: 700;
}

.hero .btn-primary:hover {
    background-color: #a8f5cc;
}

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

.hero-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.5;
    color: white;
    margin-bottom: 24px;
}

.hero-content h1 .em {
    color: #8df0b8;
    position: relative;
}

.hero-content h1 .em::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: #8df0b8;
    border-radius: 2px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    line-height: 1.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.badge-item i {
    margin-right: 4px;
    color: #8df0b8;
}

/* ======== RESOURCES / PROBLEM ======== */
.resources {
    background-color: var(--bg-accent);
    padding: 80px 40px;
}

.resources-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.resource-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    text-align: center;
}

.resource-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.resource-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.resource-card p {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.7;
}

/* ======== VALUE PROPOSITION ======== */
.value-prop {
    background-color: white;
    padding: 80px 40px;
    text-align: center;
}

.value-prop-container {
    max-width: 860px;
    margin: 0 auto;
}

.value-prop h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    display: inline-block;
}

.value-prop h2 .em {
    color: var(--primary);
}

.value-prop h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.value-prop-text {
    color: var(--sub-text);
    font-size: 16px;
    line-height: 1.9;
    margin: 40px 0 16px;
}

.value-prop-sub {
    color: var(--sub-text);
    font-size: 14px;
    margin-bottom: 24px;
}

.value-prop-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.7;
}

/* ======== MERIT SECTIONS ======== */
.merit-section {
    padding: 80px 40px;
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.merit-section.even {
    background-color: white;
}

.merit-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.merit-section.even .merit-container .merit-content {
    order: 2;
}

.merit-section.even .merit-container .merit-image {
    order: 1;
}

.merit-number {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(45, 143, 94, 0.07);
    z-index: 0;
    line-height: 1;
}

.merit-content {
    position: relative;
    z-index: 1;
}

.merit-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.merit-content .merit-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.merit-content p {
    color: var(--sub-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.merit-image {
    max-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.merit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.merit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    background-color: var(--bg-accent);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--bg-light-green);
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
}

.stat-number .stat-unit {
    font-size: 16px;
    font-weight: 600;
}

.stat-label {
    font-size: 13px;
    color: var(--sub-text);
}

/* ======== DOCUMENT BAND (CTA Band) ======== */
.document-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
}

.document-band-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
}

.document-band-content h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 12px;
}

.band-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 24px;
}

.document-band-button {
    background-color: white;
    color: var(--primary);
    border: none;
}

.document-band-button:hover {
    background-color: #f0f0f0;
    color: var(--primary-dark);
}

.document-band-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.band-stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.band-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.band-stat-number span {
    font-size: 18px;
}

.band-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Band enhancements */
.band-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.document-band-button-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.document-band-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.band-stat-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

/* ======== FEATURES ======== */
.features {
    background-color: var(--light-bg);
    padding: 80px 40px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    background: white;
    padding: 40px 28px;
    border-radius: 8px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.7;
}

/* ======== WORKS ======== */
.works {
    background-color: white;
    padding: 80px 40px;
}

.works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.work-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.work-card:hover {
    transform: translateY(-4px);
}

.work-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-card-content {
    padding: 20px 24px;
    background: white;
}

.work-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-accent);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

/* ======== PRICE ======== */
.price-section {
    background-color: var(--bg-accent);
    padding: 80px 40px;
}

.price-container {
    max-width: 1200px;
    margin: 0 auto;
}

.price-initial {
    text-align: center;
    margin-bottom: 40px;
    background: var(--bg-accent);
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid var(--bg-light-green);
}

.price-initial-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-text);
    margin-bottom: 4px;
}

.price-initial-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-initial-amount .amount {
    font-size: 32px;
}

.price-tax {
    text-align: center;
    font-size: 14px;
    color: var(--sub-text);
    margin-bottom: 20px;
}

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

.price-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.price-card.recommended {
    box-shadow: 0 8px 32px rgba(45, 143, 94, 0.2);
    transform: scale(1.04);
    z-index: 1;
}

.recommend-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 0 0 6px 6px;
    z-index: 2;
}

.price-card-head {
    padding: 28px 24px;
    text-align: center;
}

.price-card-head.light {
    background: var(--light-bg);
}

.price-card-head.standard {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.price-card-head.premium {
    background: var(--dark);
    color: white;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-sub {
    font-size: 13px;
    opacity: 0.8;
}

.price-card-body {
    padding: 32px 24px;
}

.price-main {
    text-align: center;
}

.yen {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--text);
}

.tax {
    font-size: 13px;
    color: var(--sub-text);
}

.price-includes {
    list-style: none;
    margin-bottom: 24px;
}

.price-includes li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-includes li i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.price-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.price-note {
    text-align: center;
    font-size: 13px;
    color: var(--sub-text);
    margin-top: 24px;
}

/* ======== PRICE CTA ======== */
.price-cta {
    background-color: var(--bg-accent);
    padding: 0 40px 60px;
    text-align: center;
}

.price-cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--bg-light-green);
}

.price-cta-text {
    color: var(--sub-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.price-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-cta-outline {
    border-color: var(--primary);
    color: var(--primary);
}

/* ======== WORKS ENHANCEMENTS ======== */
.works-desc {
    color: var(--sub-text);
    font-size: 16px;
    margin-top: 24px;
}

.work-card-desc {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.work-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.work-card-meta span {
    font-size: 12px;
    color: var(--primary);
    background: var(--bg-accent);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.work-card-meta span i {
    font-size: 10px;
}

.works-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.works-cta-text {
    color: var(--sub-text);
    font-size: 16px;
    margin-bottom: 20px;
}

/* ======== FLOW ======== */
.flow-section {
    background-color: white;
    padding: 80px 40px;
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
}

.flow-timeline {
    position: relative;
    padding-left: 60px;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.flow-item {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.flow-item.last {
    margin-bottom: 0;
}

.flow-step {
    position: absolute;
    left: -60px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
}

.flow-step.end {
    background: var(--accent);
}

.flow-content {
    background: var(--bg-accent);
    padding: 20px 24px;
    border-radius: 8px;
    flex: 1;
    border-left: 3px solid var(--primary);
}

.flow-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.flow-content p {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.7;
}

/* ======== FAQ ======== */
.faq {
    background-color: var(--light-bg);
    padding: 80px 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-accent);
}

.faq-question.active {
    background-color: var(--primary);
    color: white;
}

.faq-icon {
    font-size: 13px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background-color: white;
    color: var(--sub-text);
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 400px;
    padding: 20px 24px;
}

/* ======== COMPANY ======== */
.company-section {
    background-color: white;
    padding: 80px 40px;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.company-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary);
}

.company-card-logo {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-bottom: 1px solid var(--border);
}

.company-card-logo img {
    max-height: 60px;
    width: auto;
}

.company-card-body {
    padding: 28px 32px;
}

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

.company-card-body p {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.8;
}

/* ======== CTA SECTION ======== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1f7a4a 50%, var(--primary-dark) 100%);
    padding: 80px 40px;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 16px;
}

.cta-main {
    color: white;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    border-radius: 12px;
    padding: 40px 28px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.cta-card-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.cta-card-text {
    font-size: 16px;
    color: var(--sub-text);
    line-height: 1.7;
}

/* ======== FOOTER ======== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    background: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.footer-brand-sub {
    font-size: 14px;
    color: #a0b0a6;
    line-height: 1.5;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #a0b0a6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: #7a8a80;
}

/* ======== FLOATING CTA ======== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 900;
    text-align: center;
    display: none;
}

.floating-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ======== UTILITY ======== */
.pc-hidden {
    display: none;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {

    .hero-inner {
        padding: 90px 60px 50px;
    }

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

    .merit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .merit-section.even .merit-container .merit-content {
        order: unset;
    }

    .merit-section.even .merit-container .merit-image {
        order: unset;
    }

    .document-band-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .document-band-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .band-cta-group {
        justify-content: center;
    }

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

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

    .price-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .price-card.recommended {
        transform: none;
    }

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

    .cta-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .pc-hidden {
        display: block;
    }

    /* SP: body text minimum 14px */
    .resource-card p,
    .value-prop-text,
    .merit-content p,
    .feature-item p,
    .work-card-desc,
    .works-desc,
    .works-cta-text,
    .price-includes li,
    .price-cta-text,
    .flow-content p,
    .faq-question,
    .faq-answer,
    .company-card-body p,
    .cta-sub,
    .cta-card-text,
    .band-stat-label,
    .btn,
    .btn-text {
        font-size: 14px;
    }

    .header-container {
        padding: 12px 20px;
    }

    .nav,
    .header-buttons {
        display: none;
    }

    .m-toggle {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-inner {
        padding: 70px 20px 36px;
    }

    .hero-content h1 {
        font-size: 33px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }

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

    .resources,
    .value-prop,
    .merit-section,
    .document-band,
    .features,
    .works,
    .price-section,
    .flow-section,
    .faq,
    .company-section,
    .cta-section {
        padding: 48px 20px;
    }

    .price-cta {
        padding: 0 20px 40px;
    }

    .price-cta-container {
        padding: 32px 20px;
    }

    .price-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .document-band-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .resources-content {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

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

    .merit-number {
        font-size: 80px;
    }

    .stat-number {
        font-size: 18px;
    }

    .feature-item {
        padding: 20px 25px;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .value-prop h2 {
        font-size: 24px;
    }

    .cta-main {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content .footer-column:not(.footer-brand) {
        display: contents;
    }

    .footer-content .footer-column:not(.footer-brand) ul {
        display: contents;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 40px;
    }

    .footer-column ul li {
        margin-bottom: 30px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .floating-cta {
        display: block;
    }

    /* Add bottom padding to body for floating CTA */
    body {
        padding-bottom: 64px;
    }

    .flow-timeline {
        padding-left: 50px;
    }

    .flow-step {
        left: -50px;
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .flow-timeline::before {
        left: 17px;
    }
}

/* ======== ANIMATIONS ======== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
