/* ========================================
   株式会社HASHIRA - コーポレートサイト
   日本の茶畑の世界観を表現したドキュメンタリー風デザイン
   ======================================== */

/* ===== 変数定義 ===== */
:root {
    /* カラーパレット - 日本の茶畑の大地と緑 */
    --primary-green: #1e3a0f;        /* 深い茶畑の緑（夜の葉） */
    --primary-light: #3a6620;        /* 若葉の緑 */
    --primary-lighter: #5a8c36;      /* 日射しを受けた葉 */
    --accent-gold: #b8956a;          /* 土の色・収穫の金 */
    --accent-warm: #c8a06a;          /* 乾燥した茶葉の色 */
    --matcha-pale: #e8f0df;          /* 霧の中の茶畑 */
    --dark-overlay: rgba(10, 20, 5, 0.55);  /* 写真の暗めオーバーレイ */
    --text-dark: #1a1f14;            /* 土のような深いテキスト */
    --text-gray: #4a4a40;            /* 落ち着いたグレー */
    --text-light: #7a7a6a;           /* 薄いグレー */
    --text-white: #f5f5f0;           /* オフホワイト */
    --bg-white: #ffffff;
    --bg-cream: #faf9f5;             /* 生成り色 */
    --bg-dark: #0f1a08;              /* 深い夜の緑 */
    --border-color: #d8d8cc;

    /* タイポグラフィ */
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;

    /* スペーシング */
    --section-padding: 120px;
    --container-max-width: 1200px;

    /* トランジション */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== リセット & ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ===== コンテナ ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== ヘッダー & ナビゲーション ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    display: block;
    margin-top: -4px;
    letter-spacing: 0.15em;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.05em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-green) !important;
    color: white !important;
    padding: 10px 26px !important;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 58, 15, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--primary-green);
    transition: var(--transition);
    display: block;
}

/* ===== ヒーローセクション - 全画面写真 ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 20, 5, 0.28) 0%,
        rgba(10, 20, 5, 0.05) 50%,
        rgba(10, 20, 5, 0.00) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 100px;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(200, 160, 106, 0.8);
}

.hero-eyebrow-text {
    font-size: 12px;
    letter-spacing: 0.35em;
    color: #f0c87a;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 68px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 32px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 48px;
    max-width: 560px;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6), 0 2px 16px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(240, 237, 228, 0.5);
    font-size: 10px;
    letter-spacing: 0.25em;
    z-index: 2;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(240, 237, 228, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 160, 106, 0.8);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ===== ボタン ===== */
.btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.05em;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 15, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

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

.btn-white:hover {
    background: var(--matcha-pale);
    transform: translateY(-2px);
}

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

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

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

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 15, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 52px;
    font-size: 15px;
}

/* ===== セクション共通スタイル ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.section-eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.35;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

.label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--primary-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

.lead-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    text-align: center;
}

/* ===== 写真グリッドセクション（ホーム） ===== */
.photo-intro {
    padding: 0;
    background: var(--bg-dark);
}

.photo-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 420px 420px;
    gap: 3px;
}

.photo-intro-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.photo-intro-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-intro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.photo-intro-item:hover img {
    transform: scale(1.05);
}

.photo-intro-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(10,20,5,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-intro-item:hover .photo-intro-item-overlay {
    opacity: 1;
}

.photo-intro-item-overlay p {
    color: rgba(240,237,228,0.9);
    font-size: 13px;
    letter-spacing: 0.1em;
}

/* ===== 特徴セクション ===== */
.features {
    background: var(--bg-cream);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-green);
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    background: var(--primary-green);
    color: white;
}

.feature-card:hover h3 {
    color: white;
}

.feature-card:hover p {
    color: rgba(255,255,255,0.8);
}

.feature-card:hover .feature-icon {
    color: rgba(200, 160, 106, 0.9);
}

.feature-number {
    font-size: 48px;
    font-family: var(--font-serif);
    color: rgba(30, 58, 15, 0.08);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-number {
    color: rgba(255,255,255,0.1);
}

.feature-icon {
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
    transition: var(--transition);
}

/* ===== 茶産地セクション - 全画面写真 + テキストオーバーレイ ===== */
.origin-section {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
}

.origin-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.origin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 20, 5, 0.85) 0%,
        rgba(10, 20, 5, 0.4) 60%,
        transparent 100%
    );
}

.origin-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 680px;
}

.origin-content .label {
    color: var(--accent-gold);
}

