/* Basic Clean/Premium Reset */
:root {
    --primary-color: #0F2C59;
    /* Navy */
    --accent-color: #D4AF37;
    /* Stronger Gold */
    --text-color: #333333;
    --bg-color: #F8F9FA;
    --white: #FFFFFF;
    --safe-green: #2E7D32;
    --urgent-red: #B71C1C;
    --border-radius: 8px;
    /* Slightly sharper for professional feel */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Shippori Mincho', serif;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
}

.site-header h1 {
    font-size: 0;
    /* Hide text if any, though image alt text handles accessibility */
    line-height: 0;
    margin: 0;
    padding: 0;
}

.header-logo {
    height: 40px;
    /* Adjust to match design height references */
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    color: var(--white);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 44, 89, 0.8));
}

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

.urgent-badge {
    background: var(--urgent-red);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.hero-sub {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub strong {
    color: var(--accent-color);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Section Basics */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-lead {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.15rem;
}

/* Problem/Comparison Section */
.comparison-panel {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 2rem;
    position: relative;
}

.panel-left,
.panel-right {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bad-panel {
    background: #fdfdfd;
    border-right: 1px solid #eee;
    opacity: 0.8;
}

.good-panel {
    background: #fff;
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 20;
    font-style: italic;
}

.panel-left h3,
.panel-right h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.status-bar {
    margin-bottom: 15px;
    background: #eee;
    border-radius: 4px;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.status-bar .bar {
    display: block;
    height: 100%;
    background: #999;
}

.status-bar .label {
    position: absolute;
    left: 10px;
    top: 0;
    line-height: 30px;
    font-size: 0.8rem;
    color: #555;
    z-index: 2;
}

.status-bar.instant .bar {
    background: var(--urgent-red);
    color: white;
    text-align: right;
    padding-right: 10px;
    line-height: 30px;
    font-weight: bold;
    animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.risk-text,
.benefit-text {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-text {
    font-weight: 500;
    color: var(--primary-color);
}

/* Compression Section */
.compression-section {
    background: linear-gradient(to bottom, #1a237e, #0F2C59);
    color: white;
    padding: 80px 0;
}

.compression-section .section-title {
    color: white;
}

.compression-box {
    max-width: 800px;
    margin: 0 auto;
}

.compression-visual {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px 0;
    text-align: center;
}

.money-pile,
.house-asset {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.house-asset {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: scale(1.1);
}

.pile-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.pile-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.pile-desc {
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
}

.house-asset .pile-desc {
    border-color: #ddd;
}

.highlight {
    color: var(--urgent-red);
    font-weight: bold;
    font-size: 1.1rem;
}

.arrow-visual {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.logic-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.logic-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.logic-details li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

.logic-details li::before {
    content: '▼';
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.conclusion-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 30px;
    border: 2px solid var(--accent-color);
    padding: 20px;
    display: inline-block;
    width: 100%;
}

/* Service Section */
.service-section {
    background: var(--white);
}

.side-by-side {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.side-img {
    flex: 1;
}

.side-text {
    flex: 1;
}

.sub-head {
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.side-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-list dt {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.service-list dt i {
    width: 30px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.service-list dd {
    padding-left: 30px;
    color: #666;
    margin-bottom: 10px;
}

/* Closing */
.closing-section {
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding: 100px 0;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 44, 89, 0.9), rgba(0, 0, 0, 0.7));
    /* Navy Tint */
}

.closing-content {
    position: relative;
    z-index: 1;
}

.cta-button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #fff;
}

/* Animations included from previous... */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

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

.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-panel {
        flex-direction: column;
    }

    .side-by-side {
        flex-direction: column;
    }

    .compression-visual {
        flex-direction: column;
        gap: 20px;
    }

    .arrow-visual {
        transform: rotate(90deg);
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}

/* Form Styles */
.request-section {
    background-color: #f4f7f6;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 44, 89, 0.1);
}

.checkbox-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #0a1f40;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
    font-family: var(--font-main);
    letter-spacing: 0.08em;
}

.site-footer p {
    margin: 0;
}

/* Tenant Section */
.tenant-box {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border-top: 5px solid var(--accent-color);
}

.tenant-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 50%;
}

/* Tenant Comparison Overrides */
.tenant-comparison {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Adjust text size specifically for tenant context if needed, otherwise let inherit */
.tenant-comparison h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tenant-comparison .risk-text,
.tenant-comparison .benefit-text {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.tenant-text {
    font-size: 1.15rem;
    line-height: 2;
    margin-top: 10px;
}

.tenant-text strong {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Note Banner - Enhanced for Visibility */
.note-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: linear-gradient(135deg, #ffffff, #f0fdf9);
    border: 2px solid #26b186;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    margin: 50px auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 750px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(38, 177, 134, 0.1);
}

.note-banner::before {
    content: 'CHECK';
    position: absolute;
    top: -10px;
    right: -20px;
    background: #26b186;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 20px 30px 5px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.note-banner:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(38, 177, 134, 0.2);
    transform: translateY(-5px) scale(1.02);
    border-color: #1a8a68;
}

.note-logo {
    font-weight: 900;
    font-size: 2.2rem;
    color: #26b186;
    font-family: sans-serif;
    letter-spacing: -1.5px;
    background: #f0fdf9;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.note-content {
    text-align: left;
    flex-grow: 1;
}

.note-title {
    display: block;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    line-height: 1.4;
}

.note-desc {
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.note-desc i {
    color: #26b186;
    font-size: 1.1em;
    transition: transform 0.3s;
}

.note-banner:hover .note-desc i {
    transform: translateX(5px);
}

/* Mobile adjust for banner */
@media (max-width: 600px) {
    .note-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 40px 20px 25px;
        margin: 40px 15px;
    }

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

    .note-title {
        font-size: 1.2rem;
    }
}

/* Scarcity Section Visuals */
.supply-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 600px;
}

.supply-group {
    text-align: center;
    flex: 1;
}

.supply-icons {
    font-size: 2rem;
    color: #bdc3c7;
    margin-bottom: 15px;
    letter-spacing: -5px;
}

.supply-icon-hero {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.supply-label {
    font-weight: bold;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.badge-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-status.bad {
    background: #e0e0e0;
    color: #7f8c8d;
}

.badge-status.good {
    background: var(--accent-color);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.vs-divider-text {
    font-weight: 900;
    color: #e0e0e0;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .supply-comparison {
        gap: 15px;
        padding: 20px 10px;
    }

    .supply-icons,
    .supply-icon-hero {
        font-size: 1.8rem;
    }
}