/*
Theme Name: CT_chill
Template: hello-elementor
Version: 1.0.0
Description: Custom child theme for Connect Trust B2B redesign
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Jost:wght@500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');

/* =================================================================*********
   Reset & Variables
   =================================================================********* */
:root {
    /* Core Connect Trust Brand Palette (Aristo-inspired) */
    --color-bg-white: #FFFFFF;
    --color-bg-cream: #FCFAF6;       /* Warm cream background */
    --color-bg-gray: #F8F9FA;
    --color-text-main: #0F2240;      /* Deep Slate Blue */
    --color-text-body: #3E4D62;      /* Medium slate body text */
    --color-text-sub: #7A8B9E;       /* Muted slate text */
    --color-accent: rgba(15, 34, 64, 0.08); /* Fine borders */
    
    --color-gold: #C5A880;           /* Elegant Wheat Gold */
    --color-gold-light: #F8F4EE;
    --color-gold-hover: #B59870;

    /* Prolaizer Jet Brand Palette (Chiikitree-inspired) */
    --color-forest: #2D4A3E;         /* Deep Forest Green */
    --color-forest-light: #F3F7F5;   /* Very light forest tint */
    --color-forest-accent: #C2D5CD;  /* Muted sage accent */
    --color-forest-text: #1E332A;

    --font-en: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-title: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-accent: 'Jost', sans-serif;

    --easing-fluid: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: all 0.6s var(--easing-fluid);
    --transition-fast: all 0.3s ease;
    
    --shadow-subtle: 0 4px 20px rgba(15, 34, 64, 0.03);
    --shadow-medium: 0 10px 30px rgba(15, 34, 64, 0.06);
    --shadow-hover: 0 20px 40px rgba(15, 34, 64, 0.12);
}

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

html {
    font-size: 16px;
    background-color: var(--color-bg-cream);
    color: var(--color-text-body);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    line-height: 1.8;
    letter-spacing: 0.06em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: var(--color-bg-cream);
    color: var(--color-text-body);
}

/* =================================================================*********
   Typography & Headers
   =================================================================********* */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.4;
}

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

a:hover {
    color: var(--color-gold);
}

ul {
    list-style: none;
}

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

/* Base Headings */
.section-title {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.section-h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text-main);
    line-height: 1.35;
    margin-bottom: 2.5rem;
}

.section-h2 span.accent {
    color: var(--color-gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-sub);
    line-height: 2;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* =================================================================*********
   Layout Utilities
   =================================================================********* */
.section-pad {
    padding-top: 140px;
    padding-bottom: 140px;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 6vw;
    padding-right: 6vw;
}

.container--fluid {
    max-width: 100%;
    padding: 0;
}

/* Organic Wave / Curve Dividers */
.curve-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    z-index: 5;
}

.curve-divider--top {
    top: -1px;
}

.curve-divider--bottom {
    bottom: -1px;
}

.curve-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.curve-divider__path {
    fill: var(--color-bg-cream);
}

.curve-divider__path--white {
    fill: var(--color-bg-white);
}

.curve-divider__path--forest {
    fill: var(--color-forest-light);
}

/* Glass panel */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-subtle);
}

/* =================================================================*********
   Buttons
   =================================================================********* */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    height: 54px;
    padding: 0 30px;
    border: 1px solid var(--color-text-main);
    background-color: transparent;
    color: var(--color-text-main);
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 9999px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-main);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.btn-primary:hover::before {
    transform: translateY(0);
}

/* Accent version (Gold) */
.btn-gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-gold::before {
    background-color: var(--color-gold);
}

/* Forest green version */
.btn-forest {
    border-color: var(--color-forest);
    color: var(--color-forest);
}

.btn-forest::before {
    background-color: var(--color-forest);
}

.btn-forest:hover {
    color: var(--color-bg-white);
}

/* Simple Hover Arrow */
.btn-arrow {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(15, 34, 64, 0.2);
    transition: var(--transition-fast);
}

.btn-arrow::after {
    content: '→';
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-arrow:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.btn-arrow:hover::after {
    transform: translateX(8px);
}

/* =================================================================*********
   Header
   =================================================================********* */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    z-index: 100;
    transition: var(--transition-smooth);
    color: var(--color-text-main);
}