.origin-content h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: #f0ede4;
    line-height: 1.3;
    margin-bottom: 28px;
}

.origin-content p {
    font-size: 16px;
    color: rgba(240, 237, 228, 0.8);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* ===== 企業紹介セクション ===== */
.about-preview {
    background: var(--bg-white);
    padding: var(--section-padding) 0;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-preview-text .label {
    color: var(--primary-light);
}

.about-preview-text h2 {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: 28px;
}

.about-preview-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-preview-image-wrapper {
    position: relative;
}

.about-preview-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--matcha-pale);
    z-index: 0;
}

.about-preview-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
}

.about-preview-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-preview-image:hover img {
    transform: scale(1.03);
}

/* ===== 製造工程セクション（写真ストリップ） ===== */
.process-section {
    background: var(--bg-cream);
    padding: var(--section-padding) 0;
}

.process-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 60px;
}

.process-photo-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.process-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: saturate(0.9);
}

.process-photo-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.process-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,20,5,0.85) 0%, transparent 100%);
    padding: 40px 20px 20px;
}

.process-photo-caption span {
    font-size: 12px;
    color: rgba(240,237,228,0.9);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.process-step-number {
    font-size: 10px;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 4px;
}

/* ===== CTAセクション - 茶畑写真背景 ===== */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 5, 0.6);
}

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

.cta-content {
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 600;
    color: #f0ede4;
    margin-bottom: 20px;
    line-height: 1.35;
}

.cta-content p {
    font-size: 16px;
    color: rgba(240, 237, 228, 0.75);
    margin-bottom: 48px;
    line-height: 1.9;
}

/* ===== 製品プレビューセクション ===== */
.products-preview {
    background: var(--bg-white);
    padding: var(--section-padding) 0;
}

.coming-soon-box {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 48px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.coming-soon-box h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.coming-soon-box p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 36px;
}

.coming-soon-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
}

.highlight-item i {
    color: var(--primary-light);
}

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

/* ===== ページヘッダー ===== */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 5, 0.7) 0%,
        rgba(10, 20, 5, 0.5) 100%
    );
}

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

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: #f0ede4;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 16px;
    color: rgba(240, 237, 228, 0.7);
    letter-spacing: 0.1em;
}

.page-header .breadcrumb {
    font-size: 12px;
    color: rgba(240, 237, 228, 0.5);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

/* ===== About ページ ===== */
.philosophy {
    background: var(--bg-white);
}

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

.content-block h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 28px;
    line-height: 1.35;
}

.content-block p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 24px;
}

.content-block .philosophy-statement {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--primary-green);
    font-weight: 600;
    line-height: 1.6;
    padding: 40px;
    background: var(--matcha-pale);
    border-left: 4px solid var(--primary-green);
    text-align: left;
    margin: 40px 0;
    border-radius: 2px;
}

/* ===== VMV ===== */
.vmv-section {
    background: var(--bg-cream);
}

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

.vmv-card {
    background: var(--bg-white);
    padding: 56px 44px;
    position: relative;
}

.vmv-card-accent {
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    margin-bottom: 28px;
}

.vmv-card h3 {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.vmv-card h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.vmv-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
}

/* ===== 品質セクション ===== */
.quality-section {
    background: var(--bg-white);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.quality-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.quality-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10,20,5,0.75);
    color: rgba(240,237,228,0.9);
    font-size: 12px;
    padding: 8px 16px;
    letter-spacing: 0.1em;
}

.quality-text h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 28px;
    line-height: 1.35;
    font-weight: 600;
}

.quality-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.quality-list {
    margin-top: 32px;
}

.quality-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.quality-list-item:last-child {
    border-bottom: none;
}

.quality-list-item-icon {
    width: 40px;
    height: 40px;
    background: var(--matcha-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 16px;
}

.quality-list-item-text h4 {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 6px;
    font-size: 16px;
}

.quality-list-item-text p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ===== 会社概要テーブル ===== */
.company-info {
    background: var(--bg-cream);
}

.company-table {
    max-width: 800px;
    margin: 0 auto;
}

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

.company-table tr {
    border-bottom: 1px solid var(--border-color);
}

.company-table th {
    padding: 24px 32px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-green);
    background: var(--matcha-pale);
    width: 200px;
    vertical-align: top;
}

.company-table td {
    padding: 24px 32px;
    font-size: 15px;
    color: var(--text-gray);
    background: white;
    line-height: 1.8;
}

