/* ========================================
   style.css
   - `index.html` 内の `<style>` から分離したCSS
   - 見た目/レスポンシブ維持のため、内容は原則そのまま移植
   ======================================== */

/* ========================================
   CSS Variables from design-protocol.json
======================================== */
:root {
    /* Colors - 青・水色ベース */
    --color-primary: #0072BE;
    --color-primary-light: #2593D1;
    --color-primary-dark: #005A99;
    --color-secondary: #005A99;
    --color-accent-orange: #F5C518;
    --color-accent-yellow: #FFFDE7;
    --color-text: #1a1a1a;
    --color-text-light: #6C757D;
    --color-background: #FFFDF8;
    --color-background-alt: #F5F5F0;
    
    /* Fonts */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Noto Serif JP', serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 4px 15px rgba(0, 114, 190, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-default: all 300ms ease;
}

/* ========================================
   Base Styles
======================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, var(--color-primary) 70%, var(--color-primary-light) 100%);
    z-index: 1200;
    transition: width 100ms linear;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* ========================================
   Typography
======================================== */
.heading-xl {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    font-family: var(--font-secondary);
    line-height: 1.25;
    color: #1A1A1A;
}

.heading-lg {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: var(--font-secondary);
    line-height: 1.3;
    color: #1A1A1A;
}

.heading-md {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 1.4;
    color: var(--color-text);
}

/* ========================================
   Decorations
======================================== */
.accent-underline {
    background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.4) 60%);
    padding: 0 4px;
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 700;
}

.accent-text {
    color: var(--color-accent-orange);
    font-weight: 700;
}

/* ========================================
   Section Labels
======================================== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent-yellow);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-label-light::after {
    background: var(--color-accent-yellow);
}

/* ========================================
   Buttons
======================================== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0072BE 0%, #2593D1 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-button);
    transition: var(--transition-default);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #2593D1 0%, #0072BE 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 190, 0.4);
    color: #FFFFFF;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #F5C518 0%, #E0B015 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: var(--transition-default);
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, #E0B015 0%, #F5C518 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    color: #FFFFFF;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, #F5C518 0%, #E0B015 100%);
    color: #005A99;
    border: none;
    border-radius: 9999px;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: 0 4px 0 #c99a00, 0 6px 20px rgba(0,0,0,0.15);
    transition: var(--transition-default);
    text-decoration: none;
    cursor: pointer;
}

.btn-cta--floating {
    /* マイクロコピーを入れても高さを崩さない */
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.7rem 1.25rem;
    min-height: 56px;
}

.btn-cta__micro {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(0, 90, 153, 0.85);
}

.btn-cta__label {
    line-height: 1.1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #c99a00, 0 10px 25px rgba(0,0,0,0.2);
    color: #005A99;
}

.btn-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c99a00, 0 4px 10px rgba(0,0,0,0.1);
}

.cta-microcopy {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* FV（暗背景）では白寄りに */
.fv-text-area .cta-microcopy {
    color: rgba(255, 255, 255, 0.85);
}

/* 明るい背景ではMuted寄りに */
.campaign-section-bg .cta-microcopy,
.price-campaign-card .cta-microcopy {
    color: var(--color-text-light);
}

@media (max-width: 575.98px) {
    .cta-microcopy {
        font-size: 0.8rem;
    }
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition-default);
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .btn-outline-custom {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }
}

/* Voice OK Image */
.voice-ok-img {
    height: 40px;
    width: auto;
}
@media (min-width: 768px) {
    .voice-ok-img {
        height: 56px;
    }
}

/* ========================================
   Cards
======================================== */
.card-custom {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: none;
}

.card-elevated {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: none;
}

.card-feature {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--color-primary);
}

/* ========================================
   Sections
======================================== */
.section-default {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-alternate {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.section-hero {
    padding: 4rem 0;
    background: linear-gradient(180deg, #E3F2FD 0%, #FFFFFF 100%);
}

.section-primary {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #FFFFFF;
}

.section-secondary {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2D6B94 100%);
    color: #FFFFFF;
}

/* ========================================
   Badges
======================================== */
.badge-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-accent {
    /* ラベル感を優先（ボタンっぽさを抑える - 左線スタイル） */
    background: transparent;
    color: var(--color-primary-dark); /* 白背景でも見える濃い色に */
    border: none;
    border-left: 4px solid var(--color-accent-orange);
    padding: 2px 0 2px 10px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: none;
    cursor: default;
    line-height: 1.4;
    display: inline-block;
}

/* ========================================
   Comparison section labels (トンマナ統一)
======================================== */
.comparison-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.04);
    line-height: 1.2;
}