.header.is-scrolled {
    height: 75px;
    background-color: rgba(252, 250, 246, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(15, 34, 64, 0.04);
    border-bottom: 1px solid rgba(15, 34, 64, 0.04);
}

/* WordPress管理バー(ログイン時)に隠れてヘッダーのリンクがクリックできない問題を回避 */
body.admin-bar .header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* ===== 固定ページ(WordPress)をトップと統一：固定ヘッダー回避の余白＋見出し統一 ===== */
main.ct-page,
.ct-page {
    padding-top: 150px;
    padding-bottom: 110px;
    min-height: 60vh;
}
/* ページタイトル(CONTACT/COMPANY等)はヘッダーと重複するため非表示 */
.ct-page .page-header,
.ct-page .entry-header {
    display: none;
}
.ct-page .entry-title,
.ct-page .page-title {
    font-family: var(--font-en, 'Jost', sans-serif);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text-main);
    line-height: 1.3;
}
.ct-page .entry-content,
.ct-page .page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 768px) {
    .ct-page { padding-top: 120px; padding-bottom: 80px; }
    .ct-page .entry-title,
    .ct-page .page-title { font-size: 1.8rem; }
}

.header__logo {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: var(--font-en);
}

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

.header__list {
    display: flex;
    gap: 48px;
}

.header__link {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text-main);
    position: relative;
    padding: 8px 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--easing-fluid);
}

.header__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Toggle Hamburger */
.header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 32px;
    height: 24px;
    position: relative;
}

.header__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.header__toggle-line:nth-child(1) { top: 2px; }
.header__toggle-line:nth-child(2) { top: 11px; }
.header__toggle-line:nth-child(3) { bottom: 2px; }

/* =================================================================*********
   Hero Section
   =================================================================********* */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-cream);
    padding: 0 8%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://connect-trust.com/wp-content/uploads/2026/02/back01.png');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero__title {
    margin-bottom: 2.5rem;
}

.hero__title-en {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.hero__title-jp {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.hero__cta {
    margin-top: 3.5rem;
}

/* Floating contact widget */
.sticky-contact {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-contact-btn {
    width: 60px;
    height: 60px;
    background-color: var(--color-text-main);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

.sticky-contact-btn:hover {
    transform: translateY(-5px);
    background-color: var(--color-gold);
    color: var(--color-bg-white);
}

/* =================================================================*********
   Vision Section (Philosophy)
   =================================================================********* */
.vision {
    background-color: var(--color-bg-white);
    text-align: center;
    position: relative;
}

.vision__content {
    max-width: 840px;
    margin: 0 auto;
}

.vision__text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.5;
    color: var(--color-text-main);
    letter-spacing: 0.08em;
}

/* =================================================================*********
   Solutions Section (Aristo-style alternate grid)
   =================================================================********* */
.solutions {
    background-color: var(--color-bg-cream);
    padding: 0;
}

.story-block {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 70vh;
    padding: 80px 0;
    border-bottom: 1px solid rgba(15, 34, 64, 0.05);
}

.story-block:last-child {
    border-bottom: none;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story__visual {
    flex: 1;
    padding: 0 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story__visual-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.story__visual-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(15, 34, 64, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--easing-fluid);
}

.story-block:hover .story__img {
    transform: scale(1.08);
}

.story-block:hover .story__visual-inner {
    box-shadow: var(--shadow-hover);
}

.story__content {
    flex: 1;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story__number {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    display: block;
}

.story__title {
    font-family: var(--font-accent);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.story__desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

/* Image placeholder styling (if no image) */
.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-gold-light);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-placeholder::after {
    content: 'CT';
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.4);
}

/* =================================================================*********
   Miracle Shield Specific Pages Layouts
   =================================================================********* */

/* Miracle Hero */
.miracle-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-color: #0c1729; /* Sleek rich dark slate */
    color: var(--color-bg-white);
    overflow: hidden;
}

.miracle-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/miracleshield-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.miracle-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-bg-cream);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 3;
}

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

.miracle-content {
    max-width: 720px;
}

.miracle-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-bg-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.miracle-subtitle {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.miracle-desc {
    font-family: var(--font-jp);
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--color-bg-cream);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.comp-card {
    background: var(--color-bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(15, 34, 64, 0.03);
    transition: var(--transition-smooth);
}

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

.comp-card--standard {
    border-top: 4px solid var(--color-text-sub);
}

.comp-card--premium {
    border-top: 4px solid var(--color-gold);
    background-color: var(--color-bg-white);
}

.comp-card__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.comp-card--standard .comp-card__badge {
    background-color: var(--color-bg-gray);
    color: var(--color-text-sub);
}

.comp-card--premium .comp-card__badge {
    background-color: var(--color-gold-light);
    color: var(--color-gold);
}

.comp-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.comp-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.comp-card--standard .comp-item__icon {
    background-color: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.comp-card--premium .comp-item__icon {
    background-color: rgba(45, 74, 62, 0.1);
    color: var(--color-forest);
}

.comp-item__text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-text-main);
}

.comp-item__text p {
    font-size: 0.875rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

/* Grids: 6 Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.strength-card {
    background-color: var(--color-bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(15, 34, 64, 0.03);
    transition: var(--transition-smooth);
}

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

.strength-card__num {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.strength-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.strength-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-sub);
    line-height: 1.8;
}

/* Target Spaces Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.target-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(15, 34, 64, 0.03);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-fast);
}

.target-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.target-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-card h3::before {
    content: '■';
    color: var(--color-gold);
    font-size: 0.7rem;
}

.target-card p {
    font-size: 0.85rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

/* B2B Flow timeline */
.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: rgba(15, 34, 64, 0.08);
    z-index: 1;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.flow-step__circle {
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(15, 34, 64, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.flow-step:hover .flow-step__circle {
    background-color: var(--color-gold);
    color: var(--color-bg-white);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.flow-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.flow-step p {
    font-size: 0.8rem;
    color: var(--color-text-sub);
    line-height: 1.6;
    padding: 0 10px;
}

/* =================================================================*********
   Prolaizer Jet (Forest Green / Chiikitree style) Layouts
   =================================================================********* */
.forest-theme {
    background-color: var(--color-forest-light);
    color: var(--color-forest-text);
}

.forest-theme h1, 
.forest-theme h2, 
.forest-theme h3, 
.forest-theme h4 {
    color: var(--color-forest);
}

.forest-theme .section-title {
    color: var(--color-forest);
    opacity: 0.8;
}

/* Prolaizer Hero */
.jet-hero {
    height: 90vh;
    background-color: var(--color-forest-light);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.jet-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    height: 85%;
    background-image: url('./img/prolizer-jet.webp');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 1;
}

.jet-hero__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.jet-hero__title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-forest);
}

.jet-hero__subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}

.jet-hero__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 2.5rem;
}

/* Value & Grid Section */
.jet-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.jet-card {
    background-color: var(--color-bg-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(45, 74, 62, 0.03);
    border: 1px solid var(--color-forest-border);
    transition: var(--transition-smooth);
}

.jet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 74, 62, 0.08);
}

.jet-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-forest-light);
}