/* ===== 卸ページ ===== */
.wholesale-features {
    background: var(--bg-white);
}

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

.wholesale-feature-card {
    background: var(--bg-cream);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.wholesale-feature-card:hover {
    background: var(--primary-green);
}

.wholesale-feature-card:hover h3,
.wholesale-feature-card:hover p {
    color: rgba(240,237,228,0.9);
}

.wholesale-feature-card:hover .wf-icon {
    color: var(--accent-gold);
    background: rgba(255,255,255,0.1);
}

.wf-number {
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.wf-icon {
    width: 56px;
    height: 56px;
    background: var(--matcha-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 24px;
    transition: var(--transition);
}

.wholesale-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.wholesale-feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
    transition: var(--transition);
}

/* ===== 取引フロー ===== */
.flow-section {
    background: var(--bg-cream);
}

.flow-steps {
    max-width: 860px;
    margin: 0 auto;
}

.flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.flow-step:last-child {
    border-bottom: none;
}

.flow-step-number {
    font-family: var(--font-serif);
    font-size: 52px;
    color: rgba(30, 58, 15, 0.12);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.flow-step-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.flow-step-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
}

/* ===== 取引条件 ===== */
.terms-section {
    background: var(--bg-white);
}

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

.terms-card {
    background: var(--bg-cream);
    padding: 44px;
}

.terms-card h3 {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-card h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 600;
}

.terms-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
}

/* ===== 製品ページ ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-card-image {
    height: 240px;
    overflow: hidden;
}

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

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 36px 32px;
}

.product-grade {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--primary-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card-body h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-card-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tag {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--matcha-pale);
    color: var(--primary-green);
    border-radius: 2px;
    font-weight: 500;
}

/* ===== お問い合わせページ ===== */
.contact-section {
    background: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-item i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-detail-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-item-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.contact-detail-item-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-container {
    background: var(--bg-cream);
    padding: 56px;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: #c0392b;
    margin-left: 4px;
    font-size: 11px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: white;
    border: 1.5px solid var(--border-color);
    border-radius: 3px;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(30, 58, 15, 0.08);
}

.form-control.error {
    border-color: #c0392b;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    font-size: 12px;
    color: #c0392b;
    margin-top: 6px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-submit {
    margin-top: 12px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-green);
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-green);
    border-bottom: 1px solid var(--primary-light);
}

.success-message {
    display: none;
    background: var(--matcha-pale);
    border: 1px solid var(--primary-light);
    border-radius: 3px;
    padding: 24px 32px;
    text-align: center;
    margin-top: 20px;
}

.success-message i {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: block;
}

.success-message h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-cream);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    gap: 20px;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

.faq-answer-inner {
    padding-bottom: 28px;
}

/* ===== プライバシーポリシー ===== */
.privacy-section {
    background: var(--bg-white);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-green);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--matcha-pale);
    font-weight: 600;
}

.privacy-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-content ul li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 8px;
}