.comparison-label--default {
    color: #374151;
    background: rgba(156, 163, 175, 0.16);
    border-color: rgba(156, 163, 175, 0.35);
}

.comparison-label--secondary {
    color: #374151;
    background: rgba(107, 114, 128, 0.14);
    border-color: rgba(107, 114, 128, 0.35);
}

/* マナビバ＋だけ目立たせる */
.comparison-label--primary {
    color: var(--color-primary-dark);
    background: linear-gradient(
        135deg,
        rgba(245, 197, 24, 0.30) 0%,
        rgba(0, 114, 190, 0.10) 100%
    );
    border-color: rgba(245, 197, 24, 0.75);
    box-shadow: 0 8px 18px rgba(245, 197, 24, 0.18);
}

/* ========================================
   WHY CHOOSE US - Comparison Card (メリハリ強化)
======================================== */
.comparison-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 114, 190, 0.14);
}

.comparison-title {
    letter-spacing: 0.02em;
}

.comparison-right {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .comparison-right {
        padding-left: 1.75rem;
        border-left: 1px solid rgba(0, 0, 0, 0.10);
    }
}

.comparison-box {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: var(--transition-default);
    position: relative;
    z-index: 1;
}

.comparison-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.comparison-box--primary {
    border: 2px solid rgba(245, 197, 24, 0.75);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.comparison-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    text-wrap: pretty;
}

@media (max-width: 575.98px) {
    .comparison-box p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

.comparison-punch {
    display: block;
    margin-top: 0.35rem;
    font-weight: 900;
    color: var(--color-primary-dark);
}

.badge-new {
    background: #DC3545;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 800;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ========================================
   Number Badge
======================================== */
.number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0072BE 0%, #2593D1 100%);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-accent);
    box-shadow: var(--shadow-button);
    flex-shrink: 0;
}

.number-badge-lg {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
}

/* ========================================
   WHY CHOOSE US - POINT badge
======================================== */
.why-point-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(0, 114, 190, 0.10) 0%, rgba(245, 197, 24, 0.18) 100%);
    border: 1px solid rgba(0, 114, 190, 0.20);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.why-point-badge__label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.why-point-badge__num {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    line-height: 1;
}

@media (max-width: 575.98px) {
    .why-point-badge {
        padding: 0.5rem 0.9rem;
    }
    .why-point-badge__num {
        font-size: 1.15rem;
    }
}

/* ========================================
   Check Items
======================================== */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--color-accent-yellow);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* ========================================
   Speech Bubbles
======================================== */
.speech-bubble-left {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-card);
}

.speech-bubble-left::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left: 12px solid white;
}

.speech-bubble-right {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-card);
}

.speech-bubble-right::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right: 12px solid white;
}

/* ========================================
   Header / Navigation
======================================== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-main .nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    transition: var(--transition-default);
}

.header-main .nav-link:hover {
    color: var(--color-primary);
}

/* Logo Responsive Size */
.logo-header {
    width: 220px;
    height: auto;
}

/* スマホ：ロゴを中央揃え */
@media (max-width: 991.98px) {
    .header-main .navbar {
        position: relative;
    }
    
    .header-main .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .logo-header {
        width: 280px;
    }
}

@media (min-width: 992px) {
    .logo-header {
        width: 320px;
    }
}

/* ========================================
   Footer
======================================== */
.footer-main {
    background: var(--color-secondary);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

/* ========================================
   Floating CTA
======================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 1020;
    transform: translateY(100%);
    transition: var(--transition-default);
    border-radius: 16px 16px 0 0;
}

.floating-cta.visible {
    transform: translateY(0);
}

/* ========================================
   FAQ Accordion
======================================== */
.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid #E0E0E0;
}

