/* ================================================
   Credit Auto Corporate Website - Main Stylesheet
   ================================================ */

/* CSS Variables */
:root {
    --primary-color: #3BA37A;
    --primary-dark: #2d8060;
    --primary-light: #4db88b;
    --secondary-color: #34495e;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-text {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    padding: 8px 12px;
    margin: -8px -12px;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.85;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-jp {
    font-size: 0.7rem;
    color: var(--text-lighter);
}

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

.header-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.header-cta-note {
    font-size: 0.65rem;
    color: var(--text-lighter);
    white-space: nowrap;
}

.mobile-cta-item {
    display: none;
    padding: 0.8rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mobile-header-cta {
    display: inline-block;
    background: none;
    color: var(--primary-color);
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    box-shadow: none;
}

.mobile-header-cta:hover {
    background: none;
    color: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.mobile-cta-note {
    font-size: 0.65rem;
    color: var(--text-lighter);
    display: block;
    margin-top: 0.3rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 8rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(44, 62, 80, 0.88) 0%, 
        rgba(44, 62, 80, 0.82) 20%, 
        rgba(44, 62, 80, 0.75) 40%, 
        rgba(44, 62, 80, 0.65) 60%, 
        rgba(44, 62, 80, 0.50) 75%, 
        rgba(44, 62, 80, 0.35) 88%, 
        rgba(44, 62, 80, 0.20) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.large-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-accent {
    background-color: #f0f8f5;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card.fade-in,
.pillar-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Staggered animation delays for pillar cards */
.pillar-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.pillar-card:nth-child(2).animate-in { transition-delay: 0.25s; }
.pillar-card:nth-child(3).animate-in { transition-delay: 0.4s; }

.pillar-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(59, 163, 122, 0.2);
}

.pillar-card:hover .pillar-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 163, 122, 0.3);
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-top: 0;
    border-top: none;
}

.pillar-text {
    color: var(--text-light);
}

/* Credit Building Section */
.credit-building {
    position: relative;
    background: linear-gradient(135deg, #f0f8f5 0%, var(--bg-white) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 4rem 0;
}

.credit-building-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 248, 245, 0.75) 0%, rgba(255, 255, 255, 0.78) 100%);
    z-index: 1;
}

.credit-building .container {
    position: relative;
    z-index: 2;
}

.credit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
}

.credit-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.credit-text p {
    margin-bottom: 0.8rem;
}

.credit-visual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-item {
    background-color: var(--bg-white);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateX(10px);
}

.step-item.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.step-item.highlight h4 {
    color: white;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item.highlight .step-number {
    background-color: white;
    color: var(--primary-color);
}

.step-content h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.step-item.highlight .step-content p {
    color: rgba(255, 255, 255, 0.9);
}

.step-arrow {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 300;
    padding: 0;
    margin: -0.2rem 0;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 163, 122, 0.88) 0%, rgba(77, 184, 139, 0.85) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.98;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.process-number {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
}

.process-number.highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    flex: 1;
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.process-content h3 {
    margin-bottom: 1rem;
}

.process-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 0.5rem;
}

.process-note {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Investor Benefits */
.investor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Flow Steps */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.flow-step.highlight {
    border: 3px solid var(--primary-color);
}

.flow-step-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.flow-number {
    background-color: white;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.flow-title {
    color: white;
    font-size: 1.5rem;
}

.flow-content {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
}

.flow-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.flow-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.flow-list li {
    margin-bottom: 0.5rem;
}

.flow-note {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.flow-cta {
    padding: 0 2rem 2rem;
}

.flow-time {
    background-color: var(--bg-light);
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    padding: 1rem 0;
}

/* Notice Box */
.notice-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.notice-box h3 {
    color: #f57c00;
    margin-bottom: 1rem;
}

.notice-box ul {
    padding-left: 1.5rem;
}

.notice-box li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--bg-white);
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--secondary-color);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer > * {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer ul {
    padding-left: 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Company Info */
.company-info-table {
    max-width: 900px;
    margin: 2rem auto;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.company-info-table table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table th,
.company-info-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.company-info-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    width: 180px;
    color: var(--secondary-color);
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
    border-bottom: none;
}

/* MVV Section */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
}

.mvv-card.full-width {
    grid-column: 1 / -1;
}

.mvv-label {
    background-color: transparent;
    color: var(--primary-color);
    display: inline-block;
    padding: 0.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
}

.mvv-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mvv-main-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mvv-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values List */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-content h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.value-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Elegant Values List */
.values-list-elegant {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem 2rem;
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.values-list-elegant .value-item-elegant:nth-child(1) {
    grid-column: 1 / 3;
}

.values-list-elegant .value-item-elegant:nth-child(2) {
    grid-column: 3 / 5;
}

.values-list-elegant .value-item-elegant:nth-child(3) {
    grid-column: 5 / 7;
}

.values-list-elegant .value-item-elegant:nth-child(4) {
    grid-column: 2 / 4;
}

.values-list-elegant .value-item-elegant:nth-child(5) {
    grid-column: 4 / 6;
}

.value-item-elegant {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(59, 163, 122, 0.15);
}

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    width: 85px;
    font-style: italic;
    min-width: 85px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-list-elegant .value-item-elegant:nth-child(1) .value-number,
.values-list-elegant .value-item-elegant:nth-child(2) .value-number {
    transform: scaleY(1.15);
}

.value-content-elegant {
    flex: 1;
    padding-top: 0.5rem;
}

.value-content-elegant h4 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.value-content-elegant p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}



/* Our Ambition Section */
.ambition-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ambition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 163, 122, 0.92) 0%, rgba(45, 128, 96, 0.88) 100%);
}