.jet-value-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jet-value-list li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.jet-value-list li::before {
    content: '✓';
    color: var(--color-forest);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Data Stats section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--color-forest-border);
    box-shadow: 0 4px 20px rgba(45, 74, 62, 0.02);
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--color-forest);
    transform: translateY(-3px);
}

.stat-card__val {
    font-family: var(--font-accent);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-card__label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-main);
}

.stat-card__sub {
    font-size: 0.75rem;
    color: var(--color-text-sub);
}

/* How to step guides (horizontal cards) */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--color-bg-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 74, 62, 0.02);
    border: 1px solid var(--color-forest-border);
    position: relative;
}

.step-card__num {
    width: 40px;
    height: 40px;
    background-color: var(--color-forest);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

/* ROI board display */
.roi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.roi-card {
    background-color: var(--color-bg-white);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--color-forest-border);
    box-shadow: 0 10px 40px rgba(45, 74, 62, 0.03);
}

.roi-card__head {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-sub);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-card__badge {
    background-color: rgba(45, 74, 62, 0.08);
    color: var(--color-forest);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.roi-metric {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-forest-light);
}

.roi-metric:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.roi-metric__label {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.roi-metric__val {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-forest);
}

.roi-metric__val--danger {
    color: #DC2626;
}

.roi-card__result {
    background-color: var(--color-forest-light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.roi-result__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-sub);
    margin-bottom: 5px;
    display: block;
}

.roi-result__val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest);
}

.roi-result__val span {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--color-forest);
}

/* =================================================================*********
   Forms (B2B Lead Generation)
   =================================================================********* */
