/* ============================================================
   RENESS Corporate Site - Style Sheet
   ============================================================ */

:root {
    --bg-color: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-dark: #F5F5F5;
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-muted: #888888;
    --accent: #F37021;
    --accent-dark: #D65A10;
    --accent-gradient: linear-gradient(135deg, #F37021 0%, #FFB74D 100%);
    --accent-light: rgba(243, 112, 33, 0.06);
    --border-color: #E8E8E8;
    --container-width: 1100px;
    --serif-font: 'Shippori Mincho', serif;
    --sans-font: 'Noto Sans JP', 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--sans-font);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--serif-font);
    font-weight: 600;
    line-height: 1.4;
}

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

ul {
    list-style: none;
}

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

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

#header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

#header.scrolled .logo-img {
    height: 44px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    padding: 8px 0;
    position: relative;
}

.nav-links > li > a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links > li > a:not(.btn):hover::after {
    width: 100%;
}

.nav-links > li > a:hover {
    color: var(--text-primary);
}

/* Dropdown */
.dropdown-trigger .arrow {
    font-size: 0.6em;
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.dropdown-item:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--accent-light);
    color: var(--accent);
    padding-left: 24px;
}

/* Mega Menu */
.contact-dropdown {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--accent);
    padding: 28px;
    min-width: 380px;
    z-index: 1000;
    border-radius: 0 0 6px 6px;
}

.contact-dropdown:hover .mega-menu {
    display: flex;
    gap: 36px;
}

.mega-menu-column {
    min-width: 140px;
}

.mega-menu-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--sans-font);
}

.mega-menu-column ul li {
    margin-bottom: 6px;
}

.mega-menu-column ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    padding: 4px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--sans-font);
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.3);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

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

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

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.82rem !important;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 10px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--sans-font);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1.5px;
    background: var(--accent);
}

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

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   INDEX - HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('hero-room.jpg');
    background-size: cover;
    background-position: center;
}

/* ========================================
   BACKGROUND BLOB ANIMATIONS
   ======================================== */
.hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.hero-blob-1 {
    width: 700px;
    height: 700px;
    background: #E8913A;
    opacity: 0.18;
    filter: blur(120px);
    top: -20%;
    right: -10%;
    animation: blobFloat1 18s ease-in-out infinite;
}

.hero-blob-2 {
    width: 550px;
    height: 550px;
    background: #F5C78A;
    opacity: 0.25;
    filter: blur(130px);
    bottom: -15%;
    left: -5%;
    animation: blobFloat2 22s ease-in-out infinite;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: #E8E0D8;
    opacity: 0.5;
    filter: blur(100px);
    top: 30%;
    left: 40%;
    animation: blobFloat3 15s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.08); }
    50% { transform: translate(30px, 50px) scale(0.95); }
    75% { transform: translate(-40px, 20px) scale(1.05); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-50px, 30px) scale(1.1); }
    60% { transform: translate(40px, -50px) scale(0.92); }
    80% { transform: translate(-20px, -30px) scale(1.03); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-30px, -40px) scale(1.12); }
    45% { transform: translate(50px, 20px) scale(0.88); }
    70% { transform: translate(-20px, 40px) scale(1.06); }
}

/* Section-level subtle blobs */
.section-blob-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.visual-msg-section > .container,
.services-section > .container,
.office-section > .container,
.news-cards-section > .container,
.access-section > .container {
    position: relative;
    z-index: 1;
}

.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
    animation: sectionBlobDrift 25s ease-in-out infinite;
}

.section-blob-orange {
    width: 350px;
    height: 350px;
    background: rgba(232, 145, 58, 0.1);
    top: -20%;
    right: -5%;
}

.section-blob-dark {
    width: 300px;
    height: 300px;
    background: rgba(45, 45, 45, 0.08);
    bottom: -15%;
    left: -8%;
    animation-delay: -12s;
}

@keyframes sectionBlobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -18px) scale(1.04); }
    66% { transform: translate(-18px, 15px) scale(0.97); }
}

/* Ensure section blobs parent has position */
.visual-msg-section,
.services-section,
.office-section,
.news-cards-section,
.access-section {
    position: relative;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-blob,
    .section-blob {
        animation: none !important;
    }
}

