/* ================================================
   ACE CAR SOLUTIONS Website - Base Stylesheet
   ================================================ */

/* CSS Variables */
:root {
    --primary-color: #1766D9;
    --primary-dark: #183F86;
    --primary-light: #6F39CC;
    --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(23, 102, 217, 0.2);
}

.pillar-card:hover .pillar-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(23, 102, 217, 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(23, 102, 217, 0.88) 0%, rgba(111, 57, 204, 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(23, 102, 217, 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(23, 102, 217, 0.92) 0%, rgba(24, 63, 134, 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(23, 102, 217, 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(23, 102, 217, 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, #1766D9 0%, #6F39CC 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, #1766D9 0%, #6F39CC 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(23, 102, 217, 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(23, 102, 217, 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(23, 102, 217, 0.85) 0%, rgba(111, 57, 204, 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(23, 102, 217, 0.95) 0%, rgba(111, 57, 204, 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(23, 102, 217, 0.50) 80%, 
            rgba(23, 102, 217, 0.30) 92%, 
            rgba(23, 102, 217, 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(23, 102, 217, 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(23, 102, 217, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(23, 102, 217, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(23, 102, 217, 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;
}
/* ================================================
   ACE CAR SOLUTIONS 2026 Brand Overrides
   ================================================ */
:root {
    --primary-color: #1766d9;
    --primary-dark: #183f86;
    --primary-light: #6f39cc;
    --accent-color: #e31b8f;
    --charcoal: #171920;
    --charcoal-soft: #22252e;
    --secondary-color: #20232b;
    --text-color: #2b2e35;
    --text-light: #62666f;
    --text-lighter: #9297a1;
    --bg-light: #f4f5f7;
    --border-color: #e5e7eb;
    --shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
    --shadow-hover: 0 16px 42px rgba(17, 24, 39, 0.14);
    --acs-gradient: linear-gradient(105deg, #0b63e6 0%, #6236ca 68%, #a52fb7 100%);
    --acs-gradient-full: linear-gradient(105deg, #0868ff 0%, #702be8 52%, #f00084 100%);
}

body { color: var(--text-color); }
body.menu-open { overflow: hidden; }

.header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17,24,39,.06);
    box-shadow: 0 6px 20px rgba(17,24,39,.05);
}
.header.scrolled { box-shadow: 0 10px 30px rgba(17,24,39,.10); }
.navbar { padding: .7rem 0; gap: 1rem; }
.logo-image { height: 48px; width: 112px; object-fit: cover; object-position: center; }
.logo a { overflow: hidden; }
.nav-menu { gap: 1.15rem; }
.nav-menu a { font-size: .78rem; letter-spacing: .035em; font-weight: 700; white-space: nowrap; }
.nav-jp { font-size: .62rem; letter-spacing: 0; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
.nav-menu a.active::after { content: ''; width: 28px; height: 2px; margin-top: 4px; border-radius: 999px; background: var(--acs-gradient-full); }
.header-cta { background: var(--acs-gradient); color: #fff; font-weight: 700; box-shadow: 0 8px 22px rgba(81,54,195,.23); }
.header-cta:hover { background: linear-gradient(105deg,#0758c9 0%,#5530b7 72%,#9229a1 100%); color:#fff; }

.btn-primary {
    background: var(--acs-gradient);
    color: #fff;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 8px 22px rgba(74,54,190,.20);
}
.btn-primary:hover { background: linear-gradient(105deg,#0758c9 0%,#5530b7 72%,#9229a1 100%); color:#fff; }
.btn-secondary { border: 1.5px solid #343841; color: #252832; background: rgba(255,255,255,.92); font-weight: 700; }
.btn-secondary:hover { background: var(--charcoal); border-color: var(--charcoal); color:#fff; }
.text-link { display:inline-flex; align-items:center; gap:.45rem; color:var(--primary-color); font-weight:700; }
.text-link:hover { color:var(--primary-dark); transform: translateX(2px); }
.button-row, .cta-actions { display:flex; justify-content:center; align-items:center; gap:1rem; flex-wrap:wrap; }

.section-kicker { text-align:center; margin:0 0 .65rem; font-size:.76rem; font-weight:700; letter-spacing:.20em; color:var(--primary-color); text-transform:uppercase; }
.section-kicker.left { text-align:left; }
.section-title { color: var(--charcoal); letter-spacing:-.02em; }

.acs-hero { min-height: 72vh; padding: 7.5rem 0; background-position:center; }
.acs-hero .hero-overlay {
    background:
      radial-gradient(circle at 75% 25%, rgba(112,43,232,.18), transparent 34%),
      radial-gradient(circle at 82% 70%, rgba(240,0,132,.12), transparent 30%),
      linear-gradient(90deg, rgba(20,22,29,.91) 0%, rgba(20,22,29,.82) 44%, rgba(20,22,29,.45) 73%, rgba(20,22,29,.25) 100%);
}
.acs-hero .hero-content { max-width: 760px; }
.eyebrow { color:#fff; font-size:.78rem; font-weight:700; letter-spacing:.23em; margin-bottom:1rem; opacity:.9; }
.acs-hero .hero-title { font-size:clamp(2.55rem,5vw,4.4rem); line-height:1.24; letter-spacing:-.035em; margin-bottom:1.3rem; }
.acs-hero .hero-text { font-size:1.1rem; max-width:720px; margin-bottom:2.1rem; }
.acs-hero .hero-cta { justify-content:flex-start; }
.acs-hero .btn-secondary { background:rgba(255,255,255,.94); color:#20232b; border-color:rgba(255,255,255,.95); }
.acs-hero .btn-secondary:hover { background:#fff; color:var(--primary-color); }

.pillars { background:#fff; }
.pillars-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-card { border:1px solid var(--border-color); box-shadow:0 8px 28px rgba(17,24,39,.06); text-align:left; }
.pillar-icon-modern { margin:0 0 1.5rem; background:var(--acs-gradient); box-shadow:0 8px 24px rgba(83,56,199,.19); }
.pillar-card:hover .pillar-icon-modern { box-shadow:0 12px 30px rgba(83,56,199,.25); }
.pillar-title { color:var(--charcoal); font-size:1.35rem; }
.pillar-lead { color:var(--primary-dark); font-weight:700; line-height:1.7; margin-bottom:.8rem; }

.stock-section { background:var(--bg-light); padding:5rem 0; }
.stock-panel { display:grid; grid-template-columns: 1.45fr .75fr; gap:3rem; align-items:center; padding:3.5rem; background:#fff; border:1px solid var(--border-color); border-radius:24px; box-shadow:var(--shadow); overflow:hidden; position:relative; }
.stock-panel::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--acs-gradient-full); }
.stock-copy h2 { font-size:2.15rem; color:var(--charcoal); margin-bottom:1rem; }
.stock-lead { font-weight:700; font-size:1.12rem; line-height:1.8; }
.stock-copy .button-row { justify-content:flex-start; margin-top:1.8rem; }
.stock-visual { min-height:260px; border-radius:20px; background:
    radial-gradient(circle at 30% 30%,rgba(8,104,255,.16),transparent 42%),
    radial-gradient(circle at 75% 68%,rgba(240,0,132,.13),transparent 42%),
    linear-gradient(145deg,#f9fafb,#eceef2); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; color:var(--charcoal); }
.stock-visual i { font-size:5.2rem; background:var(--acs-gradient-full); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stock-visual span { font-weight:700; }

.credit-building-overlay { background:linear-gradient(110deg,rgba(255,255,255,.94) 0%,rgba(245,246,249,.91) 60%,rgba(255,255,255,.84) 100%); }
.credit-building .section-title { color:var(--charcoal); }
.step-number { background:var(--acs-gradient); }
.step-item { border:1px solid var(--border-color); }

.page-header { background: var(--charcoal); padding:5.3rem 0 4.7rem; }
.page-header-overlay { background:
    radial-gradient(circle at 23% 32%,rgba(8,104,255,.38),transparent 29%),
    radial-gradient(circle at 80% 50%,rgba(240,0,132,.28),transparent 32%),
    linear-gradient(105deg,rgba(23,25,32,.91),rgba(23,25,32,.78)); }
.page-title { text-transform:uppercase; letter-spacing:.08em; font-size:clamp(2.4rem,5vw,3.5rem); }
.page-subtitle { font-size:1.05rem; letter-spacing:.06em; }

.inhouse-loan-section { background:var(--bg-light) !important; background-image:none !important; }
.feature-card-special { border:1px solid var(--border-color); box-shadow:0 8px 25px rgba(17,24,39,.07); }
.feature-card-special:hover { box-shadow:0 16px 38px rgba(17,24,39,.13); border-color:#d6d9df; }
.feature-card-header { background:var(--charcoal); }
.feature-card-image { height:200px; }
.feature-card-lead { font-size:1.02rem; color:var(--primary-dark); font-weight:700; line-height:1.7; text-align:center; }
.feature-note { font-size:.83rem; line-height:1.7; color:var(--text-light); background:var(--bg-light); border-radius:10px; padding:.8rem 1rem; margin:1rem 0 0; }
.intro-emphasis { margin-top:1.8rem; font-weight:700; color:var(--primary-dark); font-size:1.08rem; }

.timeline-number { background:var(--acs-gradient); box-shadow:0 6px 18px rgba(78,54,192,.22); }
.timeline-number.highlight { background:var(--charcoal); box-shadow:0 6px 18px rgba(17,24,39,.24); animation:none; }
.timeline-content { border-left-color:var(--primary-color); }
.timeline-content-highlight { border-left-color:var(--accent-color); }

.flow-main-title { color:var(--charcoal); }
.flow-shop-note { margin:2rem auto 0; max-width:760px; padding:1rem 1.2rem; border-radius:12px; background:var(--bg-light); color:var(--text-light); }
.flow-shop-note i { color:var(--primary-color); margin-right:.4rem; }
.line-flow-steps { max-width:960px; }
.line-step-box.acs-flow-step { background:#fff !important; border:1px solid var(--border-color); box-shadow:0 8px 26px rgba(17,24,39,.07); }
.line-step-box.acs-flow-step::before { content:none; }
.line-step-box.acs-flow-step .line-step-circle { background:var(--acs-gradient); }
.line-step-box.acs-flow-step .line-step-label { color:var(--primary-color); }
.line-step-box.acs-flow-step .line-step-description { color:var(--text-light); }

.faq-intro { max-width:820px; margin:0 auto 2.5rem; text-align:center; }
.faq-item { border:1px solid var(--border-color); border-radius:14px; overflow:hidden; margin-bottom:1rem; box-shadow:0 5px 18px rgba(17,24,39,.045); }
.faq-question { font-weight:700; }
.faq-item.active { border-color:rgba(23,102,217,.34); }
.faq-answer { background:#fbfbfc; }

.about-us-copy { max-width:900px; margin:0 auto; font-size:1.08rem; line-height:2; }
.about-us-copy strong { color:var(--primary-dark); }
.mvv-overlay { background:rgba(246,247,249,.90); }
.mvv-label { color:var(--primary-color) !important; }
.mvv-card { border:1px solid rgba(23,102,217,.12); }
.message-catch { font-size:1.55rem; color:var(--charcoal); margin-bottom:2rem; }
.ceo-message-content strong { color:var(--primary-dark); }
.future-shop { padding:2.2rem 0; background:#fff; }
.future-shop-note { max-width:900px; margin:0 auto; padding:1.6rem 2rem; border:1px dashed #cfd3da; border-radius:16px; text-align:center; color:var(--text-light); }
.future-shop-note span { display:block; color:var(--primary-color); font-size:.72rem; letter-spacing:.18em; font-weight:700; margin-bottom:.4rem; }
.future-shop-note strong { display:block; color:var(--charcoal); font-size:1.2rem; margin-bottom:.35rem; }
.future-shop-note p { margin:0; font-size:.9rem; }

.contact-intro { text-align:center; max-width:900px; margin:0 auto; }
.contact-form-lead { margin-top:-1.6rem; margin-bottom:2rem; color:var(--text-light); }
.contact-form { position:relative; }
.hp-field { position:absolute !important; width:1px !important; height:1px !important; overflow:hidden !important; clip:rect(1px,1px,1px,1px) !important; white-space:nowrap !important; }
.contact-info-card { border:1px solid var(--border-color); box-shadow:0 8px 26px rgba(17,24,39,.06); }
.contact-info-icon { width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center; margin:0 auto 1.4rem; background:var(--acs-gradient); color:#fff; font-size:1.6rem; }
.contact-email { font-size:1rem; overflow-wrap:anywhere; }
.visit-note { max-width:900px; margin:3rem auto 0; padding:1.6rem 2rem; border-radius:16px; background:var(--bg-light); }
.visit-note h3 { font-size:1.18rem; margin-bottom:.6rem; }
.visit-note h3 i { color:var(--primary-color); margin-right:.4rem; }
.visit-note p { margin:0; }

.cta-section { background:var(--charcoal); position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; width:520px; height:520px; border-radius:50%; top:-320px; left:-120px; background:radial-gradient(circle,rgba(8,104,255,.24),transparent 68%); }
.cta-section::after { content:''; position:absolute; width:520px; height:520px; border-radius:50%; bottom:-350px; right:-100px; background:radial-gradient(circle,rgba(240,0,132,.18),transparent 68%); }
.cta-section .container { position:relative; z-index:2; }
.cta-section .btn-primary { background:var(--acs-gradient); color:#fff; }
.cta-section .btn-primary:hover { background:linear-gradient(105deg,#0758c9 0%,#5530b7 72%,#9229a1 100%); color:#fff; }
.cta-section .btn-secondary { background:transparent; border-color:rgba(255,255,255,.72); color:#fff; }
.cta-section .btn-secondary:hover { background:#fff; color:var(--charcoal); }

.footer { background:var(--charcoal); }
.footer-brand-image { width:190px; height:auto; max-height:82px; object-fit:cover; object-position:center; filter:brightness(1.2); margin-bottom:1rem; border-radius:3px; }
.footer h4 { color:#fff; }
.footer-links a:hover, .footer-contact-link:hover { color:#8cb6ff !important; }
.footer-info a { color:#d7e5ff; }
.footer-bottom { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.78rem; }

.mobile-sticky-cta { display:none; }

.thanks-section { min-height:62vh; display:flex; align-items:center; padding:6rem 0; background:var(--bg-light); }
.thanks-card { max-width:760px; margin:0 auto; padding:3.5rem; text-align:center; background:#fff; border-radius:22px; box-shadow:var(--shadow); border:1px solid var(--border-color); }
.thanks-icon { font-size:3rem; color:var(--primary-color); margin-bottom:1rem; }
.thanks-card h1 { color:var(--charcoal); margin-bottom:1.2rem; }
.thanks-card .cta-actions { margin-top:2rem; }

@media (max-width: 1100px) {
    .nav-menu { gap:.7rem; }
    .nav-menu a { font-size:.71rem; }
    .nav-jp { font-size:.58rem; }
    .header-cta { padding:9px 14px; font-size:.78rem; }
    .logo-image { width:100px; height:43px; }
}

@media (max-width: 960px) {
    .pillars-grid { grid-template-columns:1fr; }
    .stock-panel { grid-template-columns:1fr; padding:2.4rem; }
    .stock-visual { min-height:200px; }
}

@media (max-width: 768px) {
    body { padding-bottom:66px; }
    .desktop-only { display:none !important; }
    .mobile-menu-toggle { display:flex; }
    .nav-menu { position:fixed; top:69px; left:0; right:0; height:calc(100vh - 69px); background:#fff; flex-direction:column; align-items:stretch; gap:0; padding:1rem 1.4rem 2rem; transform:translateX(100%); opacity:0; pointer-events:none; transition:.28s ease; overflow-y:auto; z-index:999; }
    .nav-menu.active { transform:translateX(0); opacity:1; pointer-events:auto; }
    .nav-menu li { border-bottom:1px solid var(--border-color); }
    .nav-menu li.mobile-cta-item { border:0; display:block; }
    .nav-menu a { align-items:flex-start; padding:1rem .3rem; font-size:.9rem; }
    .nav-jp { font-size:.7rem; }
    .nav-menu a.active::after { display:none; }
    .mobile-header-cta { display:block; width:100%; padding:12px 20px; border-radius:999px; color:#fff; background:var(--acs-gradient); text-decoration:none; text-align:center; }
    .mobile-header-cta:hover { background:var(--acs-gradient); color:#fff; }
    .mobile-sticky-cta { display:flex; position:fixed; left:14px; right:14px; bottom:10px; z-index:1500; height:50px; align-items:center; justify-content:center; gap:.6rem; border-radius:999px; color:#fff; background:var(--acs-gradient); font-weight:700; box-shadow:0 12px 28px rgba(39,34,91,.28); }
    .mobile-sticky-cta:hover { color:#fff; }
    .logo-image { width:112px; height:48px; }
    .acs-hero { min-height:auto; padding:6rem 0; background-attachment:scroll; }
    .acs-hero .hero-overlay { background:linear-gradient(90deg,rgba(20,22,29,.92),rgba(20,22,29,.68)); }
    .acs-hero .hero-title { font-size:2.6rem; }
    .acs-hero .hero-text { font-size:1rem; }
    .hero-cta, .cta-actions { flex-direction:column; align-items:stretch; }
    .hero-cta .btn-primary, .hero-cta .btn-secondary, .cta-actions .btn-primary, .cta-actions .btn-secondary { width:100%; }
    section, .content-section { padding:3.2rem 0; }
    .section-title { font-size:1.8rem; margin-bottom:2rem; }
    .stock-panel { padding:2rem 1.4rem; border-radius:18px; }
    .stock-copy h2 { font-size:1.75rem; }
    .stock-copy .button-row { align-items:flex-start; }
    .feature-cards-grid { grid-template-columns:1fr; }
    .page-header { padding:4.2rem 0 3.7rem; }
    .page-title { font-size:2.25rem; }
    .footer-bottom { display:block; text-align:center; }
    .footer-bottom p { margin-bottom:.45rem; }
    .thanks-card { padding:2.2rem 1.3rem; }
}
