@charset "UTF-8";

/* ==========================================================================
   Pattern 01: Trust Navy - Design Tokens
   Concept: Reliability, Professionalism, Corporate, Trust
   ========================================================================== */

:root {
    /* Colors */
    --c-primary: #003366;
    /* Deep Navy */
    --c-secondary: #004d99;
    /* Lighter Navy */
    --c-accent: #C0A062;
    /* Gold Accent */
    --c-rubin: #CE0056;
    /* Logo Color (RubinRed) */
    --c-text-main: #333333;
    --c-text-sub: #666666;
    --c-bg-body: #ffffff;
    --c-bg-light: #f4f7f6;
    /* Cool Grayish White */

    /* Fonts */
    --f-sans: "Noto Sans JP", sans-serif;
    --f-serif: "Noto Serif JP", serif;

    /* Spacing */
    --sp-container: 1100px;
    --sp-section: 100px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--f-sans);
    color: var(--c-text-main);
    background-color: var(--c-bg-body);
    line-height: 1.8;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

strong,
b {
    color: var(--c-primary);
    /* Navy emphasis */
    font-weight: 700;
}

/* Bold text on dark backgrounds stays white */
.business-hero strong,
.business-hero b,
.business-intro-box strong,
.business-intro-box b,
.business-intro-box .highlight-underline,
.cta-box strong,
.cta-box b,
.footer strong,
.footer b {
    color: #fff;
}

.container {
    max-width: var(--sp-container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Sections */
.section {
    padding: var(--sp-section) 0;
}

.section-title {
    font-family: var(--f-serif);
    font-size: 2.5rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--c-rubin);
    /* RubinRedに変更 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 3rem;
    display: inline-block;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /* Initial Transparent */
    border-bottom: none;
    /* No border initially as requested */
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
    border-bottom: none;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    max-width: none;
    /* コンテナの幅制限を解除 */
    padding: 0 40px;
    /* 左右に少し余白を持たせる */
}

.header__nav {
    margin-left: auto !important;
    /* ナビゲーション自体を右寄せにする */
}

.header__logo {
    flex-shrink: 0;
    flex-grow: 0;
    width: auto;
}

.header__logo a {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    color: #fff;
    /* Initial White */
    font-weight: 700;
    transition: color 0.4s ease;
}

.header.is-scrolled .header__logo a {
    color: var(--c-primary);
    /* Navy on Scroll */
}

.header__nav ul {
    display: flex;
    gap: 1.5rem;
    /* 2remから縮小 */
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header__nav a {
    font-size: 0.9rem;
    /* 0.95remから縮小 */
    font-weight: 500;
    color: #fff;
    /* Initial White */
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
    /* 改行禁止 */
    transition: color 0.4s ease;
}

.header.is-scrolled .header__nav a {
    color: var(--c-primary);
    /* Navy on Scroll */
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--c-accent);
    /* Gold for white text */
    transition: 0.3s;
}

.header.is-scrolled .header__nav a::after {
    background: var(--c-rubin);
    /* RubinRed on white bg */
}

.header__nav a:hover::after {
    width: 100%;
}

.btn--header {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--c-primary);
    color: #fff !important;
    padding: 0 24px !important;
    height: 44px !important;
    border-radius: 4px;
    white-space: nowrap !important;
    font-size: 0.9rem;
    line-height: normal !important;
    margin-left: 10px;
}

.btn--header::after {
    display: none;
}

.btn--header:hover {
    background: var(--c-secondary);
    opacity: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 120px;
    /* Header Height Compensation */
}

/* Hero Slider */
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Transition for Opacity Only (Transform handled by Animation) */
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero__slide.active {
    opacity: 1;
    z-index: 2;
    /* Advanced Animation */
    animation: heroZoom 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Sequential Animation Init */
.hero__content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero__content.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for children */
.hero__title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
    /* Delay 0.5s */
}

.hero__content.is-loaded .hero__title {
    opacity: 1;
    transform: translateY(0);
}

.hero__lead,
.hero__cta,
.hero__author {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1s, transform 0.8s ease-out 1s;
    /* Delay 1s */
}

