:root {
    /* Red/Gold Color Palette */
    --red-50: #fff5f5;
    --red-100: #ffe3e3;
    --red-200: #ffc9c9;
    --red-300: #ffa8a8;
    --red-400: #ff8787;
    --red-500: #E63946;
    --red-600: #C1121F;
    --red-700: #9d0208;
    --red-800: #6a040f;

    --gold-50: #fffbeb;
    --gold-100: #fff3c4;
    --gold-200: #ffe69c;
    --gold-300: #FFD60A;
    --gold-400: #FFB703;
    --gold-500: #fb8500;
    --gold-600: #dc7000;

    /* Background Colors */
    --cream: #fffef9;
    --warm-white: #fefefe;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-body: #444;
    --text-muted: #888;

    /* Borders & Shadows */
    --border-light: rgba(230, 57, 70, 0.1);
    --border-gold: rgba(255, 183, 3, 0.2);
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 6px 24px rgba(230, 57, 70, 0.1);

    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;

    /* Border Radius */
    --radius: 30px;
    --radius-sm: 16px;
    --radius-xs: 10px;

    /* Transitions */
    --transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.8;
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background Decorations ===== */
.bg-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--red-200);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--gold-200);
    bottom: -150px;
    left: -100px;
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header (white background) ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

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

.logo img,
.logo svg {
    width: auto;
    object-fit: contain;
}

.logo .logo-symbol {
    height: 60px;
}

.logo .logo-name {
    height: 105px;
    width: auto;
    object-fit: contain;
    margin: -20px -18px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--red-500);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.2);
    transition: var(--transition);
}

.btn-primary-nav:hover {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==============================================
   HERO: Full-width top-bottom layout
   テキスト上部 → 下部にキービジュアルエリア
   ============================================== */
.hero-topbottom {
    position: relative;
    padding-top: 160px;
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

/* 装飾：背景リング */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.08);
    pointer-events: none;
}

.hero-ring-1 {
    width: 600px;
    height: 600px;
    top: -120px;
    left: -200px;
}

.hero-ring-2 {
    width: 400px;
    height: 400px;
    top: 40px;
    right: -100px;
    border-color: rgba(255, 183, 3, 0.1);
}

.hero-ring-3 {
    width: 250px;
    height: 250px;
    bottom: 60px;
    left: 50%;
    border-color: rgba(230, 57, 70, 0.06);
}

/* ヒーロー上部テキストエリア */
.hero-text-area {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-600);
    margin-bottom: 20px;
}

.hero-label::before,
.hero-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--red-500), var(--gold-400));
}

.hero-topbottom h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-topbottom h1 span {
    background: linear-gradient(135deg, var(--red-500), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ヒーロー下部：キービジュアルカード帯 */
.hero-visual-strip {
    background: var(--red-500);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.hero-visual-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-500) 50%, var(--gold-500) 100%);
    opacity: 0.9;
}

.hero-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    color: #fff;
}

.hero-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.82rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--red-500);
    color: var(--red-600);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-color: var(--red-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255, 183, 3, 0.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 183, 3, 0.35);
}

.full-width {
    width: 100%;
}

.pc-only {
    display: inline;
}

/* ==============================================
   STRENGTHS: ステップ型レイアウト（左番号＋右説明）
   ============================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    font-weight: 600;
    background: linear-gradient(135deg, var(--red-500), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* 縦のコネクターライン */
.step-list::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--red-500), var(--gold-400), var(--red-500));
    opacity: 0.2;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    padding: 40px 0;
    position: relative;
}

.step-item + .step-item {
    border-top: 1px solid var(--border-light);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-number span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.step-body {
    flex: 1;
    padding-top: 8px;
}

.step-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.9;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-50), var(--gold-50));
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==============================================
   SERVICES PREVIEW: ハニカム風グリッド
   ============================================== */
.section-warm {
    background: var(--cream);
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hex-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.hex-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-400);
}

.hex-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--red-50), var(--gold-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.hex-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hex-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hex-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 7つのカードで最後の行を中央寄せ */
.hex-grid .hex-card:nth-child(5) {
    grid-column: 1 / 2;
}

.hex-grid .hex-card:nth-child(6) {
    grid-column: 2 / 3;
}

.hex-grid .hex-card:nth-child(7) {
    grid-column: 3 / 4;
}

.hex-more {
    text-align: center;
    margin-top: 48px;
}

/* ==============================================
   CTA: 白背景 2カラム（左チェック + 右フォーム）
   ============================================== */
.cta-two-col {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-left > p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.9;
}

.cta-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--red-500), var(--gold-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.cta-right {
    flex: 1;
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.cta-right h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red-500);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* ===== Service Detail Page ===== */
.svc-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-detail-card {
    display: flex;
    gap: 32px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.svc-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.svc-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--red-50), var(--gold-50));
    border: 2px solid var(--border-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.svc-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-detail-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}

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

.svc-tag {
    background: linear-gradient(135deg, var(--red-50), var(--gold-50));
    color: var(--red-700);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border-gold);
}

.svc-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-sub-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.svc-sub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.svc-sub-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red-50), var(--gold-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 16px;
}