.faq-item .faq-answer {
    padding: 1.25rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   Comparison Cards (Horizontal Scroll)
======================================== */
.comparison-scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.comparison-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.comparison-scroll-card {
    flex-shrink: 0;
    width: 280px;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    scroll-snap-align: start;
    position: relative;
}

.comparison-scroll-card.recommended {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.comparison-item-label {
    opacity: 0.9;
    font-weight: 600;
}

.comparison-item-value {
    font-weight: 700;
    text-align: right;
}

.comparison-item-value--recommended {
    color: var(--color-accent-yellow);
}

.comparison-item-value--good {
    color: #198754; /* bootstrap success */
    font-weight: 700;
}

.comparison-item-value--bad {
    color: #dc3545; /* bootstrap danger */
    font-weight: 700;
}

.comparison-item-value--neutral {
    color: #6c757d; /* bootstrap secondary */
    font-weight: 700;
}

.cmp-mark {
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.cmp-mark--ok {
    color: var(--color-accent-yellow);
}

.cmp-mark--tri {
    color: rgba(255, 255, 255, 0.85);
}

.cmp-mark--ng {
    color: rgba(255, 255, 255, 0.7);
}

.cmp-mark--ok-dark {
    color: #198754;
}

.cmp-mark--tri-dark {
    color: #fd7e14;
}

.cmp-mark--ng-dark {
    color: #dc3545;
}

.cmp-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse; /* ◯を常に一番右に */
    gap: 0.5rem;
    min-width: 6.5rem;
}

.cmp-note {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cmp-note--recommended {
    color: var(--color-accent-yellow);
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

/* 3カラム構造の比較行 */
.cmp-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cmp-label {
    flex: 1;
    min-width: 0;
}

.cmp-note-text {
    color: var(--color-accent-yellow);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: right;
    white-space: nowrap;
}

.cmp-row .cmp-mark {
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .comparison-scroll-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        overflow-x: visible;
        padding: 0;
    }
    
    .comparison-scroll-card {
        width: auto;
    }
}

/* Legacy Comparison Cards */
.comparison-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
}

.comparison-card.recommended {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

/* ========================================
   Slider
======================================== */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 500ms ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-default);
    z-index: 10;
}

.slider-nav-btn:hover {
    background: #FFFFFF;
}

.slider-nav-btn.prev {
    left: 1rem;
}

.slider-nav-btn.next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
}

.slider-dot.active {
    background: #FFFFFF;
}

/* ========================================
   Form Styles
======================================== */
.form-control-custom {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-default);
}

.form-control-custom:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 114, 190, 0.1);
    outline: none;
}