/* Mobile: lighter blobs */
@media (max-width: 768px) {
    .hero-blob {
        filter: blur(60px);
    }
    .hero-blob-1 { width: 350px; height: 350px; }
    .hero-blob-2 { width: 300px; height: 300px; }
    .hero-blob-3 { width: 250px; height: 250px; }
    .section-blob-wrap {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(34, 34, 34, 0.82) 0%,
        rgba(34, 34, 34, 0.55) 50%,
        rgba(34, 34, 34, 0.35) 100%
    );
    z-index: 1;
}

.hero-bg-logo {
    position: absolute;
    right: -8%;
    bottom: -12%;
    width: 55%;
    max-width: 700px;
    opacity: 0.06;
    z-index: 2;
    pointer-events: none;
}

.hero-bg-logo img {
    width: 100%;
    height: auto;
    filter: brightness(10);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-family: var(--sans-font);
    color: var(--accent);
    letter-spacing: 0.25em;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(243, 112, 33, 0.4);
    border-radius: 2px;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin-bottom: 24px;
}

.hero-statement {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Hero animations */
.animate-hero-fade {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.3s;
}

.animate-hero-slide {
    opacity: 0;
    transform: translateY(24px);
    animation: heroSlideUp 0.9s ease forwards 0.5s;
}

.animate-hero-fade-delay {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.9s;
}

.animate-hero-fade-delay2 {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 1.2s;
}

@keyframes heroFadeIn {
    to { opacity: 1; }
}

@keyframes heroSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INDEX - NOTICE (Temporary Message)
   ============================================================ */
.notice-section {
    padding: 48px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.notice-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 32px 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
}

.notice-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.notice-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================================
   INDEX - VALUE (One-Stop)
   ============================================================ */
.value-section {
    padding: 120px 0;
}

.value-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.value-card {
    position: relative;
    padding: 40px 32px 36px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

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

.value-number {
    font-size: 2.2rem;
    font-weight: 200;
    color: var(--accent);
    font-family: var(--sans-font);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-family: var(--sans-font);
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ============================================================
   INDEX - SERVICES (Rich)
   ============================================================ */
.services-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-bg-logo {
    position: absolute;
    left: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.025;
    pointer-events: none;
}

.services-bg-logo img {
    width: 100%;
    height: auto;
}

.services-grid-rich {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.service-card-rich {
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-rich::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card-rich:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-rich:hover::after {
    transform: scaleX(1);
}

.service-card-num {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--sans-font);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.service-card-en {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--sans-font);
    margin-bottom: 6px;
}

.service-card-ja {
    display: block;
    font-size: 1.15rem;
    font-family: var(--serif-font);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card-arrow {
    display: block;
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-card-rich:hover .service-card-arrow {
    transform: translateX(6px);
}

/* ============================================================
   INDEX - STRENGTH
   ============================================================ */
.strength-section {
    padding: 120px 0;
    background: #fff;
}

.strength-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strength-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.strength-text .section-label {
    text-align: left;
    display: block;
}

.strength-text p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 28px;
}

.strength-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.strength-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 2px;
    letter-spacing: 0.04em;
}

/* Strength flow diagram */
.strength-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
}

.flow-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 18px 24px;
    text-align: center;
    transition: var(--transition);
}

.flow-item.accent {
    background: var(--accent);
    border-color: var(--accent);
}

.flow-item.accent .flow-label {
    color: #fff;
    font-weight: 600;
}

.flow-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--sans-font);
}

.flow-connector {
    width: 1px;
    height: 20px;
    background: var(--border-color);
    margin: 0 auto;
}