.ambition-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ambition-text {
    color: white;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.ambition-highlight {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    letter-spacing: 1px;
}

.ambition-emphasis {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* CEO Message */
.ceo-message {
    max-width: 900px;
    margin: 2rem auto;
    background-color: white;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ceo-message-content {
    line-height: 2.2;
    font-size: 1.05rem;
    font-family: 'Klee One', cursive;
}

.ceo-message-content p {
    margin-bottom: 1.5rem;
    text-indent: 1em;
}

.ceo-signature {
    margin-top: 3rem;
    text-align: right;
    font-family: 'Klee One', cursive;
}

.ceo-name {
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Klee One', cursive;
}

.ceo-title {
    color: var(--text-color);
    font-family: 'Klee One', cursive;
    font-size: 1rem;
}

/* Contact Form */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

.optional {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 163, 122, 0.1);
}

.form-notice {
    background-color: #fff9e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.form-notice ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.form-notice li {
    margin-bottom: 0.3rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-info-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: var(--primary-color);
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.external-link-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-brand {
    grid-column: span 1;
}

.footer-logo {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-cta {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-cta-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: var(--primary-light);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-jp {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-info {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-info strong {
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--primary-light) !important;
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* What's CreditPlus Page Styles */
.creditplus-intro-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/cd4009eed5e184ba164648e6280ec71e');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.creditplus-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 245, 0.92) 100%);
}

.intro-box-centered {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title-centered {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text-centered {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-color);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card-special {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-special:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 163, 122, 0.25);
    border-color: var(--bg-white);
}

/* Card Header (Top section with title) */
.feature-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-header .feature-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* Card Image (Middle section) */
.feature-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card-special:hover .feature-card-image img {
    transform: scale(1.05);
}

/* Card Content (Bottom section with text) */
.feature-card-content {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.feature-card-icon {
    background: linear-gradient(135deg, #3BA37A 0%, #4DB88E 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.feature-card-icon i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
}

.feature-card-divider {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    margin: 0 auto 1.5rem;
}

.feature-card-bottom {
    background: linear-gradient(135deg, #3BA37A 0%, #4DB88E 100%);
    height: 30px;
    border-radius: 0 0 20px 20px;
}

.program-section-fullwidth {
    position: relative;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/51ecaa1722c18cade9656aa8b9413d1c');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    width: 100%;
}

.program-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 163, 122, 0.92) 0%, rgba(44, 62, 80, 0.88) 100%);
    z-index: 1;
}

.program-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.program-title-white {
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.program-subtitle-white {
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 700;
}

.program-text-white {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.program-text-white p {
    margin-bottom: 1.5rem;
}

.program-text-white p:last-child {
    margin-bottom: 0;
}

/* Flow Page Styles */
.flow-header-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.flow-main-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.flow-main-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-color);
}

.line-flow-steps {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.line-step-box {
    background: var(--bg-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #000000;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.line-step-box:nth-child(even) {
    transform: translateX(80px);
}

.line-step-box.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.line-step-box:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(59, 163, 122, 0.2);
    border-color: #000000;
}

.line-step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 245, 0.80) 100%);
    z-index: 0;
}

/* Staggered animation delays for flow steps */
.line-step-box:nth-child(1).animate-in { transition-delay: 0.1s; }
.line-step-box:nth-child(2).animate-in { transition-delay: 0.2s; }
.line-step-box:nth-child(3).animate-in { transition-delay: 0.3s; }
.line-step-box:nth-child(4).animate-in { transition-delay: 0.4s; }
.line-step-box:nth-child(5).animate-in { transition-delay: 0.5s; }
.line-step-box:nth-child(6).animate-in { transition-delay: 0.6s; }

.line-step-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.line-step-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.line-step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 163, 122, 0.85) 0%, rgba(77, 184, 142, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.line-step-box:hover .line-step-circle {
    background: linear-gradient(135deg, rgba(59, 163, 122, 0.95) 0%, rgba(77, 184, 142, 0.95) 100%);
}

.line-step-circle i {
    font-size: 3rem;
    color: var(--accent-color);
}

.line-step-right {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.line-step-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.line-step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-cta-item {
        display: block;
    }

    .logo-image {
        height: 32px;
    }
    
    .logo a {
        padding: 6px 8px;
        margin: -6px -8px;
    }

    .hero {
        min-height: 70vh;
        padding: 6rem 0;
        background-attachment: scroll;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(44, 62, 80, 0.92) 0%, 
            rgba(44, 62, 80, 0.88) 20%, 
            rgba(44, 62, 80, 0.82) 35%, 
            rgba(50, 90, 95, 0.75) 50%, 
            rgba(55, 120, 105, 0.65) 65%, 
            rgba(59, 163, 122, 0.50) 80%, 
            rgba(59, 163, 122, 0.30) 92%, 
            rgba(59, 163, 122, 0.15) 100%);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .credit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .flow-content {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

    .process-number {
        padding: 1.5rem;
        min-width: auto;
        font-size: 1.3rem;
    }

    .process-content {
        flex-direction: column;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .creditplus-intro-section {
        padding: 4rem 0;
    }

    .intro-title-centered {
        font-size: 2rem;
    }

    .intro-text-centered {
        font-size: 1.05rem;
    }

    .feature-card-content {
        min-height: auto;
        padding: 2rem 1.5rem 2.5rem;
    }

    .feature-card-title {
        font-size: 1.2rem;
    }

    .feature-card-icon i {
        font-size: 3rem;
    }

    .feature-card-icon {
        padding: 2.5rem 2rem 1.5rem;
    }

    .feature-card-title {
        font-size: 1.15rem;
    }

    .feature-card-text {
        font-size: 0.95rem;
    }

    .program-section-fullwidth {
        padding: 4rem 0;
    }

    .program-subtitle-white {
        font-size: 1.4rem;
    }

    .program-text-white {
        font-size: 1.05rem;
    }

    .flow-main-title {
        font-size: 1.8rem;
    }

    .flow-main-desc {
        font-size: 1rem;
    }

    .line-step-box {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .line-step-circle {
        width: 90px;
        height: 90px;
    }

    .line-step-circle i {
        font-size: 2.5rem;
    }

    .line-step-heading {
        font-size: 1.15rem;
    }
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .feature-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .hero {
        min-height: 60vh;
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

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

    .pillars-grid,
    .feature-grid,
    .feature-cards-grid,
    .investor-benefits,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .ambition-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .ambition-text {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .ambition-highlight {
        font-size: 1.6rem;
    }

    .ambition-emphasis {
        font-size: 1.8rem;
    }

    .program-section-fullwidth {
        padding: 3rem 0;
    }

    .program-subtitle-white {
        font-size: 1.3rem;
    }

    .program-text-white {
        font-size: 1rem;
    }

    .flow-main-title {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .line-step-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .line-step-overlay {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 248, 245, 0.85) 100%);
    }

    .line-step-left {
        width: 100%;
    }

    .line-step-circle {
        width: 80px;
        height: 80px;
    }

    .line-step-circle i {
        font-size: 2.2rem;
    }

    .line-step-heading {
        font-size: 1.1rem;
    }

    .line-step-description {
        font-size: 0.95rem;
    }

    .company-info-table th {
        width: 120px;
        font-size: 0.9rem;
    }

    .company-info-table th,
    .company-info-table td {
        padding: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .ceo-message {
        padding: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .cta-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .company-info-table {
        font-size: 0.9rem;
    }

    .company-info-table th,
    .company-info-table td {
        padding: 0.8rem;
    }

    .cta-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ================================================
   Partners Page Styles
   ================================================ */

.partners-lead {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partners-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.partners-lead-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
}

.partners-lead-text p {
    margin-bottom: 1.5rem;
}

.partners-lead-text p:last-child {
    margin-bottom: 0;
}

.partners-content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partners-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.partners-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.partners-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 1.5rem;
}

.partners-text p {
    margin-bottom: 1.5rem;
}

.partners-text p:last-child {
    margin-bottom: 0;
}

.partners-participation-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.participation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.participation-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.participation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.participation-icon i {
    font-size: 1.8rem;
    color: white;
}

.participation-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.participation-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive - Partners Page */
@media (max-width: 768px) {
    .partners-main-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .partners-lead-text,
    .partners-text {
        font-size: 0.95rem;
    }

    .partners-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .partners-icon-wrapper i {
        font-size: 2rem;
    }

    .participation-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .participation-icon {
        width: 50px;
        height: 50px;
    }

    .participation-icon i {
        font-size: 1.5rem;
    }

    .participation-content h3 {
        font-size: 1.1rem;
    }

    .participation-content p {
        font-size: 0.9rem;
    }

    /* Responsive - Values List Elegant (Company Page) */
    .values-list-elegant {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-list-elegant .value-item-elegant:nth-child(1),
    .values-list-elegant .value-item-elegant:nth-child(2),
    .values-list-elegant .value-item-elegant:nth-child(3),
    .values-list-elegant .value-item-elegant:nth-child(4),
    .values-list-elegant .value-item-elegant:nth-child(5) {
        grid-column: 1;
    }

    .value-item-elegant {
        flex-direction: row;
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .value-number {
        font-size: 2.5rem;
        width: 60px;
        min-width: 60px;
    }

    .values-list-elegant .value-item-elegant:nth-child(1) .value-number,
    .values-list-elegant .value-item-elegant:nth-child(2) .value-number {
        transform: none;
    }

    .value-content-elegant {
        padding-top: 0.2rem;
    }

    .value-content-elegant h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .value-content-elegant p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ================================================
   In-house Loan Section with Background
   ================================================ */

.inhouse-loan-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0 !important;
}

.inhouse-loan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.inhouse-loan-section .section-title,
.inhouse-loan-section .large-text {
    position: relative;
    z-index: 1;
}

.inhouse-loan-section .feature-cards-grid {
    position: relative;
    z-index: 1;
}

/* ================================================
   MVV Section with Background
   ================================================ */

.mvv-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0 !important;
}

.mvv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.mvv-section .section-title,
.mvv-section .large-text,
.mvv-section .mvv-grid {
    position: relative;
    z-index: 1;
}

/* ================================================
   Credit Timeline Styles (4 Steps)
   ================================================ */

.credit-timeline-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.credit-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Line - removed for cleaner look */

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-item:nth-child(even) {
    transform: translateX(100px);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Delay for staggered animation effect */
.timeline-item:nth-child(1).animate-in { transition-delay: 0.1s; }
.timeline-item:nth-child(2).animate-in { transition-delay: 0.25s; }
.timeline-item:nth-child(3).animate-in { transition-delay: 0.4s; }
.timeline-item:nth-child(4).animate-in { transition-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 163, 122, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-number.highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 6px 20px rgba(59, 163, 122, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(59, 163, 122, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(59, 163, 122, 0.7);
    }
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content-highlight {
    background: white !important;
    border-left-width: 5px;
    border-left-color: var(--primary-dark);
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Responsive - Timeline */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        align-self: flex-start;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 1.5rem;
        width: 100%;
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-3px);
    }

    .timeline-title {
        font-size: 1.15rem;
    }

    .timeline-text {
        font-size: 0.95rem;
    }
}

/* ================================================
   アニメーション修正（JavaScriptとの連携）
   ================================================ */

/* 初期表示用：アニメーションなし */
.pillar-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Timeline Item：アニメーション対応 */
.timeline-item {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-item:nth-child(even) {
    transform: translateX(100px);
}

.timeline-item.fade-in,
.timeline-item.animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* LINE Step Box：アニメーション対応 */
.line-step-box {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.line-step-box:nth-child(even) {
    transform: translateX(80px);
}

.line-step-box.fade-in,
.line-step-box.animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}