.form-label-custom {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

/* ========================================
   Utility Classes
======================================== */
.text-primary-custom {
    color: var(--color-primary) !important;
}

.text-accent {
    color: #F5C518 !important;
}

.text-accent-orange {
    color: #F5C518 !important;
}

.bg-primary-custom {
    background-color: var(--color-primary) !important;
}

.bg-primary-dark {
    background-color: var(--color-primary-dark) !important;
}

/* object-fit helpers */
.object-fit-cover {
    object-fit: cover;
}

/* ========================================
   Learning Time Graph Section (Responsive)
======================================== */
.graph-section-title {
    font-size: 1.25rem;
}
.graph-section-number {
    font-size: 1.75rem;
}
.graph-section-lead {
    font-size: 0.9rem;
    color: #555;
}
.graph-section-desc {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.7;
}
.graph-badge {
    font-size: 0.75rem;
}
.graph-area {
    height: 200px;
    padding-top: 12px;
}
.graph-bar-normal {
    width: 45px;
}
.graph-bar-manabiba {
    width: 45px;
}
.graph-time-label {
    font-size: 0.7rem;
}
.graph-time-number {
    font-size: 1.1rem;
}
.graph-time-number-lg {
    font-size: 1.25rem;
}
.graph-up-label {
    font-size: 0.6rem;
}
.graph-label {
    font-size: 0.6rem;
}
.graph-note {
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .graph-section-title {
        font-size: 1.75rem;
    }
    .graph-section-number {
        font-size: 2.5rem;
    }
    .graph-section-lead {
        font-size: 1.05rem;
    }
    .graph-section-desc {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    .graph-badge {
        font-size: 1rem;
    }
    .graph-area {
        height: 300px;
        padding-top: 16px;
    }
    .graph-bar-normal {
        width: 70px;
        height: auto !important;
    }
    .graph-bar-manabiba {
        width: 70px;
        height: auto !important;
    }
    /* PC用のバー高さ - 平日 */
    .col-6:first-child .graph-bar-normal {
        height: 75px !important;
    }
    .col-6:first-child .graph-bar-manabiba {
        height: 160px !important;
    }
    /* PC用のバー高さ - 土日 */
    .col-6:last-child .graph-bar-normal {
        height: 110px !important;
    }
    .col-6:last-child .graph-bar-manabiba {
        height: 190px !important;
    }
    .graph-time-label {
        font-size: 0.9rem;
    }
    .graph-time-number {
        font-size: 1.5rem;
    }
    .graph-time-number-lg {
        font-size: 2rem;
    }
    .graph-up-label {
        font-size: 0.85rem;
    }
    .graph-label {
        font-size: 0.85rem;
    }
    .graph-note {
        font-size: 0.85rem;
    }
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2D6B94 100%) !important;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 1029;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu .nav-link:hover {
    background: rgba(0, 114, 190, 0.05);
    color: var(--color-primary);
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 3px 0;
    transition: var(--transition-default);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Campaign Banner */
.campaign-banner {
    background: linear-gradient(90deg, #F5C518 0%, #FFD700 50%, #F5C518 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.campaign-banner::before,
.campaign-banner::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #005A99;
    font-size: 0.75rem;
    opacity: 0.6;
}

.campaign-banner::before {
    left: 1rem;
}

.campaign-banner::after {
    right: 1rem;
}

.campaign-text {
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-default, .section-alternate, .section-primary, .section-secondary {
        padding: 3rem 0;
    }
}

/* PC only: FV left padding */
@media (min-width: 992px) {
    .fv-text-area {
        padding-left: calc(5% + 2rem) !important;
        /* PCのFVが詰まって見えないよう、上下に余白を追加 */
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important;
    }
}

/* FV Sub Copy - レスポンシブ対応 */
.fv-subcopy {
    opacity: 0.9;
    font-size: 0.85rem;
    line-height: 1.8;
}

@media (min-width: 576px) {
    .fv-subcopy {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .fv-subcopy {
        font-size: 1.25rem;
    }
}

/* FV CTA block: マイクロコピーをボタンに合わせて中央揃え */
.fv-cta-box {
    /* ボタン幅に合わせて自然に収まる */
}

/* Talent Image Styles */
.talent-image-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 20;
}

.talent-image {
    max-height: 140px;
    transition: transform 0.3s ease;
}

/* スマホ：タレント画像をスライダーの右下に配置 */
.talent-image-mobile {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 40;
}

@media (max-width: 991.98px) {
    .fv-mobile-fit {
        min-height: auto !important;
    }
    
    .talent-image {
        max-height: 120px;
    }
    
    .fv-text-area .d-flex.flex-column.flex-lg-row {
        flex-direction: column !important;
    }
    
    /* スマホ用タレント画像（CTA直前に大きく表示） */
    .fv-talent-mobile-img {
        max-height: 200px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
    }
    
    .fv-slider-mobile {
        min-height: 280px !important;
        height: 35vh !important;
        max-height: 350px;
    }
}

@media (max-width: 575.98px) {
    .talent-image {
        max-height: 100px;
    }
    
    .fv-talent-mobile-img {
        max-height: 180px;
    }
    
    .fv-slider-mobile {
        min-height: 250px !important;
        height: 32vh !important;
        max-height: 320px;
    }
}

/* PC */
@media (min-width: 992px) {
    /* テキストエリアを上下中央寄せ & テキスト左揃え */
    .fv-text-area {
        position: relative;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }
    
    /* タレント画像をテキストエリアの右下に絶対配置 */
    .fv-text-area .talent-image-wrapper {
        position: absolute !important;
        right: 40px;
        bottom: 20px;
        transform: none;
        display: block !important;
    }
    
    .talent-image {
        max-height: 150px;
    }
    
    /* PCではモバイル用のタレント画像を非表示 */
    .talent-image-mobile {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .talent-image {
        max-height: 170px;
    }
    
    .fv-text-area .talent-image-wrapper {
        right: 25px;
    }
}

@media (min-width: 1400px) {
    .talent-image {
        max-height: 185px;
    }
    
    .fv-text-area .talent-image-wrapper {
        right: 15px;
    }
}

/* ========================================
   Inline style replacements (index.html)
   - style="..." をクラスへ移行した分をここに集約
======================================== */

/* Typography utils */
.u-fs-14 {
    font-size: 0.875rem;
}

/* FV (ファーストビュー) */
.fv-section {
    margin-top: 80px;
}

.fv-minheight {
    min-height: calc(100vh - 220px);
}

.fv-title-font {
    font-family: var(--font-secondary);
}

.fv-title-underline {
    height: 0.5rem;
    background: rgba(255, 215, 0, 0.6);
}

.talent-image--fv {
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

.fv-slider-minheight {
    min-height: 300px;
}

.fv-slide-gradient {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.fv-slide-index-badge {
    background: rgba(0,0,0,0.6);
    z-index: 10;
}

.talent-image-mobile-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.stats-bg {
    background: rgba(0, 114, 190, 0.05);
}

/* Graph bar heights (mobile baseline) */
.graph-h-50 { height: 50px; }
.graph-h-75 { height: 75px; }
.graph-h-107 { height: 107px; }
.graph-h-125 { height: 125px; }

/* Comparison (recommended card inline styles) */
.cmp-recommend-badge {
    border-radius: 0 0 0 1rem;
}
.cmp-border-white-20 {
    border-color: rgba(255,255,255,0.2) !important;
}
.cmp-border-white-30 {
    border-color: rgba(255,255,255,0.3) !important;
}
.text-white-70 {
    color: rgba(255,255,255,0.7);
}

/* Common inline-style replacements */
.img-fullwidth {
    max-width: 100%;
    width: 100%;
}

.bg-gray-100 {
    background: #f8f9fa;
}

.bg-primary-tint-05 {
    background: rgba(0, 114, 190, 0.05);
}

.bg-primary-tint-03-border {
    background: rgba(0, 114, 190, 0.03);
    border: 1px solid rgba(0, 114, 190, 0.2);
}

.bg-primary-tint-10-border-primary {
    background: rgba(0, 114, 190, 0.1);
    border: 2px solid var(--color-primary);
}

.badge-fixed-100 {
    width: 100px;
    min-width: 100px;
    flex-shrink: 0;
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

/* Mobile typography polish: avoid awkward wraps on tight widths */
@media (max-width: 575.98px) {
    body {
        overflow-wrap: anywhere;
    }
    .text-muted,
    .text-white-50,
    .text-white-85 {
        line-height: 1.65;
    }
}

.radius-lg-clip {
    border-radius: var(--radius-lg);
}

/* 学習エリアカード - 上揃え */
#features .card-custom > .row {
    align-items: stretch;
}

#features .card-custom > .row > .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.minh-250 {
    min-height: 250px;
}

/* フロアマップ画像 - PCで見切れ防止 */
@media (min-width: 992px) {
    .floor-map-img {
        max-height: 70vh;
        width: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }
}

.voice-box-primary {
    background: rgba(0, 114, 190, 0.03);
    border: 1px dashed rgba(0, 114, 190, 0.2);
}

/* ========================================
   Contact - AI reception callout (speech bubble)
======================================== */
.ai-reception-callout {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: start;
}

.ai-reception-avatar {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    background: #fff;
    border: 2px solid rgba(0, 114, 190, 0.2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    object-fit: contain;
    padding: 4px;
    animation: avatar-float 3s ease-in-out infinite;
}

@keyframes avatar-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(2deg);
    }
    75% {
        transform: translateY(4px) rotate(-2deg);
    }
}

.ai-reception-bubble {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 114, 190, 0.18);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}

.ai-reception-bubble::before,
.ai-reception-bubble::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 26px;
    width: 0;
    height: 0;
    border-style: solid;
}

.ai-reception-bubble::before {
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(0, 114, 190, 0.18) transparent transparent;
}

.ai-reception-bubble::after {
    left: -8px;
    border-width: 9px 9px 9px 0;
    border-color: transparent #fff transparent transparent;
}

.ai-reception-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(0, 114, 190, 0.95);
    margin-bottom: 6px;
}

.ai-reception-name::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 114, 190, 0.9);
    box-shadow: 0 0 0 4px rgba(0, 114, 190, 0.12);
}