.flow-caption {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ============================================================
   INDEX - HERO MOSAIC
   ============================================================ */
.hero-mosaic {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.mosaic-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    opacity: 0.2;
    transition: opacity 1.5s ease;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mosaic-1 { width: 280px; height: 200px; right: 8%; top: 18%; }
.mosaic-2 { width: 320px; height: 220px; right: 3%; bottom: 12%; }
.mosaic-3 { width: 240px; height: 170px; right: 30%; bottom: 20%; }

/* ============================================================
   INDEX - GALLERY STRIP (auto scroll)
   ============================================================ */
.gallery-strip {
    overflow: hidden;
    padding: 20px 0;
    background: var(--bg-light);
}

.gallery-track {
    display: flex;
    gap: 16px;
    animation: galleryScroll 40s linear infinite;
    width: max-content;
}

.gallery-slide {
    flex-shrink: 0;
    width: 280px;
    height: 190px;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.15);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.gallery-slide:hover img {
    filter: grayscale(0);
    transform: scale(1.04);
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   INDEX - COMPARISON DIAGRAM
   ============================================================ */
.compare-section {
    padding: 120px 0;
    background: #fff;
}

.compare-header {
    text-align: center;
    margin-bottom: 56px;
}

.compare-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.compare-box {
    padding: 40px 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.compare-normal {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.compare-reness {
    background: linear-gradient(135deg, rgba(243,112,33,0.06) 0%, rgba(255,183,77,0.06) 100%);
    border: 2px solid var(--accent);
    position: relative;
}

.compare-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    font-family: var(--sans-font);
    color: var(--text-secondary);
}

.compare-reness .compare-label {
    color: var(--accent);
}

.compare-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.compare-steps.single {
    margin-bottom: 20px;
}

.compare-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.compare-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--sans-font);
}

.compare-step-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.compare-arrow {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.compare-issues {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-issues span {
    font-size: 0.78rem;
    color: #C0392B;
    padding: 4px 12px;
    background: rgba(192,57,43,0.06);
    border-radius: 3px;
}

.reness-step {
    gap: 10px;
}

.compare-logo {
    width: 120px;
    height: auto;
}

.compare-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.compare-benefits span {
    font-size: 0.78rem;
    color: var(--accent);
    padding: 5px 14px;
    background: rgba(243,112,33,0.08);
    border-radius: 3px;
    font-weight: 500;
}

.compare-bottom-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--sans-font);
    letter-spacing: 0.05em;
}

/* ============================================================
   INDEX - WORKS GRID (photo showcase)
   ============================================================ */
.works-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 56px;
}

.works-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    cursor: default;
}

.works-item.works-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.works-item:hover img {
    transform: scale(1.06);
}

.works-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.works-item:hover .works-overlay {
    opacity: 1;
}

.works-cat {
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--sans-font);
    margin-bottom: 4px;
}

.works-title {
    font-size: 0.92rem;
    color: #fff;
    font-weight: 500;
}

/* ============================================================
   INDEX - STRENGTH (with photos)
   ============================================================ */
.strength-photo {
    position: relative;
}

.strength-photo img:first-child {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.strength-photo-sub {
    position: absolute;
    bottom: -24px;
    right: -20px;
    width: 50%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

/* ============================================================
   INDEX - FLOW TIMELINE
   ============================================================ */
.flow-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.flow-timeline {
    max-width: 680px;
    margin: 56px auto 0;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.flow-timeline-item {
    display: flex;
    gap: 28px;
    padding-bottom: 40px;
    position: relative;
}

.flow-timeline-item:last-child {
    padding-bottom: 0;
}

.flow-timeline-num {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--sans-font);
    position: relative;
    z-index: 1;
}

.flow-timeline-body {
    padding-top: 12px;
}

.flow-timeline-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--sans-font);
}

.flow-timeline-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================================
   INDEX - VISUAL MESSAGE (image + text float-in)
   ============================================================ */
.visual-msg-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.visual-msg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 100px;
}

.visual-msg:last-child {
    margin-bottom: 0;
}

.visual-msg-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-msg-img img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.visual-msg-text .section-label {
    display: block;
    text-align: left;
}

.visual-msg-text .section-title {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.visual-msg-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2.1;
}

/* Slide-in animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-left.appear,
.animate-slide-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   INDEX - HERO LOGO MARK
   ============================================================ */
.hero-logo-mark {
    margin-bottom: 20px;
}

.hero-logo-img {
    height: 72px;
    width: auto;
    filter: brightness(10);
    opacity: 0.85;
}

.hero-bg-logo-2 {
    left: -10%;
    top: 15%;
    right: auto;
    bottom: auto;
    width: 35%;
    opacity: 0.02;
}

/* ============================================================
   INDEX - NOTICE LOGO
   ============================================================ */
.notice-logo {
    width: 60px;
    height: auto;
    opacity: 0.08;
    position: absolute;
    top: 16px;
    right: 20px;
}

.notice-card {
    position: relative;
    overflow: hidden;
}

/* ============================================================
   INDEX - JOURNEY DIAGRAM (seller flow)
   ============================================================ */
