/**
 * Hitachi 2.0 - Corporate Red Dark Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --primary: #E60012;
    --primary-light: #FF3B3B;
    --primary-dark: #B0000E;
    --accent: #FF3B3B;
    --accent-light: #FF6B6B;
    --accent-dark: #8B000A;

    --success: #2ecc71;
    --warning: #38BDF8;
    --danger: #e74c3c;
    --info: #E60012;

    --white: #FFFFFF;
    --gray-50: rgba(255,255,255,0.03);
    --gray-100: rgba(255,255,255,0.06);
    --gray-200: rgba(255,255,255,0.1);
    --gray-300: rgba(255,255,255,0.16);
    --gray-400: rgba(255,255,255,0.4);
    --gray-500: rgba(255,255,255,0.55);
    --gray-600: rgba(255,255,255,0.7);
    --gray-700: rgba(255,255,255,0.8);
    --gray-800: rgba(255,255,255,0.9);
    --gray-900: #F1F1F1;

    --bg-body: #0B0B0B;
    --bg-body-alt: #141414;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-border: rgba(230,0,18,0.22);
    --bg-card-hover: rgba(230,0,18,0.08);
    --bg-input: rgba(255,255,255,0.06);
    --bg-dark: var(--primary-dark);
    --bg-surface: #1A1A1A;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.6);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.7);
    --shadow-glow: 0 2px 8px rgba(0,0,0,0.35);
    --shadow-glow-blue: 0 2px 8px rgba(230,0,18,0.12);

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 4px;
    --radius-xl: 6px;

    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Sora', var(--font-body);
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--bg-body) !important;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(230,0,18,0.05) 0%, transparent 28%),
        linear-gradient(135deg, #0B0B0B 0%, #141414 55%, #0B0B0B 100%);
    pointer-events: none;
    z-index: 0;
}

body::after { display: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
    z-index: 1;
}

/* HEADER */
.header {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-4) var(--space-5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(230,0,18,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.header-back {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    opacity: 0.9;
    transition: all 0.2s;
    font-size: 20px;
    border-radius: var(--radius-md);
}

.header-back:hover { opacity: 1; background: var(--bg-card); }

.header-title {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: -0.01em;
}

.header-action {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    opacity: 0.9;
    transition: all 0.2s;
    font-size: 18px;
    border-radius: var(--radius-md);
}

.header-action:hover { opacity: 1; background: var(--bg-card); }
.header-spacer { width: 38px; }

/* BALANCE CARD */
.balance-card {
    background: linear-gradient(135deg, rgba(230,0,18,0.08) 0%, rgba(230,0,18,0.05) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin: calc(-1 * var(--space-6)) var(--space-5) var(--space-5);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    z-index: 10;
}

.balance-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: var(--space-1);
}

.balance-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
}

.balance-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0B0B0B;
    box-shadow: 0 0 20px rgba(230,0,18,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 0 30px rgba(230,0,18,0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--gray-700);
    border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(230,0,18,0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 0 20px rgba(230,0,18,0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #0B0B0B;
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: 15px;
}

.btn-block { width: 100%; }

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* CONTENT */
.content { padding: var(--space-5); }
.content-flush { padding: 0 var(--space-5) var(--space-5); }

/* SECTION */
.section { margin-bottom: var(--space-6); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
}

/* CARDS */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-card-border);
    overflow: hidden;
    transition: all 0.25s;
}

.card:hover {
    border-color: rgba(230,0,18,0.2);
}

.card-body { padding: var(--space-5); }

.card-header {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--bg-card-border);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

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

.stat-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    border: 1px solid var(--bg-card-border);
    transition: all 0.25s;
}

.stat-item:hover {
    border-color: rgba(230,0,18,0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto var(--space-3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.primary { background: rgba(230,0,18,0.15); color: var(--primary-light); }
.stat-icon.accent { background: rgba(230,0,18,0.15); color: var(--accent-light); }
.stat-icon.success { background: rgba(46,204,113,0.15); color: var(--success); }
.stat-icon.info { background: rgba(230,0,18,0.15); color: var(--accent); }

.stat-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: var(--space-1);
}

/* QUICK ACTIONS */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-2);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    transition: all 0.25s;
}

.quick-action:hover {
    border-color: rgba(230,0,18,0.3);
    background: rgba(230,0,18,0.06);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.quick-action-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0B0B0B;
    box-shadow: 0 0 12px rgba(230,0,18,0.3);
}

.quick-action-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
}

/* MENU LIST */
.menu-list {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-card-border);
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--bg-card-hover); }

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-600);
    flex-shrink: 0;
}

.menu-icon.primary { background: rgba(230,0,18,0.15); color: var(--primary-light); }
.menu-icon.accent { background: rgba(230,0,18,0.15); color: var(--accent-light); }
.menu-icon.success { background: rgba(46,204,113,0.15); color: var(--success); }

.menu-content { flex: 1; min-width: 0; }
.menu-title { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.menu-desc { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.menu-arrow { color: var(--gray-400); font-size: 16px; }

.menu-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    background: var(--primary);
    color: #0B0B0B;
}

/* PRODUCT CARDS */
.product-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-card-border);
    overflow: hidden;
    transition: all 0.25s;
}

.product-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(230,0,18,0.25);
    transform: translateY(-2px);
}

.product-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0B0B0B;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #0B0B0B;
}

.product-body { padding: var(--space-4); }