.svc-sub-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-sub-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-sub-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ===== CTA Block (services page) ===== */
.cta-block {
    background: linear-gradient(145deg, var(--red-600), var(--red-500));
    border-radius: var(--radius);
    padding: 70px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-block::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -50px;
}

.cta-text {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.cta-text p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== Other Page Hero (small) ===== */
.hero-small {
    background: linear-gradient(160deg, var(--cream) 0%, var(--red-50) 50%, var(--gold-50) 100%);
    color: var(--text-dark);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-small h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-small p {
    color: var(--text-muted);
}

/* ===== Profile Table ===== */
.profile-section {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 60px;
    border: 1px solid var(--border-light);
}

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

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

.profile-table tr:last-child {
    border-bottom: none;
}

.profile-table th {
    text-align: left;
    padding: 24px 0;
    width: 200px;
    color: var(--red-600);
    font-size: 0.95rem;
    font-weight: 600;
    vertical-align: top;
}

.profile-table td {
    padding: 24px 0;
    font-size: 1rem;
    color: var(--text-body);
}

.profile-table td ul {
    padding-left: 18px;
}

.profile-table td li {
    margin-bottom: 4px;
}

/* ===== Map ===== */
.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Privacy ===== */
.privacy-content h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.privacy-content li {
    margin-bottom: 4px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 32px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red-500);
}

.copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==============================================
   RESPONSIVE: Tablet (1024px)
   ============================================== */
@media (max-width: 1024px) {
    .header-container {
        height: 90px;
    }

    .logo .logo-symbol {
        height: 52px;
    }

    .logo .logo-name {
        height: 90px;
        width: auto;
        object-fit: contain;
        margin: -16px -12px;
    }

    .hero-topbottom {
        padding-top: 140px;
    }

    .hero-topbottom h1 {
        font-size: 2.6rem;
    }

    .hero-cards-row {
        gap: 14px;
    }

    .hero-stat-card {
        padding: 22px 20px;
    }

    .hero-stat-num {
        font-size: 2rem;
    }

    .step-item {
        gap: 28px;
        padding: 32px 0;
    }

    .step-number {
        width: 64px;
        height: 64px;
    }

    .step-number span {
        font-size: 1.5rem;
    }

    .step-list::before {
        left: 32px;
    }

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

    .hex-grid .hex-card:nth-child(5),
    .hex-grid .hex-card:nth-child(6),
    .hex-grid .hex-card:nth-child(7) {
        grid-column: auto;
    }

    .cta-two-col {
        gap: 40px;
    }

    .cta-right {
        padding: 36px 28px;
    }

    .cta-block {
        padding: 50px 40px;
    }

    .svc-detail-card {
        padding: 32px;
    }
}

/* ==============================================
   RESPONSIVE: Mobile (768px)
   ============================================== */
@media (max-width: 768px) {
    .header-container {
        height: 80px;
    }

    .logo .logo-symbol {
        height: 44px;
    }

    .logo .logo-name {
        height: 80px;
        width: auto;
        object-fit: contain;
        margin: -14px -10px;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .pc-only {
        display: none;
    }

    /* Hero - mobile */
    .hero-topbottom {
        padding-top: 110px;
    }

    .hero-text-area {
        padding-bottom: 40px;
    }

    .hero-topbottom h1 {
        font-size: 2rem;
        line-height: 1.45;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-ring {
        display: none;
    }

    .hero-visual-strip {
        padding: 32px 0;
    }

    .hero-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-stat-card {
        max-width: 100%;
        width: 100%;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .hero-stat-num {
        font-size: 1.8rem;
    }

    /* Strengths - mobile */
    .step-list::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
        gap: 16px;
        padding: 28px 0;
    }

    .step-number {
        width: 56px;
        height: 56px;
    }

    .step-number span {
        font-size: 1.3rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        padding: 10px;
    }

    .step-body h3 {
        font-size: 1.15rem;
    }

    .step-body p {
        font-size: 0.88rem;
    }

    /* Hex Grid - mobile */
    .hex-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hex-grid .hex-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .hex-card {
        padding: 24px 16px;
    }

    .hex-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .hex-card h3 {
        font-size: 0.92rem;
    }

    .hex-card p {
        font-size: 0.78rem;
    }

    /* CTA - mobile */
    .cta-two-col {
        flex-direction: column;
        gap: 32px;
    }

    .cta-left h2 {
        font-size: 1.5rem;
    }

    .cta-left > p {
        font-size: 0.88rem;
    }

    .cta-right {
        padding: 28px 20px;
    }

    .cta-block {
        padding: 40px 20px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    /* Service detail - mobile */
    .svc-detail-card {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .svc-detail-icon {
        width: 72px;
        height: 72px;
        padding: 14px;
    }

    .svc-detail-body h3 {
        font-size: 1.15rem;
    }

    .svc-detail-body p {
        font-size: 0.88rem;
    }

    .svc-tag {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    .svc-sub-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-sub-card {
        padding: 24px 20px;
    }

    /* General - mobile */
    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

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

    .btn-primary {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .hero-small {
        padding: 110px 0 48px;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }

    .profile-section {
        padding: 32px 20px;
    }

    .profile-table th {
        display: block;
        width: 100%;
        padding: 16px 0 4px;
    }

    .profile-table td {
        display: block;
        padding: 4px 0 16px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

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