.journey-diagram {
    margin: 56px auto 64px;
    max-width: 880px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 36px 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.journey-title {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 36px;
    font-family: var(--sans-font);
}

.journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.journey-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    font-family: var(--sans-font);
    transition: var(--transition);
}

.journey-icon.active {
    background: rgba(243,112,33,0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.journey-icon img {
    width: 32px;
    height: auto;
}

.journey-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.journey-line {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    flex-shrink: 0;
    margin-bottom: 20px;
}

.journey-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--accent);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.journey-bar-logo {
    height: 18px;
    width: auto;
    filter: brightness(10);
}

/* ============================================================
   INDEX - VALUE BG LOGO
   ============================================================ */
.value-section {
    position: relative;
    overflow: hidden;
}

.value-bg-logo {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 420px;
    opacity: 0.02;
    pointer-events: none;
}

.value-bg-logo img {
    width: 100%;
    height: auto;
}

/* ============================================================
   INDEX - OFFICE SLIDER
   ============================================================ */
.office-section {
    padding: 120px 0 80px;
    background: #fff;
    overflow: hidden;
}

.office-slider {
    position: relative;
    max-width: 900px;
    margin: 48px auto 0;
    overflow: hidden;
    border-radius: 8px;
    /* aspect-ratio keeps height even when all children are absolute */
    aspect-ratio: 16 / 9;
}

.office-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.office-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.office-slide.exit-left {
    opacity: 0;
    transform: translateX(-80px);
    z-index: 3;
}

.office-slide.enter-right {
    transform: translateX(80px);
}

.office-slide.enter-left {
    transform: translateX(-80px);
}

.office-slide.exit-right {
    opacity: 0;
    transform: translateX(80px);
    z-index: 3;
}

.office-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.office-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.office-slide-num {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--sans-font);
    letter-spacing: 0.1em;
}

.office-slide-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.office-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.office-nav:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.office-prev { left: 16px; }
.office-next { right: 16px; }

.office-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.office-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.office-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   INDEX - WORKS STRIP
   ============================================================ */
.works-strip-section {
    padding: 100px 0 0;
    background: var(--bg-light);
}

.works-strip-section .gallery-strip {
    margin-top: 48px;
    padding-bottom: 20px;
}

/* ============================================================
   INDEX - FLOW BG LOGO
   ============================================================ */
.flow-section {
    position: relative;
    overflow: hidden;
}

.flow-bg-logo {
    position: absolute;
    left: -4%;
    bottom: -10%;
    width: 30%;
    max-width: 360px;
    opacity: 0.02;
    pointer-events: none;
}

.flow-bg-logo img {
    width: 100%;
    height: auto;
}

/* ============================================================
   FOOTER - LOGO IMAGE
   ============================================================ */
.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

/* ============================================================
   INDEX - ACCESS SECTION
   ============================================================ */
.access-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.access-bg-logo {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 30%;
    max-width: 360px;
    opacity: 0.02;
    pointer-events: none;
}

.access-bg-logo img { width: 100%; height: auto; }

.access-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    margin-top: 56px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.access-info-card {
    padding: 48px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.access-logo {
    height: 40px;
    width: auto;
    margin-bottom: 32px;
}

.access-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.access-row:last-child { border-bottom: none; padding-bottom: 0; }

.access-label {
    flex-shrink: 0;
    width: 80px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.access-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.access-value a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.access-map {
    position: relative;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

/* ============================================================
   INDEX - CTA SECTION
   ============================================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-logo {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.03;
    pointer-events: none;
}

.cta-bg-logo img { width: 100%; height: auto; }

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-logo {
    height: 48px;
    width: auto;
    margin-bottom: 32px;
    opacity: 0.6;
}

.cta-inner h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cta-inner > p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.cta-phone-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--sans-font);
    letter-spacing: 0.06em;
    transition: var(--transition);
}

.cta-phone:hover .cta-phone-number {
    color: var(--accent);
}

.cta-phone-hours {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 72px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.footer-nav-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-family: var(--sans-font);
    text-transform: uppercase;
}

.footer-nav-col ul li {
    margin-bottom: 10px;
}

.footer-nav-col ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-nav-col ul li a:hover {
    color: var(--accent);
}

.footer-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-tel {
    margin-bottom: 16px;
}

.footer-tel a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

.footer-tel a:hover {
    color: var(--accent);
}

.footer-contact-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: var(--transition);
}

.footer-contact-btn:hover {
    background: var(--accent);
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-logo {
    height: 20px;
    width: auto;
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-company-name {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

/* ============================================================
   PAGE HERO (Sub pages)
   ============================================================ */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-light);
    text-align: center;
    border-bottom: 2px solid var(--accent);
}

.page-hero-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    font-family: var(--sans-font);
}