.product-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.product-stat {
    text-align: center;
    padding: var(--space-3);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--bg-card-border);
}

.product-stat-value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
}

.product-stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 2px;
}

/* FORMS */
.form-group { margin-bottom: var(--space-5); }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-input);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--white);
    transition: all 0.25s;
}

.form-input::placeholder { color: var(--gray-400); }

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230,0,18,0.15), var(--shadow-glow-blue);
    background: rgba(255,255,255,0.08);
}

.form-input-lg {
    padding: var(--space-4) var(--space-5);
    font-size: 16px;
}

.form-hint {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: var(--space-2);
}

/* VALUE GRID */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.value-option {
    padding: var(--space-3) var(--space-2);
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.25s;
}

.value-option:hover {
    border-color: rgba(230,0,18,0.4);
    background: rgba(230,0,18,0.06);
}

.value-option.active,
.value-option.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0B0B0B;
    box-shadow: var(--shadow-glow);
}

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-success { background: rgba(46,204,113,0.15); color: var(--success); }
.badge-warning { background: rgba(240,192,64,0.15); color: var(--warning); }
.badge-danger { background: rgba(231,76,60,0.15); color: var(--danger); }
.badge-info { background: rgba(230,0,18,0.15); color: var(--accent); }
.badge-primary { background: rgba(230,0,18,0.15); color: var(--primary-light); }

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: var(--space-10) var(--space-5);
}

.empty-icon {
    font-size: 48px;
    color: var(--gray-400);
    margin-bottom: var(--space-4);
}

.empty-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.empty-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* TABBAR */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    z-index: 1000;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-top: 1px solid rgba(230,0,18,0.1);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.tabbar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 0 8px;
    color: rgba(255,255,255,0.35);
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.tab-item i { font-size: 20px; }

.tab-item span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tab-item:hover { color: rgba(255,255,255,0.55); }

.tab-item.active {
    color: var(--primary);
}

.tab-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 0 0 2px 2px;
}

.tab-deposit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #0B0B0B;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: all 0.2s;
}

.tab-deposit i { font-size: 18px; }
.tab-deposit:hover { background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%); }

/* PROFILE */
.profile-header {
    background: linear-gradient(135deg, rgba(230,0,18,0.1) 0%, rgba(230,0,18,0.06) 100%);
    border-bottom: 1px solid var(--bg-card-border);
    padding: var(--space-6) var(--space-5);
    text-align: center;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,0,18,0.2), rgba(230,0,18,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-light);
    border: 2px solid rgba(230,0,18,0.3);
    box-shadow: 0 0 20px rgba(230,0,18,0.15);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.profile-info {
    font-size: 13px;
    color: var(--gray-500);
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(230,0,18,0.15);
    border: 1px solid rgba(230,0,18,0.25);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: var(--space-3);
}

/* PLAN DISABLED */
.plan-disabled { opacity: 0.5; }

.plan-btn-disabled {
    background: rgba(255,255,255,0.06) !important;
    cursor: not-allowed;
    opacity: 0.6;
    color: var(--gray-500) !important;
}

.plan-btn-disabled:hover {
    background: rgba(255,255,255,0.06) !important;
    transform: none;
}

/* UTILITIES */
.text-primary { color: var(--primary-light) !important; }
.text-accent { color: var(--accent-light) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--gray-500) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(230,0,18,0.2); }
    50% { box-shadow: 0 0 30px rgba(230,0,18,0.4); }
}

@keyframes glowPulseBlue {
    0%, 100% { box-shadow: 0 0 15px rgba(230,0,18,0.15); }
    50% { box-shadow: 0 0 30px rgba(230,0,18,0.3); }
}

.animate-in { animation: fadeIn 0.3s ease forwards; }
.animate-up { animation: fadeInUp 0.4s ease forwards; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-glow { animation: glowPulse 2s ease-in-out infinite; }

/* RESPONSIVE */
@media (max-width: 360px) {
    .balance-value { font-size: 28px; }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
}


/* Hitachi 2.0 fixed plans — sharp cards with image */
.hitachi-plans { display: flex; flex-direction: column; gap: 14px; padding: 0 16px 24px; }
.hitachi-plan {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(230,0,18,0.18);
  border-radius: 4px;
  overflow: hidden;
}
.hitachi-plan-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 360;
  max-height: 200px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0B0B0B;
}
.hitachi-plan-body { padding: 14px 14px 16px; }
.hitachi-plan-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}
.hitachi-plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hitachi-plan-stat {
  background: rgba(230,0,18,0.06);
  border: 1px solid rgba(230,0,18,0.12);
  border-radius: 2px;
  padding: 8px 6px;
  text-align: center;
}
.hitachi-plan-stat-val { font-weight: 700; font-size: 0.85rem; color: #FF3B3B; }
.hitachi-plan-stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.hitachi-plan-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  padding: 8px;
  border-left: 2px solid #E60012;
  background: rgba(230,0,18,0.05);
}
.hitachi-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E60012;
  color: #0B0B0B;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 2px;
}
.hitachi-plan-btn:active { background: #B0000E; }
.hitachi-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  padding: 8px 16px 12px;
}
.hitachi-hero-banner {
  width: calc(100% - 32px);
  margin: 12px 16px 18px;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  background: #0B0B0B;
  border-radius: 0;
  border: 1px solid rgba(230,0,18,0.18);
  display: block;
}