/* ===== フッター ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(240, 237, 228, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 160, 106, 0.4), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #f0ede4;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section > p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(200, 160, 106, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    font-size: 14px;
    color: rgba(240, 237, 228, 0.6);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f0ede4;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(240, 237, 228, 0.6);
}

.footer-contact li i {
    color: rgba(200, 160, 106, 0.7);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(240, 237, 228, 0.35);
    letter-spacing: 0.05em;
}

/* ===== スクロールトップボタン ===== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: 0 4px 16px rgba(30, 58, 15, 0.3);
}

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

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== アニメーション ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }

    /* ===== ナビゲーション：タブレットでハンバーガーメニューに切り替え ===== */
    .nav-container {
        padding: 0 24px;
        height: 68px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 24px !important;
        font-size: 15px;
        white-space: nowrap;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        margin: 12px 20px !important;
        border-radius: 3px !important;
        text-align: center;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .logo h1 {
        font-size: 24px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-content {
        padding: 0 60px 80px;
    }

    .photo-intro-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .photo-intro-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/7;
    }

    .about-preview-content {
        gap: 60px;
    }

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

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

    /* ===== about.html タブレット修正 ===== */

    /* VMVカード：タブレットは1列に */
    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .vmv-card {
        padding: 40px 32px;
    }

    .vmv-card h4 {
        font-size: 22px;
    }

    /* 品質セクション：タブレットは縦並び */
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-image img {
        height: 360px;
    }

    .quality-text h2 {
        font-size: 32px;
    }

    /* 会社概要テーブル：thの幅を狭める */
    .company-table th {
        width: 140px;
        padding: 18px 16px;
        font-size: 13px;
    }

    .company-table td {
        padding: 18px 16px;
        font-size: 14px;
    }

    /* 産地写真グリッド：タブレットは2列に */
    .photo-intro-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    /* 品質リストアイテム */
    .quality-list-item {
        gap: 16px;
    }

    .quality-list-item-text h4 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .container {
        padding: 0 20px;
    }

    /* ===== ナビゲーション（スマホ：高さのみ上書き） ===== */
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }

    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .logo h1 {
        font-size: 22px;
    }

    /* ===== ヒーロー ===== */
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-content {
        padding: 0 20px 80px;
    }

    .hero-eyebrow {
        display: none;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .scroll-indicator {
        right: 16px;
    }

    /* ===== セクション共通 ===== */
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    /* ===== グリッド ===== */
    .photo-intro-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .photo-intro-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

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

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

    .vmv-card {
        padding: 36px 24px;
    }

    .vmv-card h4 {
        font-size: 20px;
    }

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

    .quality-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* ===== 産地セクション ===== */
    .origin-content {
        padding: 0 20px;
    }

    .origin-content h2 {
        font-size: 30px;
    }

    /* ===== アバウト ===== */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview-image-wrapper::before {
        display: none;
    }

    .about-preview-image img {
        height: 280px;
    }

    /* ===== 卸売 ===== */
    .wholesale-features-grid {
        grid-template-columns: 1fr;
    }

    .wholesale-feature-card {
        padding: 36px 24px;
    }

    .wholesale-features-grid .wholesale-feature-card:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .wholesale-features-grid .wholesale-feature-card:last-child {
        border-bottom: none;
    }

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

    /* ===== プロダクト ===== */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* ===== お問い合わせ ===== */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* ===== フッター ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* ===== CTA ===== */
    .cta-content h2 {
        font-size: 28px;
    }

    /* ===== その他 ===== */
    .coming-soon-highlights {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .flow-step-number {
        font-size: 36px;
    }

    .company-table th {
        width: 100px;
        padding: 14px 12px;
        font-size: 13px;
    }

    .company-table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* 会社概要テーブル：超小画面ではth/tdを縦並び */
    .company-table table,
    .company-table tbody,
    .company-table tr,
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table tr {
        border-bottom: none;
        margin-bottom: 8px;
    }

    .company-table th {
        width: 100%;
        padding: 10px 16px;
        font-size: 12px;
        border-bottom: none;
    }

    .company-table td {
        width: 100%;
        padding: 10px 16px 16px;
        font-size: 14px;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .process-photos {
        grid-template-columns: 1fr;
    }

    .scroll-top {
        bottom: 16px;
        right: 16px;
    }

    .feature-card {
        padding: 36px 24px;
    }

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

    .nav-container {
        padding: 0 16px;
    }

    /* 数字カード */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .stat-number {
        font-size: 22px;
    }
    .stat-label {
        font-size: 11px;
        letter-spacing: 0.05em;
    }
    .stat-card {
        padding: 16px 8px;
    }
}

/* ===== about 産地写真グリッド ===== */
.about-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 380px;
}

@media (max-width: 1024px) {
    .about-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px;
    }
}

@media (max-width: 768px) {
    .about-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .about-photo-grid .photo-intro-item {
        aspect-ratio: 4/3;
        height: auto;
    }
}

/* ===== 業種カード（wholesale） ===== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.industry-card {
    background: var(--bg-cream);
    padding: 40px 24px;
    text-align: center;
}
.industry-icon {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: block;
}
.industry-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
}
.industry-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    .industry-card {
        padding: 28px 16px;
    }
    .industry-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-icon {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .industry-title {
        font-size: 15px;
    }
    .industry-desc {
        font-size: 12px;
    }
    .industry-card {
        padding: 24px 12px;
    }
}

/* ===== 数字カード（wholesale） ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}
.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--matcha-pale);
    border-radius: 4px;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}
.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }

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

    .page-header h1 {
        font-size: 38px;
    }

    .coming-soon-highlights {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        grid-template-columns: 50px 1fr;
        gap: 24px;
    }

    .flow-step-number {
        font-size: 40px;
    }

    .company-table th {
        width: 120px;
        padding: 16px 16px;
    }

    .company-table td {
        padding: 16px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-photos {
        grid-template-columns: 1fr;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .feature-card {
        padding: 44px 32px;
    }
}