.lead-form-container {
    background-color: var(--color-bg-white);
    border-radius: 32px;
    padding: 60px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(15, 34, 64, 0.04);
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.lead-form-container.forest-style {
    border-color: var(--color-forest-border);
    box-shadow: 0 15px 50px rgba(45, 74, 62, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

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

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

.form-group--full {
    grid-column: span 2;
}

.form-group--three-full {
    grid-column: span 3;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.form-label span.req {
    color: #DC2626;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    height: 50px;
    background-color: var(--color-bg-gray);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-fast);
}

textarea.form-control {
    height: 120px;
    padding: 16px;
    resize: none;
}

.form-control:focus {
    outline: none;
    background-color: var(--color-bg-white);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.forest-theme .form-control:focus {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.15);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-top: 25px;
    text-align: center;
}

.form-submit-container {
    text-align: center;
    margin-top: 40px;
}

/* =================================================================*********
   FAQ Accordions
   =================================================================********* */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    border: 1px solid rgba(15, 34, 64, 0.03);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.forest-theme .faq-item {
    border-color: var(--color-forest-border);
}

.faq-q {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q::after {
    content: '+';
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.forest-theme .faq-q::after {
    color: var(--color-forest);
}

.faq-item.is-open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing-fluid);
    background-color: var(--color-bg-white);
}

.faq-a__inner {
    padding: 0 30px 24px 30px;
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.8;
}

/* =================================================================*********
   Footer & Contact Section (Top page / global)
   =================================================================********* */
.contact {
    background-color: var(--color-text-main);
    color: var(--color-bg-white);
    text-align: center;
}

.contact h2 {
    color: var(--color-bg-white);
}

.contact__content {
    max-width: 700px;
    margin: 0 auto;
}

.contact__company-name {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-bg-white);
}

.contact__address {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    margin-bottom: 3.5rem;
    letter-spacing: 0.08em;
}

.footer {
    background-color: var(--color-text-main);
    color: var(--color-text-sub);
    text-align: center;
    padding: 50px 0;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-en);
}

.footer__copyright {
    letter-spacing: 0.1em;
}

/* =================================================================*********
   Animations (GSAP Scroll reveals)
   =================================================================********* */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.4s var(--easing-fluid), transform 1.4s var(--easing-fluid);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* =================================================================*********
   Responsive
   =================================================================********* */
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .jet-hero::after {
        opacity: 0.5;
        width: 50%;
    }
}

@media (max-width: 768px) {
    body {
        line-height: 1.7;
    }

    .section-pad {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .header {
        padding: 0 24px;
        height: 70px;
    }
    
    .header.is-scrolled {
        height: 60px;
    }

    .header__toggle {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-cream);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s var(--easing-fluid);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(15, 34, 64, 0.05);
        border-left: 1px solid var(--color-accent);
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__list {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .header__link {
        font-size: 1.15rem;
    }

    /* Active Hamburger Animation */
    .header__toggle.is-active .header__toggle-line:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .header__toggle.is-active .header__toggle-line:nth-child(2) {
        opacity: 0;
    }
    .header__toggle.is-active .header__toggle-line:nth-child(3) {
        bottom: 11px;
        transform: rotate(-45deg);
    }

    /* Hero */
    .hero {
        padding: 0 24px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .hero::after {
        width: 100%;
        opacity: 0.15;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .hero__content {
        margin: 0 auto;
    }

    .hero__title-en {
        font-size: 2.25rem;
    }

    .hero__title-jp {
        font-size: 1.15rem;
    }

    /* Story blocks alternate stack */
    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
        padding: 60px 0;
        min-height: auto;
    }

    .story__visual {
        width: 100%;
        margin-bottom: 30px;
    }

    .story__visual-inner {
        max-width: 320px;
    }

    .story__content {
        width: 100%;
        padding: 0 24px;
        align-items: center;
        text-align: center;
    }
    
    .story__desc {
        margin-bottom: 2rem;
    }

    .vision__text {
        font-size: 1.05rem;
        line-height: 2.2;
    }

    /* Product miracle shield */
    .miracle-title {
        font-size: 2.5rem;
    }
    
    .miracle-subtitle {
        font-size: 1.25rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comp-card {
        padding: 30px 20px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .flow-steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .flow-steps::before {
        display: none;
    }
    
    .flow-step {
        width: 100%;
    }

    /* Prolaizer Jet responsive */
    .jet-hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .jet-hero::after {
        position: relative;
        display: block;
        width: 80%;
        height: 250px;
        margin: 40px auto 0 auto;
        right: 0;
        background-position: center bottom;
    }
    
    .jet-hero__content {
        margin: 0 auto;
    }
    
    .jet-hero__title {
        font-size: 2.25rem;
    }

    .jet-value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .jet-card {
        padding: 30px 20px;
    }

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

    .roi-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roi-card {
        padding: 30px 20px;
    }

    /* Forms */
    .lead-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group--full {
        grid-column: span 1;
    }
    
    .sticky-contact {
        right: 20px;
        bottom: 20px;
    }
    
    .sticky-contact-btn {
        width: 50px;
        height: 50px;
    }
}