.page-hero-title {
    font-size: 1.8rem;
    color: var(--text-primary);
}

/* Page header with background image */
.page-header {
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.feature-card {
    background: #fff;
    padding: 36px 28px;
    text-align: left;
    border-top: 2px solid var(--accent);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon-number {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent);
    font-family: var(--sans-font);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.feature-card h3,
.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--sans-font);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

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

/* ============================================================
   COMPANY TABLE
   ============================================================ */
.company-info-table {
    margin-top: 48px;
}

.table-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.table-row:first-child {
    border-top: 1px solid var(--border-color);
}

.table-row .label {
    width: 220px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.table-row .content {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ============================================================
   ORANGE LINE ACCENT
   ============================================================ */
.orange-line-accent {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 32px auto;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    margin-top: 48px;
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--accent);
    opacity: 0.25;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 28px;
}

.timeline-number {
    position: absolute;
    left: -14px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--bg-color);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--sans-font);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: var(--sans-font);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================================
   SCHEDULE STEPS
   ============================================================ */
.schedule-container {
    margin-top: 48px;
}

.schedule-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.schedule-step:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--sans-font);
}

.step-content h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: var(--sans-font);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.schedule-connector {
    display: flex;
    padding-left: 50px;
    height: 24px;
}

.schedule-connector::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(243, 112, 33, 0.4), rgba(243, 112, 33, 0.1));
}

/* ============================================================
   COST CARDS
   ============================================================ */
.cost-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    padding: 30px 24px;
    border-radius: 4px;
    transition: var(--transition);
}

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

.cost-card h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--sans-font);
}

.cost-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    font-family: var(--sans-font);
}

.cost-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   DIAGRAM (One-Stop / Leaseback)
   ============================================================ */
.one-stop-diagram {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.diagram-box {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    border: 1px dashed var(--border-color);
}

.diagram-box.highlight {
    background: var(--accent-light);
    border: 1px solid var(--accent);
}

.diagram-label {
    display: block;
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.diagram-box.highlight .diagram-label {
    color: var(--accent);
}

.diagram-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    background: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.88rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
}

.step.error {
    background: #FFF0F0;
    color: #E53935;
    border-color: #FFCDD2;
}

.step.highlight-bg {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-color: var(--accent);
}

.step.wide {
    width: 100%;
}

.plus {
    font-weight: bold;
    margin: 0 4px;
}

.diagram-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.diagram-note.good {
    color: var(--accent);
    font-weight: 600;
}

.diagram-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
}

.diagram-card h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
}

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

.flow-step .icon-box {
    font-size: 2rem;
    margin-bottom: 8px;
}

.flow-step p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.flow-step .sub-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.flow-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion {
    margin-top: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans-font);
}

.faq-question .icon {
    color: var(--accent);
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(243, 112, 33, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section .cta-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 16px;
    font-family: var(--serif-font);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* bg-dark-variant (used in service pages) */
.bg-dark-variant {
    background-color: var(--bg-dark);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.contact-form-card {
    background: #fff;
    padding: 48px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
}

.form-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--serif-font);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

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

.req {
    color: var(--accent);
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: var(--sans-font);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: #fff;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.input-error {
    border-color: #E53935 !important;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.contact-info-card h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-family: var(--sans-font);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.contact-hours {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--border-color);
}

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

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

/* ============================================================
   BENEFIT LIST
   ============================================================ */
.benefit-list {
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ============================================================
   PARTNER FLOW
   ============================================================ */
.partner-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.partner-flow-step {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent);
    transition: var(--transition);
}

.partner-flow-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-num {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: var(--sans-font);
}

.partner-flow-step h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--sans-font);
}

.partner-flow-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CONTACT TYPE GRID (Index contact section)
   ============================================================ */
.contact-type-grid {
    margin-top: 32px;
}