@media (max-width: 575.98px) {
    .ai-reception-callout {
        grid-template-columns: 72px 1fr;
        gap: 12px;
    }
    .ai-reception-avatar {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        padding: 3px;
    }
    .ai-reception-bubble {
        padding: 12px 14px;
        border-radius: 14px;
    }
}

/* 利用者の声アイコン */
.voice-box-primary .d-flex {
    align-items: center;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.voice-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 114, 190, 0.15);
}

@media (max-width: 767.98px) {
    .voice-box-primary .d-flex {
        gap: 0.75rem !important;
    }
    
    .voice-icon {
        width: 56px;
        height: 56px;
        padding: 4px;
    }
    
    .voice-box-primary p.small {
        font-size: 0.65rem;
    }
    
    .voice-box-primary p.fw-bold {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.voice-box-accent {
    background: rgba(245, 197, 24, 0.10);
    border: 1px dashed rgba(245, 197, 24, 0.55);
}

.voice-box-accent .d-flex {
    align-items: center;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

@media (max-width: 767.98px) {
    .voice-box-accent .d-flex {
        gap: 0.75rem !important;
    }
    
    .voice-box-accent p.small {
        font-size: 0.65rem;
    }
    
    .voice-box-accent p.fw-bold {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.area03-border {
    border: 2px solid var(--color-accent-yellow);
}

.u-fs-11 {
    font-size: 1.1rem;
}

.u-fs-085 {
    font-size: 0.85rem;
}

.equip-img {
    height: 120px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .equip-img {
        height: 160px;
    }
}

@media (min-width: 992px) {
    .equip-img {
        height: 180px;
    }
}

.equip-icon-wrap {
    height: 120px;
    background: rgba(0, 114, 190, 0.05);
}

@media (min-width: 768px) {
    .equip-icon-wrap {
        height: 160px;
    }
}

@media (min-width: 992px) {
    .equip-icon-wrap {
        height: 180px;
    }
}

.ai-app-deco {
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 114, 190, 0.05) 0%, transparent 50%);
    transform: rotate(15deg);
    pointer-events: none;
}

.ai-box-bg {
    background: rgba(0, 114, 190, 0.05);
}

.ai-thumb-140 {
    height: 140px;
    object-fit: cover;
}

.ai-ekichika-wrap {
    height: 140px;
    background: #f8f9fa;
    padding: 8px;
}

.ai-ekichika-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.founder-card-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.maxw-800-center {
    max-width: 800px;
    margin: 0 auto;
}

.u-fs-15 {
    font-size: 1.5rem;
}

.text-white-85 {
    color: rgba(255,255,255,0.85);
}

.voice-summary-primary {
    background: rgba(0, 114, 190, 0.05);
}

.voice-summary-accent {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.voice-deco {
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    transform: rotate(-10deg);
    pointer-events: none;
}

.lh-18 {
    line-height: 1.8;
}

/* Table */
.table-minw-600 {
    min-width: 600px;
}

/* PRICE / Courses */
.price-border-primary {
    border: 2px solid var(--color-primary);
}
.price-border-accent {
    border: 2px solid var(--color-accent-orange);
}
.price-bg-accent {
    background: var(--color-accent-orange);
}
.price-campaign-card {
    border: 2px solid #F5C518;
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF8E1 100%);
}
.campaign-divider-sm {
    width: 1px;
    height: 40px;
    background: #E0E0E0;
}
.campaign-offer-box-sm {
    background: #FFFFFF;
    border: 2px solid #F5C518;
}
.u-fs-14-2 {
    font-size: 0.875rem;
}
.img-180-cover {
    height: 180px;
    object-fit: cover;
}
.course-border-accent {
    border: 2px solid var(--color-accent-orange);
}
.course-tag-accent {
    background: var(--color-accent-orange);
}
.avatar-160 {
    width: 160px;
}

/* FLOW / Steps */
.step-num-blue {
    opacity: 0.2;
}
.step-num-orange {
    opacity: 0.3;
}
.step-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.arrow-32 { width: 32px; }
.arrow-24 { width: 24px; }
.flow-arrow-pos-1 { left: 31%; top: 120px; }
.flow-arrow-pos-2 { left: 64%; top: 120px; }
.maxw-800 { max-width: 800px; }

/* ACCESS */
.access-glass {
    background: rgba(255,255,255,0.1);
}
.ol-lh-2 { line-height: 2; }
.aspect-16-10 {
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.1);
}

/* CONTACT */
.section-bg-alt {
    background: var(--color-background-alt);
}

/* PC: 予約セクションをコンパクトに */
@media (min-width: 992px) {
    #contact.py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    #contact .heading-lg {
        font-size: 1.75rem;
    }
    
    #contact .mb-3 {
        margin-bottom: 0.75rem !important;
    }
    
    #contact .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    #contact .card-custom {
        padding: 0.75rem !important;
    }
    
    #contact .row.g-4 {
        --bs-gutter-y: 1rem;
    }
    
    #contact .form-control {
        padding: 0.375rem 0.75rem;
    }
}
.maxw-900 { max-width: 900px; }
.dot-8 {
    width: 8px;
    height: 8px;
}
.cursor-pointer { cursor: pointer; }
.date-selected {
    border: 2px solid var(--color-primary);
    background: rgba(0, 114, 190, 0.05);
}
.btn-xs {
    font-size: 0.75rem;
}
.btn-danger-solid {
    background: #DC3545;
    font-size: 1rem;
}