.hero__content.is-loaded .hero__lead,
.hero__content.is-loaded .hero__cta,
.hero__content.is-loaded .hero__author {
    opacity: 1;
    transform: translateY(0);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.4));
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__text-box {
    max-width: 800px;
    /* 600pxから拡大して改行を抑制 */
}

.hero__author {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero__title {
    font-family: var(--f-serif);
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__lead {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero__cta {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0;
    /* Square for trust */
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--c-accent);
    color: #fff;
}

.btn--primary:hover {
    background: #d4b679;
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn--secondary:hover {
    background: #fff;
    color: var(--c-primary);
}

/* Specific Button: Free Consultation (Methods Section) */
.btn--consult-free {
    background: #fff;
    color: var(--c-primary);
    border: 1px solid var(--c-primary);
    transition: all 0.3s ease;
}

.btn--consult-free:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

/* Button: Ghost (Profile) */
.btn--ghost {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--ghost:hover {
    background: var(--c-primary);
    color: #fff;
    transform: scale(1.05);
    /* Slight zoom for clear reaction */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message-section {
    background: #fff;
    position: relative;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--c-text-sub);
    margin-bottom: 1rem;
    display: block;
    /* Flexboxアイテムとして中央配置 */
}

.message-box {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.message-en {
    font-family: var(--f-serif);
    font-size: 2.5rem;
    color: var(--c-rubin);
    /* Core Message En to RubinRed */
    margin-bottom: 1.5rem;
    font-style: italic;
}

.message-ja {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem-section {
    background: var(--c-bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Parallax & Section Backgrounds */
.section--parallax {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    /* Enhance vertical spacing */
}

.parallax-bg {
    position: absolute;
    top: -20%;
    /* Start slightly above */
    left: 0;
    width: 100%;
    height: 140%;
    /* Taller than section for movement */
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    /* Primary color tint */
    z-index: 1;
}

.parallax-overlay.dark {
    background: rgba(0, 20, 40, 0.85);
    /* Darker for book section */
}

.relative-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
}

.text-white {
    color: #fff !important;
}

/* Specific Section Adjustments */
/* Specific Section Adjustments */
#message .message-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Fix Visibility for Core Message Header */
#message .section-label,
#message .section-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.book-usage {
    backdrop-filter: blur(5px);
    /* Improve visibility of content inside */
    background: rgba(0, 20, 40, 0.8) !important;
    /* Darker bg */
}

/* Fix nested white box if present */
.book-usage .book-note {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    padding: 0 !important;
}

/* Fix Buttons in Book Section (Dark Background) */
#book .btn--secondary {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

#book .btn--secondary:hover {
    background: #fff;
    color: var(--c-primary);
}

/* Footer Parallax */
.message-footer .parallax-overlay {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(122, 114, 255, 0.3));
}

/* Problem Grid Layout */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
    /* Ensure cards stretch to same height */
}

.problem-card {
    background: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    /* Changed from flex-start to center vertically */
    gap: 1rem;
    border-left: 4px solid var(--c-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
    height: 100%;
    /* Ensure equal height */
}

.problem-card:hover {
    transform: translateY(-5px);
    /* Increased nav lift match */
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.1);
    /* Standardize shadow */
    background-color: #f4f8fb;
    /* Match hover effect added earlier */
    border-color: var(--c-primary);
}

.check-icon {
    color: var(--c-rubin);
    /* Check icon to RubinRed */
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-conclusion {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.2rem;
}

.highlight {
    background: linear-gradient(transparent 70%, rgba(0, 51, 102, 0.2) 70%);
    /* Navy Highlight for better visibility */
    font-weight: bold;
    color: var(--c-primary);
    /* Navy text */
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.columns {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.column-text,
.column-img {
    flex: 1;
}

.concept-lead {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--c-primary);
    margin-bottom: 2rem;
}

.column-img img {
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--c-bg-light);
}

/* ==========================================================================
   Service Section
   ========================================================================== */
/* Service Section (Blocks) */
.service-section {
    background: #fff;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    background: #fff;
    border: 1px solid #eee;
    padding: 3rem;
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-block:hover {
    border-color: var(--c-primary);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    transform: translateY(-5px);
}

.service-block__num {
    font-size: 3rem;
    font-family: var(--f-serif);
    color: rgba(0, 51, 102, 0.1);
    font-weight: bold;
    line-height: 1;
}

.service-block__content {
    flex: 1;
}

.service-block__title {
    font-size: 1.5rem;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--c-rubin);
    /* Bottom line to RubinRed */
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-block__body {
    font-size: 1rem;
    line-height: 1.8;
}

.service-block__list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.service-block__list li {
    position: relative;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-block__list li::before {
    content: "•";
    color: var(--c-rubin);
    /* RubinRed Bullet */
    position: absolute;
    left: -1em;
}

/* Consulting Section (List) */
.consulting-section {
    background: var(--c-bg-light);
}

.consulting-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.consulting-list li {
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.consulting-list li strong {
    color: var(--c-primary);
    font-size: 1.1rem;
    width: 45%;
}

.consulting-list li span {
    color: var(--c-text-sub);
    width: 50%;
    text-align: right;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-block {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .consulting-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .consulting-list li strong,
    .consulting-list li span {
        width: 100%;
        text-align: left;
    }
}

/* ==========================================================================
   Book Section
   ========================================================================== */
.book-section {
    background: var(--c-bg-light);
}

.book-cover {
    background: #fff;
    width: 280px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-face {
    text-align: center;
    padding: 2rem;
}

.book-face h1 {
    font-family: var(--f-serif);
    font-size: 2rem;
    color: #333;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.check-list li::before {
    content: "✔";
    color: var(--c-primary);
    position: absolute;
    left: 0;
}

.book-note {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--c-rubin);
    /* RubinRed Border */
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn-group .btn--secondary {
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn-group .btn--secondary:hover {
    background: var(--c-primary);
    color: #fff;
}

/* Mobile & Responsive */
@media (max-width: 768px) {

    /* Header */
    .header__nav {
        display: none;
    }

    .header__inner {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        min-height: 600px;
        height: auto;
        padding-bottom: 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    /* General Layout */
    .columns {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    /* Service Section */
    .service-block {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .service-block__num {
        font-size: 2.5rem;
    }

    /* Consulting Section */
    .consulting-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .consulting-list li strong,
    .consulting-list li span {
        width: 100%;
        text-align: left;
    }

    /* Book cover centering */
    .book-cover {
        margin: 0 auto 2rem;
    }

    /* Utility */
    .pc-only-br {
        display: none;
    }
}

/* Animation Classes Used by JS */
.animate-fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;
}

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Profile Section (NEW)
   ========================================================================== */
.profile-section {
    background: #fff;
    position: relative;
}

.profile-name {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-title {
    font-size: 1rem;
    color: var(--c-rubin);
    /* RubinRed Title */
    font-family: var(--f-sans);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.profile-role {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--c-text-main);
    display: inline-block;
    border-bottom: 2px solid var(--c-rubin);
    /* RubinRed Border */
    padding-bottom: 0.2rem;
}

.profile-desc {
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================================================
   Company Section (NEW)
   ========================================================================== */
.company-section {
    background: var(--c-bg-light);
}

.company-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    width: 30%;
    background: #f9f9f9;
    color: var(--c-primary);
    font-weight: bold;
}

@media (max-width: 768px) {

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        border-bottom: none;
        padding-bottom: 0.5rem;
        background: transparent;
    }

    .company-table td {
        padding-top: 0;
    }
}

/* ==========================================================================
   Custom Cursor - DISABLED
   ========================================================================== */
/*
@media (min-width: 769px) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    select,
    .btn {
        cursor: none;
    }
}
*/

.cursor,
.cursor-follower {
    display: none !important;
}

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
    /* 反転効果で視認性確保 */
}

.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    /* 白ベースにすることで白背景では黒、黒背景では白になる */
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* ボーダーも白ベース */
    transition: transform 0.15s, background 0.3s;
}

body.hovering .cursor-follower {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 255, 255, 0.2);
    /* ホバー時の背景も白ベース */
    border-color: transparent;
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ==========================================================================
   Header Forced Dark Style (For Subpages)
   ========================================================================== */
.header--dark {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header--dark .header__logo a,
.header--dark .header__nav a {
    color: var(--c-primary) !important;
}

.header--dark .header__nav a::after {
    background: var(--c-rubin);
}

/* Fix for Contact Button in Dark Header */
.header--dark .header__nav a.btn--header {
    color: #fff !important;
}

/* ==========================================================================
   Business Page Hero Updates
   ========================================================================== */
.business-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover !important;
    color: #fff !important;
    padding-top: 180px !important;
    padding-bottom: 100px !important;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 35, 65, 0.85);
    /* Darker Navy Overlay */
    z-index: 1;
}

.business-hero .container {
    position: relative;
    z-index: 2;
}

.business-hero .page-title {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.business-hero .lead-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.business-intro-box {
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-text-main);
    padding: 3rem;
    border-radius: 4px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Grid (2 columns fixed) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--c-accent);
}

.service-card__img {
    height: 240px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    color: var(--c-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--c-accent);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Check List (Problems) */
.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Loose spacing */
    margin-top: 2rem;
    height: 100%;
}

.check-list li {
    position: relative;
    padding-left: 1rem !important;
    font-weight: 500;
    color: var(--c-primary);
    background: #fff;
    padding: 2rem;
    /* Large padding for breathing room */
    border-left: 4px solid var(--c-accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    line-height: 1.8;
    transition: all 0.3s ease;
    /* Smooth transition */
}

.check-list li::before {
    display: none !important;
    content: "" !important;
}

.check-list li:hover {
    background-color: #f4f8fb;
    /* Subtle blue tint */
    border-left-color: var(--c-primary);
    /* Darker blue accent */
    transform: translateX(5px);
    /* Slate nudge right */
    box-shadow: 0 6px 12px rgba(0, 51, 102, 0.1);
}

/* Problem Row Layout */
.problem-row {
    display: flex;
    /* Ensure row is flex */
    flex-wrap: wrap;
    /* Standard bootstrap behavior */
    align-items: stretch;
    /* Stretch children columns */
}

/* Ensure Image Box fills height */
.problem-img-box {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Contain zoom */
    border-radius: 8px;
    /* Move radius here for overflow hidden */
}

.problem-img-box img {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    transition: transform 0.6s ease;
    /* Smooth zoom */
}

.problem-img-box:hover img {
    transform: scale(1.03);
    /* Subtle zoom */
}

/* Responsive */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .problem-img-box img {
        min-height: 250px;
    }

    .business-intro-box {
        padding: 1.5rem;
    }
}

.bg-gray {
    background-color: #f8f9fa;
}

/* Row Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* Stylish Highlight Underline (Standard Marker - Thin) */
.highlight-underline {
    font-weight: bold;
    color: var(--c-primary);
    /* Navy text for visibility */
    display: inline;
    /* Thin Marker (Navy #003366) - ~35% height (65% transparent) */
    background: linear-gradient(transparent 65%, rgba(0, 51, 102, 0.25) 65%);
    padding-bottom: 0;
    text-decoration: none;
    text-shadow: none;
}

/* --- Top Page Hover Effects (Pattern 2) --- */

/* Problem Card Hover */
.problem-card {
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.1);
    border-color: var(--c-primary);
    background-color: #f4f8fb;
    /* Subtle blue tint */
}

/* Service Block Hover */
.service-block {
    transition: all 0.3s ease;
}

.service-block:hover .service-block__title {
    color: var(--c-secondary);
    padding-left: 10px;
    /* Slight nudge */
    border-left-color: var(--c-accent);
}

.service-block__title {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    /* Prepare for border transition */
    padding-left: 0;
}

/* Image Hover Zoom (General) */
.img-wrap {
    overflow: hidden;
    border-radius: 8px;
}

.img-wrap img {
    transition: transform 0.6s ease;
}

.img-wrap:hover img {
    transform: scale(1.05);
}