.contact-group-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.contact-cards-row.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.contact-type-card {
    display: block;
    padding: 24px 16px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-type-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-type-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 8px;
}

.contact-type-card h5 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-font);
}

.contact-type-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-phone-cta {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
}

.contact-phone-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.contact-phone-hours {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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

    .one-stop-diagram {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-statement {
        font-size: 1.15rem;
    }

    .hero-bg-logo {
        width: 70%;
        right: -15%;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-section {
        padding: 80px 0;
    }

    .services-section {
        padding: 80px 0;
    }

    .strength-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strength-section {
        padding: 80px 0;
    }

    .strength-text .section-title {
        text-align: center;
    }

    .strength-text .section-label {
        text-align: center;
    }

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

    .strength-badges {
        justify-content: center;
    }

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

    .section {
        padding: 72px 0;
    }

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

    .mosaic-item { display: none; }

    .gallery-slide { width: 220px; height: 150px; }

    .compare-diagram {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-vs {
        transform: rotate(90deg);
        padding: 8px;
    }

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

    .works-item.works-large {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 9;
    }

    .flow-section { padding: 80px 0; }
    .compare-section { padding: 80px 0; }
    .works-section { padding: 80px 0; }

    .strength-photo-sub {
        bottom: -16px;
        right: -10px;
    }

    .visual-msg {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 72px;
    }

    .visual-msg-text .section-title {
        font-size: 1.4rem;
    }

    .visual-msg-section { padding: 72px 0; }

    /* On mobile, reverse the layout for left-variant so image stays on top */
    .visual-msg-left .visual-msg-img { order: -1; }

    .office-section { padding: 80px 0 60px; }
    .office-nav { width: 40px; height: 40px; font-size: 1.2rem; }

    .journey-flow { flex-wrap: wrap; gap: 8px; }
    .journey-line { width: 24px; }
    .journey-icon { width: 52px; height: 52px; font-size: 0.62rem; }
    .journey-diagram { padding: 28px 20px 24px; }

    .works-strip-section { padding: 72px 0 0; }

    .hero-logo-img { height: 48px; }

    .access-layout { grid-template-columns: 1fr; }
    .access-map iframe { min-height: 300px; }
    .access-section { padding: 80px 0; }

    .cta-section { padding: 72px 0; }
    .cta-inner h2 { font-size: 1.4rem; }
    .cta-phone-number { font-size: 1.4rem; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .contact-cards-row,
    .contact-cards-row.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile dropdown handling */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        min-width: auto;
    }

    .dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .mega-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        flex-direction: column;
        gap: 16px;
    }

    .contact-dropdown:hover .mega-menu {
        gap: 16px;
    }

    /* Visual message blocks */
    .visual-msg { flex-direction: column !important; gap: 32px; }
    .visual-msg-img, .visual-msg-text { width: 100%; }

    /* Compare diagram */
    .compare-diagram { flex-direction: column; gap: 0; }
    .compare-vs { position: static; transform: none; margin: 16px auto; }

    /* Access layout */
    .access-layout { grid-template-columns: 1fr; gap: 24px; }

    /* Property search */
    .property-search-form { flex-direction: column; }
    .search-field { min-width: 100%; }

    /* Inquiry form */
    .inquiry-property-info { flex-direction: column; align-items: flex-start; }

    /* Form row in inquiry */
    .inquiry-property-info + div .form-row,
    div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-row,
    .contact-cards-row.three-col {
        grid-template-columns: 1fr;
    }

    .partner-flow {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: 85vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-label {
        font-size: 0.65rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
    }

    .services-grid-rich {
        grid-template-columns: 1fr;
    }

    .sp-only { display: inline; }

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

    .works-item.works-large {
        grid-column: auto;
    }

    .gallery-slide { width: 180px; height: 130px; }

    .flow-timeline::before { left: 24px; }
    .flow-timeline-num { width: 48px; height: 48px; font-size: 0.85rem; }
    .flow-timeline-item { gap: 16px; }

    .footer-links { grid-template-columns: 1fr; }

    .cta-actions { flex-direction: column; gap: 20px; }
    .cta-inner h2 { font-size: 1.2rem; }

    .access-info-card { padding: 32px 24px; }

    /* Property search form */
    .property-search { padding: 20px 16px; }
    .property-search-form { flex-direction: column; }
    .search-field { min-width: 100%; }
    .search-btn, .search-reset { width: 100%; }

    /* Property card actions */
    .property-card-actions { flex-direction: column; padding: 0 16px 16px; }

    /* Inquiry form */
    .inquiry-property-info { flex-direction: column; align-items: flex-start; padding: 16px; }
    .inquiry-property-thumb { width: 100%; height: auto; }

    /* Visual message blocks */
    .visual-msg { flex-direction: column !important; gap: 24px; }
    .visual-msg-img { width: 100%; }
    .visual-msg-text { width: 100%; }

    /* Office slider */
    .office-slide img { height: 250px; object-fit: cover; }
    .office-nav { width: 36px; height: 36px; font-size: 1rem; }

    /* Compare diagram */
    .compare-diagram { flex-direction: column; }
    .compare-vs { transform: none; margin: 16px 0; }
    .compare-steps { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .compare-arrow { display: none; }

    /* Journey diagram */
    .journey-flow { flex-direction: column; gap: 16px; align-items: center; }
    .journey-line { width: 2px; height: 20px; }

    /* Onestop banner */
    .onestop-banner { padding: 24px 16px; }

    /* Access layout */
    .access-layout { grid-template-columns: 1fr; }

    /* News cards */
    .news-card { padding: 20px; }

    /* Hero statement */
    .hero-statement { font-size: 1rem; }

    /* CTA section */
    .cta-phone { text-align: center; }

    /* Footer */
    .footer-bottom { text-align: center; }
    .footer-company-name { font-size: 0.8rem; }
}

/* ========================================
   SERVICE PAGE - ANCHOR CARDS
   ======================================== */
.sp-anchor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.sp-anchor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.sp-anchor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
}

.sp-anchor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sp-anchor-num {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    font-family: var(--sans-font);
    margin-bottom: 12px;
}

.sp-anchor-title {
    font-size: 1.4rem;
    font-family: var(--serif-font);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.sp-anchor-sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.sp-anchor-arrow {
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.sp-anchor-card:hover .sp-anchor-arrow {
    transform: translateY(4px);
}

/* ========================================
   SERVICE PAGE - DETAIL BLOCK
   ======================================== */
.svc-detail-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.svc-detail-block.svc-detail-reverse {
    grid-template-columns: 0.9fr 1.1fr;
    direction: rtl;
}

.svc-detail-block.svc-detail-reverse > * {
    direction: ltr;
}

.svc-detail-text .section-label {
    display: block;
    text-align: left;
}

.svc-lead {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 36px;
}

.svc-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.svc-point-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243,112,33,0.08);
    border: 1px solid rgba(243,112,33,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--sans-font);
    margin-top: 2px;
}

.svc-point h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-family: var(--sans-font);
}

.svc-point p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.svc-detail-visual {
    position: relative;
}

.svc-detail-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ========================================
   SERVICE PAGE - ONE-STOP BANNER
   ======================================== */
.onestop-banner {
    margin-top: 56px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(243,112,33,0.04) 0%, rgba(255,183,77,0.04) 100%);
    border: 2px solid var(--accent);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.onestop-banner-logo {
    position: absolute;
    top: 16px;
    right: 20px;
    height: 28px;
    width: auto;
    opacity: 0.08;
}

.onestop-banner-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: var(--sans-font);
}

.onestop-banner-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.onestop-banner-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.onestop-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(243,112,33,0.08);
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.onestop-plus {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 300;
}

.onestop-tag.accent-tag {
    background: var(--accent);
    color: #fff;
}

.onestop-banner-large {
    padding: 48px 44px;
}

.onestop-banner-large .onestop-banner-content h3 {
    font-size: 1.2rem;
}

.onestop-banner-large .onestop-banner-content p {
    font-size: 0.92rem;
}

/* 4-column anchor variant */
.sp-anchor-4col {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   SERVICE PAGE - LEASEBACK FLOW
   ======================================== */
.leaseback-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.leaseback-step {
    flex: 1;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.leaseback-step.accent {
    background: var(--accent);
}

.leaseback-step.accent .leaseback-step-label,
.leaseback-step.accent .leaseback-step-text,
.leaseback-step.accent .leaseback-step-sub {
    color: #fff;
}

.leaseback-step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    font-family: var(--sans-font);
}

.leaseback-step-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.leaseback-step-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.leaseback-arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ========================================
   SERVICE PAGE - RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .sp-anchor-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sp-anchor-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .leaseback-flow {
        flex-direction: column;
    }

    .leaseback-arrow {
        justify-content: center;
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .svc-detail-block,
    .svc-detail-block.svc-detail-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .svc-detail-visual {
        order: -1;
    }

    .svc-detail-text .section-title {
        text-align: center !important;
    }

    .svc-detail-text .section-label {
        text-align: center;
    }

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

    .onestop-banner {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .onestop-banner-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .onestop-plus {
        display: none;
    }
}

/* ========================================
   NEWS LIST (full page)
   ======================================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: block;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:hover {
    opacity: 0.7;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--sans-font);
    letter-spacing: 0.06em;
}

.news-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(243,112,33,0.08);
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

.news-tag.tag-new {
    color: #fff;
    background: var(--accent);
}

.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--sans-font);
    line-height: 1.6;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   NEWS CARD (top page embed)
   ======================================== */
.news-cards-section {
    padding: 100px 0;
    background: #fff;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.news-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.news-card .news-meta {
    margin-bottom: 12px;
}

.news-card .news-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
    flex-grow: 1;
}

.news-card .news-excerpt {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    text-align: center;
    margin-top: 36px;
}

.news-more a {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: var(--transition);
}

.news-more a:hover {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .news-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   PROPERTY LISTING
   ======================================== */

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.property-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.property-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.property-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.property-card-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

.property-card-body {
    padding: 20px;
}

.property-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.property-card-price {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.property-card-price .price-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-right: 6px;
}

.property-card-price-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.property-card-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.property-card-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.property-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.property-card-tag {
    font-size: 0.72rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

/* ========================================
   PROPERTY DETAIL
   ======================================== */

.property-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.property-main-image {
    border-radius: 6px;
    overflow: hidden;
}

.property-main-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.property-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.property-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.property-thumbnails img.active,
.property-thumbnails img:hover {
    opacity: 1;
    border-color: var(--accent);
}

.property-summary {
    padding-top: 8px;
}

.property-summary h1 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.property-detail-price {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.property-detail-price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.property-detail-address {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.property-detail-station {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.property-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.property-detail-tag {
    font-size: 0.8rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.property-detail-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Property Map */
.property-map {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.property-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Property Not Found */
.property-not-found {
    text-align: center;
    padding: 80px 20px;
}

.property-not-found h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.property-not-found p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* No Results */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   PROPERTY CARD ACTIONS / OWNER BADGE
   ======================================== */
.property-card {
    display: flex;
    flex-direction: column;
}

.property-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.property-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

.btn-card {
    flex: 1;
    display: inline-block;
    padding: 10px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-card-outline {
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: #fff;
}

.btn-card-outline:hover {
    border-color: var(--text-secondary);
    background: var(--bg-light);
}

.btn-card-primary {
    color: #fff;
    background: var(--accent);
    border: 1px solid var(--accent);
}

.btn-card-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.property-card-owner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #2D2D2D;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

/* ========================================
   PROPERTY SEARCH FORM
   ======================================== */
.property-search {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.property-search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 140px;
}

.search-field label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.search-field select,
.search-field input {
    padding: 10px 12px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    color: var(--text-primary);
    font-family: var(--sans-font);
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
    height: fit-content;
}

.search-btn:hover {
    background: var(--accent-dark);
}

.search-reset {
    padding: 10px 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    height: fit-content;
}

.search-reset:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.search-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ========================================
   PROPERTY INQUIRY FORM (per-property)
   ======================================== */
.inquiry-property-info {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
    align-items: center;
}

.inquiry-property-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.inquiry-property-detail h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: var(--sans-font);
}

.inquiry-property-detail p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.inquiry-property-detail .inquiry-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--serif-font);
}

/* Broker request badge */
.broker-request-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: #2D2D2D;
    border-radius: 3px;
    margin-left: 8px;
}

@media (max-width: 968px) {
    .property-search-form { flex-direction: column; }
    .search-field { min-width: 100%; }
    .inquiry-property-info { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   PROPERTY RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-detail-price {
        font-size: 1.4rem;
    }

    .property-map iframe {
        height: 300px;
    }
}