/* FOOTER */
.bg-alt {
    background: var(--color-background-alt);
}
.text-white-40 { color: rgba(255,255,255,0.4); }
.th-w-25 { width: 25%; }

/* ========================================
   PRICE: Entrance Fee + Plan (mobile polish)
   ======================================== */
.price-composition__plus {
    line-height: 1;
}

@media (max-width: 575.98px) {
    .price-composition {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.75rem !important; /* gap-4 を上書き */
    }

    .price-composition .card-custom {
        width: min(360px, 100%);
        padding-left: 2rem !important;  /* px-5 を上書き */
        padding-right: 2rem !important; /* px-5 を上書き */
    }

    .price-composition__plus {
        font-size: 1.5rem;
        margin: -0.25rem 0;
    }
}

/* Campaign */
.campaign-section-bg {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF8E1 100%);
}
.campaign-card-border {
    border: 2px solid #F5C518;
}
/* 斜めリボン（PC: 右上、スマホ: 左上） */
.corner-ribbon {
    position: absolute;
    width: 180px;
    padding: 10px 0;
    background: linear-gradient(135deg, #DC3545 0%, #c82333 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.4);
    z-index: 10;
    /* PC: 右上 */
    top: 18px;
    right: -48px;
    left: auto;
    transform: rotate(45deg);
}

.corner-ribbon::before,
.corner-ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    border: 4px solid transparent;
    border-top-color: #a71d2a;
}

.corner-ribbon::before {
    left: 0;
    border-left-color: #a71d2a;
}

.corner-ribbon::after {
    right: 0;
    border-right-color: #a71d2a;
}

/* スマホ: 左上に切り替え */
@media (max-width: 991.98px) {
    .corner-ribbon {
        top: 14px;
        left: -48px;
        right: auto;
        width: 170px;
        font-size: 0.85rem;
        padding: 8px 0;
        transform: rotate(-45deg);
    }
}

@media (max-width: 575.98px) {
    .corner-ribbon {
        top: 12px;
        left: -50px;
        width: 160px;
        font-size: 0.8rem;
        padding: 7px 0;
    }
}

/* 小さめバリエーション */
.corner-ribbon--sm {
    width: 160px;
    font-size: 0.85rem;
    padding: 8px 0;
    top: 14px;
    right: -45px;
}

@media (max-width: 991.98px) {
    .corner-ribbon--sm {
        top: 12px;
        left: -48px;
        right: auto;
        width: 155px;
        font-size: 0.8rem;
        padding: 7px 0;
    }
}

@media (max-width: 575.98px) {
    .corner-ribbon--sm {
        top: 10px;
        left: -50px;
        width: 150px;
        font-size: 0.75rem;
        padding: 6px 0;
    }
}

/* キャンペーンセクションのCTA */
.campaign-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .campaign-cta {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

.campaign-divider {
    width: 1px;
    height: 50px;
    background: #E0E0E0;
}
.campaign-offer-box {
    background: #FFFFFF;
    border: 2px solid #F5C518;
}
.text-danger-strong {
    color: #DC3545;
}
.u-fs-16 {
    font-size: 1rem;
}

/* Story center image */
.story-student-maxw {
    max-width: 280px;
}

/* Solution box decorations */
.solution-deco-lg {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}
.solution-deco-sm {
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}
.text-white-80 {
    color: rgba(255,255,255,0.8);
}
.text-white-90 {
    color: rgba(255,255,255,0.9);
}

/* ========================================
   Access Step Cards
======================================== */
.access-step-card {
    box-shadow: var(--shadow-card);
    transition: var(--transition-default);
}

.access-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.access-step-text {
    text-align: center;
}

.access-step-title {
    font-size: 1rem;
    line-height: 1.5;
}

.access-step-desc {
    font-size: 0.85rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .access-step-title {
        font-size: 1.1rem;
    }
    
    .access-step-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .access-step-card {
        padding: 1rem !important;
    }
    
    .access-step-text {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .access-step-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem !important;
    }
    
    .access-step-desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}


