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

        :root {
            --midnight-navy: #0F1419;
            --navy: #1A2332;
            --muted-gold: #C9A961;
            --off-white: #F7F6F2;
            --charcoal: #111827;
            --border-light: rgba(201, 169, 97, 0.2);
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 17px;
            line-height: 1.7;
            color: var(--charcoal);
            background-color: var(--off-white);
        }

        h1, h2, h3 {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 700;
            line-height: 1.4;
        }

        h1 { font-size: 48px; }
        h2 { font-size: 36px; margin-bottom: 24px; }
        h3 { font-size: 26px; margin-bottom: 16px; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

        /* Header */
        header {
            background-color: var(--navy);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        header .container { display: flex; justify-content: space-between; align-items: center; }

        .logo {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--off-white);
            text-decoration: none;
            letter-spacing: 0.05em;
        }

        nav a {
            color: var(--off-white);
            text-decoration: none;
            margin-left: 28px;
            font-size: 14px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        nav a:hover { color: var(--muted-gold); }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--midnight-navy) 100%);
            color: var(--off-white);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            max-width: 1200px;
            display: block;
            position: relative;
            z-index: 2;
        }

        .hero-top{
            display:flex;
            align-items:flex-start;
            justify-content:space-between;
            gap:48px;
        }
        .hero-top .hero-problems{
            flex: 1 1 auto;
            margin-bottom: 0; /* main copyは下段にあるため */
        }
        .hero-visual{
            flex:0 0 420px;
            max-width:420px;
        }
        .hero-visual img{
            width:100%;
            height:auto;
            display:block;
            border-radius:18px;
            border:1px solid rgba(255,255,255,0.14);
            box-shadow:0 24px 60px rgba(0,0,0,0.35);
            background:rgba(255,255,255,0.04);
        }
        @media (max-width: 960px){
            .hero-top{flex-direction:column; align-items:stretch; gap:28px;}
            .hero-visual{max-width:520px; width:100%; margin:0 auto;}
        }


        .hero-problems {
            margin-bottom: 36px;
            width: 100%;
        }

        .hero-problem-item {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 16px;
            padding: 12px 20px 12px 45px;
            color: var(--off-white);
            line-height: 1.6;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            position: relative;
            display: block;
            max-width: fit-content;
        }
        
        .hero-problem-item::before {
            content: "✓";
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted-gold);
            font-size: 20px;
            font-weight: 700;
        }

        .hero-main-copy {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--muted-gold);
            padding: 32px 28px;
            margin: 36px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            width: 100%;
        }

        .hero-main-copy h1 {
            font-size: 32px;
            line-height: 1.6;
            margin-bottom: 16px;
            color: var(--off-white);
        }

        .hero-main-copy h1 .highlight {
            color: var(--muted-gold);
            font-weight: 700;
        }

        .hero-main-copy .sub-copy {
            font-size: 17px;
            font-weight: 500;
            color: rgba(247, 246, 242, 0.9);
            margin-top: 12px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 36px 0;
            width: 100%;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(201, 169, 97, 0.3);
            padding: 20px 16px;
            text-align: center;
            border-radius: 4px;
        
            font-size: 0;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--muted-gold);
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--off-white);
            line-height: 1.5;
        }

        .hero-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 36px;
            width: 100%;
        }

        .hero-cta a {
            width: 100%;
        }

        @media (max-width: 968px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-main-copy h1 {
                font-size: 24px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Base Sections */
        section { padding: 80px 0; }
        .section-white { background-color: white; }
        .section-light { background-color: var(--off-white); }
        .section-dark { background-color: var(--navy); color: var(--off-white); }

        .section-header { text-align: center; margin-bottom: 56px; }
        .section-label {
            font-size: 14px;
            color: var(--muted-gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 16px;
            display: block;
        }

        /* Cards Grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 44px;
        }

        .card {
            background: white;
            padding: 32px;
            border: 1px solid var(--border-light);
            border-left: 4px solid var(--muted-gold);
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px); }

        .card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
        .card p { color: #333; }

        /* Definition Box */
        .definition-box {
            background: white;
            border: 2px solid var(--muted-gold);
            padding: 48px;
            margin: 44px auto 0;
            max-width: 940px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .definition-box h3 {
            color: var(--navy);
            text-align: center;
            font-size: 28px;
            margin-bottom: 18px;
        }

        .definition-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 26px;
            flex-wrap: wrap;
            gap: 14px;
        }

        .definition-step {
            flex: 1;
            min-width: 220px;
            text-align: center;
            font-size: 18px;
            font-weight: 500;
            background: rgba(201, 169, 97, 0.07);
            border: 1px solid var(--border-light);
            padding: 18px 14px;
        }

        .definition-arrow { color: var(--muted-gold); font-size: 24px; margin: 0 6px; }

        /* Lifecycle */
        .lifecycle-wrap {
            max-width: 980px;
            margin: 0 auto;
        }
        .lifecycle-image {
            max-width: 100%;
            margin: 32px auto;
            text-align: center;
        }
        .lifecycle-image img {
            max-width: 100%;
            height: auto;
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .phase-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 28px;
        }
        .phase {
            background: white;
            border: 1px solid var(--border-light);
            padding: 20px 18px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .phase .tag {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 0.12em;
            padding: 4px 10px;
            border: 1px solid var(--border-light);
            color: var(--navy);
            margin-bottom: 10px;
        }
        .phase h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
        .phase ul { list-style: none; }
        .phase li { padding: 6px 0 6px 16px; position: relative; color: #333; font-size: 14px; }
        .phase li:before { content: "・"; position: absolute; left: 0; color: var(--muted-gold); }

        .phase.highlight {
            border: 2px solid var(--muted-gold);
            position: relative;
        }
        .phase.highlight:before {
            content: "対象";
            position: absolute;
            top: -12px;
            left: 16px;
            background: var(--muted-gold);
            color: white;
            padding: 2px 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
        }


        /* Assets */
        .asset-box {
            max-width: 980px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border: 1px solid var(--border-light);
            border-left: 4px solid var(--muted-gold);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .asset-box h3 { color: var(--navy); }
        .asset-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-top: 18px;
        }
        .asset-list { list-style: none; }
        .asset-list li { padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid #eee; }
        .asset-list li:last-child { border-bottom: none; }
        .asset-list li:before { content: "●"; color: var(--muted-gold); position: absolute; left: 0; }

        /* Deliverables */
        .deliverables {
            max-width: 980px;
            margin: 0 auto;
        }
        .deliver-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 26px;
        }
        .deliver-card {
            background: white;
            padding: 26px;
            border: 1px solid var(--border-light);
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .deliver-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; }
        .deliver-card ul { list-style: none; }
        .deliver-card li { padding: 7px 0 7px 18px; position: relative; font-size: 14px; color: #333; }
        .deliver-card li:before { content: "・"; position: absolute; left: 0; color: var(--muted-gold); }

        /* Mechanism */
        .mechanism-content {
            background: white;
            padding: 48px;
            border-left: 4px solid var(--muted-gold);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            max-width: 980px;
            margin: 0 auto;
        }
        .mechanism-quote {
            font-size: 22px;
            line-height: 1.8;
            color: var(--navy);
            text-align: center;
            margin-bottom: 32px;
            font-weight: 500;
        }
        .mechanism-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }
        .mechanism-step {
            background: rgba(201, 169, 97, 0.05);
            border: 1px solid var(--border-light);
            padding: 24px 20px;
            text-align: center;
            flex: 1;
            max-width: 240px;
        }
        .mechanism-step-icon {
            font-size: 32px;
            color: var(--muted-gold);
            margin-bottom: 12px;
        }
        .mechanism-step-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        .mechanism-step-desc {
            font-size: 13px;
            line-height: 1.6;
            color: #555;
        }
        .mechanism-arrow {
            color: var(--muted-gold);
            font-size: 24px;
            flex-shrink: 0;
        }
        .mechanism-explanation { 
            font-size: 16px; 
            line-height: 1.9; 
            color: #333; 
        }
        .mechanism-explanation p {
            margin-bottom: 16px;
        }
        .mechanism-explanation p:last-child {
            margin-bottom: 0;
        }

        /* Evidence */
        .evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 42px; }
        .evidence-card {
            background: white;
            padding: 28px 22px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .evidence-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--muted-gold);
            display: block;
            margin-bottom: 12px;
        }
        .evidence-label { font-size: 16px; font-weight: 700; color: var(--navy); }
        .evidence-card p { margin-top: 12px; font-size: 13px; color: #666; line-height: 1.6; }

        /* Timeline */
        .timeline { max-width: 900px; margin: 48px auto 0; position: relative; }
        .timeline:before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: var(--muted-gold); }
        .timeline-item { position: relative; padding-left: 100px; margin-bottom: 48px; }
        .timeline-marker {
            position: absolute; left: 0; top: 0; width: 80px; height: 80px;
            background: var(--navy); color: var(--muted-gold); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-align: center; padding: 0 6px;
        }
        .timeline-content {
            background: white; padding: 32px; border: 1px solid var(--border-light);
            border-left: 4px solid var(--muted-gold); box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .timeline-content h3 { color: var(--navy); margin-bottom: 12px; }
        .timeline-content ul { list-style: none; }
        .timeline-content li { padding: 8px 0 8px 20px; position: relative; }
        .timeline-content li:before { content: "・"; position: absolute; left: 0; color: var(--muted-gold); }

        /* Pricing */
        .pricing-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 42px; }
        .pricing-card {
            background: white; padding: 40px 28px; text-align: center;
            border: 2px solid var(--border-light); box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .pricing-card:hover { border-color: var(--muted-gold); box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-4px); }
        .pricing-card.featured { border-color: var(--muted-gold); position: relative; }
        .pricing-card.featured:before {
            content: '推奨'; position: absolute; top: -16px; left: 50%;
            transform: translateX(-50%); background: var(--muted-gold); color: white;
            padding: 4px 22px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
        }
        .pricing-plan { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
        .pricing-price { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
        .pricing-frequency { font-size: 14px; color: #666; margin-bottom: 18px; }
        .pricing-description { font-size: 14px; line-height: 1.6; color: #555; min-height: 92px; }
        .pricing-badges { margin-top: 18px; display:flex; justify-content:center; flex-wrap:wrap; gap:8px; }
        .badge {
            display:inline-block; font-size: 12px; padding: 4px 10px; border: 1px solid var(--border-light);
            color: var(--navy); background: rgba(201, 169, 97, 0.06);
        }

        /* FAQ */
        .faq-list { max-width: 900px; margin: 48px auto 0; }
        .faq-item { background: white; margin-bottom: 24px; border: 1px solid var(--border-light); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
        .faq-question {
            padding: 24px 32px;
            font-weight: 700;
            color: var(--navy);
            position: relative;
            border-left: 4px solid var(--muted-gold);
        }
        .faq-question:before {
            content: 'Q';
            position: absolute;
            left: -4px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: var(--muted-gold);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }
        .faq-answer { padding: 0 32px 24px 56px; line-height: 1.7; color: #444; }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--midnight-navy) 100%);
            color: var(--off-white);
            padding: 96px 0;
            text-align: center;
        }
        .cta-section h2 { color: var(--off-white); margin-bottom: 18px; }
        .cta-lead { font-size: 16px; color: rgba(247, 246, 242, 0.9); line-height: 1.9; }
        .cta-checklist { max-width: 720px; margin: 44px auto 0; text-align: left; }
        .cta-checklist h3 { color: var(--muted-gold); text-align: center; margin-bottom: 18px; }
        .cta-checklist ul { list-style: none; }
        .cta-checklist li {
            padding: 12px 0 12px 32px;
            position: relative;
            border-bottom: 1px solid rgba(247, 246, 242, 0.2);
        }
        .cta-checklist li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--muted-gold);
            font-weight: 700;
            font-size: 20px;
        }
        .route-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
        .route {
            background: rgba(247, 246, 242, 0.06);
            border: 1px solid rgba(201, 169, 97, 0.25);
            padding: 22px;
        }
        .route h3 { font-size: 18px; color: var(--off-white); margin-bottom: 10px; }
        .route p { font-size: 14px; color: rgba(247, 246, 242, 0.85); line-height: 1.7; }
        .cta-buttons { display: flex; justify-content: center; gap: 18px; margin-top: 44px; flex-wrap: wrap; }

        .btn {
            display: inline-block;
            padding: 16px 42px;
            font-size: 17px;
            font-weight: 700;
            text-decoration: none;
            border: 2px solid;
            transition: all 0.3s;
            letter-spacing: 0.05em;
            text-align: center;
            line-height: 1.2;
        }
        .btn-primary { background: var(--muted-gold); color: white; border-color: var(--muted-gold); }
        .btn-primary:hover { background: transparent; color: var(--muted-gold); }
        .btn-secondary { background: transparent; color: var(--off-white); border-color: var(--off-white); }
        .btn-secondary:hover { background: var(--off-white); color: var(--navy); }
        .btn-navy { background: var(--navy); color: var(--off-white); border-color: var(--navy); }
        .btn-navy:hover { background: transparent; color: var(--navy); }

        /* Footer */
        footer { background-color: var(--midnight-navy); color: var(--off-white); padding: 48px 0 24px; }
        .footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
        .footer-section h4 { font-size: 18px; margin-bottom: 16px; color: var(--muted-gold); }
        .footer-section a { display: block; color: var(--off-white); text-decoration: none; margin-bottom: 12px; font-size: 15px; transition: color 0.3s; }
        .footer-section a:hover { color: var(--muted-gold); }
        .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(247, 246, 242, 0.2); font-size: 14px; color: rgba(247, 246, 242, 0.7); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
        .footer h4 { margin: 0 0 20px; font-size: 16px; font-weight: 700; color: var(--muted-gold); letter-spacing: 0.02em; }
        .footer p { margin: 0 0 12px; font-size: 14px; line-height: 1.75; }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: #ffffff; transition: color 0.2s ease; }
        .footer a.tel-link { color: #ffffff; }
        .footer-links a:hover { color: var(--muted-gold); }

        @media (max-width: 1000px) {
            .phase-grid { grid-template-columns: repeat(2, 1fr); }
            .evidence-grid { grid-template-columns: repeat(2, 1fr); }
            .deliver-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 30px; }
            h2 { font-size: 26px; }
            h3 { font-size: 22px; }
            .container { padding: 0 20px; }

            .grid-3, .asset-grid, .pricing-table, .footer-content, .route-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .pricing-quick{flex-direction:column; align-items:stretch;}
            .pricing-quick-cta{justify-content:flex-start;}
            .hero h1 { font-size: 30px; }
            .stat-item { min-width: 160px; }

            .timeline:before { left: 20px; }
            .timeline-marker { width: 60px; height: 60px; font-size: 14px; }
            .timeline-item { padding-left: 80px; }

            nav { display: none; }
        }
    

        

/* Inline-style extraction (jimucho_v18) */
.deliver-desc{ color:#333; font-size:14px; line-height:1.8; }
[data-note="timing"]{ margin-top: 18px; color:#666; font-size: 13px; line-height:1.7; text-align:center; }
.definition-box--compact{ margin-top: 28px; }
.definition-title{ margin-bottom: 14px; }
.definition-list{ margin-left: 1.2em; line-height:1.9; color:#333; }

.mechanism-mustdo-title{ margin:0 0 10px; font-weight:700; color:#111; }
.mechanism-mustdo-list{ margin:0; padding-left: 1.2em; line-height:1.9; color:#333; }

.evidence-title{ color: var(--off-white); }
.evidence-lead{ color: rgba(247, 246, 242, 0.85); }
.evidence-note{ margin-top: 18px; text-align:center; font-size: 13px; color: rgba(247, 246, 242, 0.75); }

.pricing-tax{ font-size:14px; font-weight:700; }
.pricing-note{ text-align: center; margin-top: 40px; font-size: 14px; color: #666; line-height: 1.8; }

        /* Pricing quick + collapsible details (v20) */
        .pricing-quick{
            display:flex; gap:22px; align-items:center; justify-content:space-between;
            margin-top: 22px; padding: 18px 18px;
            background: rgba(255,255,255,0.65);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .pricing-quick-price{
            font-size: 20px; font-weight: 800; letter-spacing: .02em;
            color: var(--deep-navy);
        }
        .pricing-quick-price strong{ color: var(--muted-gold); }
        .pricing-quick-desc{ margin-top: 8px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
        .pricing-quick-cta{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
        .pricing-details{ margin-top: 18px; border: 1px solid var(--border-light); border-radius: 14px; background: rgba(255,255,255,0.85); overflow:hidden; }
        .pricing-details summary{
            list-style:none; cursor:pointer; padding: 16px 18px;
            font-weight: 700; color: var(--deep-navy);
            display:flex; align-items:center; justify-content:space-between;
            background: rgba(3,22,47,0.03);
        }
        .pricing-details summary::-webkit-details-marker{ display:none; }
        .pricing-details summary:after{
            content:"＋"; font-weight: 900; color: var(--muted-gold); margin-left: 12px;
        }
        .pricing-details[open] summary:after{ content:"−"; }
        .pricing-details-body{ padding: 10px 18px 18px; }
        #pricing-details{ scroll-margin-top: 90px; }



.cta-inner{ max-width: 980px; margin: 36px auto 0; }
.cta-alt-title{ color: var(--muted-gold); text-align:center; margin-bottom: 14px; }
.tel-hours-inline{ font-size: 13px; font-weight: 400; }

.footer-section p{ margin-bottom: 12px; }
.footer-section p:last-child{ margin-bottom: 0; }

/* Mobile header menu (based on recruitv5 patterns) */
        .hamburger{
            display:none;
            width:44px;
            height:44px;
            border-radius:12px;
            border:1px solid rgba(255,255,255,0.22);
            background: rgba(255,255,255,0.08);
            cursor:pointer;
            padding:0;
            align-items:center;
            justify-content:center;
            gap:4px;
            flex-direction:column;
            -webkit-tap-highlight-color: transparent;
        }
        .hamburger span{
            display:block;
            width:20px;
            height:2px;
            background: var(--off-white);
            border-radius: 99px;
        }

        .mobile-nav{
            display:none;
            background: var(--navy);
            border-top: 1px solid rgba(255,255,255,0.12);
            padding: 14px 0;
        }
        .mobile-nav a{
            display:block;
            padding: 14px 40px;
            color: var(--off-white);
            text-decoration:none;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255,255,255,0.10);
        }
        .mobile-nav a:last-child{ border-bottom:none; }
        .mobile-nav a:hover{ color: var(--muted-gold); }

        /* Floating CTA (mobile only) */
        .floating-cta{
            position: fixed;
            left: 20px;
            right: 20px;
            bottom: 18px;
            z-index: 950;
            display: none;
            flex-direction: column;
            gap: 12px;
        }
        .floating-cta .btn{
            width: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.28);
        }

        @media (max-width: 768px){
            .hamburger{ display:flex; }
            .mobile-nav a{ padding-left: 20px; padding-right: 20px; }
            .floating-cta{ display:flex; }
        }


/* ===== jimucho_v19 adjustments (structure-first, copy unchanged) ===== */

/* Slightly tighter section for moved stats (keeps first scroll light) */
.section-compact { padding: 56px 0; }
.section-compact .hero-stats { margin: 0; }

/* Stat labels: avoid visual "holes" caused by double <br> without touching copy */
.stat-label br + br { display: none; }

/* Problem cards: progressive disclosure via <details> */
.card--accordion { padding: 0; }
.card--accordion .card-summary {
  list-style: none;
  cursor: pointer;
  padding: 32px;
  position: relative;
}
.card--accordion .card-summary::-webkit-details-marker { display: none; }
.card--accordion .card-summary::after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 30px;
  font-weight: 700;
  color: var(--muted-gold);
}
.card--accordion[open] .card-summary::after { content: "−"; }

.card--accordion .card-summary h3 {
  margin: 0 36px 10px 0;
}
.card--accordion .card-summary p {
  margin: 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--accordion[open] .card-summary p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

/* Make the clickable area feel like a card */
.card--accordion:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px); }
.card--accordion:focus-within { outline: 2px solid rgba(201, 169, 97, 0.55); outline-offset: 2px; }

@media (max-width: 768px) {
  .section-compact { padding: 44px 0; }
  .card--accordion .card-summary { padding: 26px; }
  .card--accordion .card-summary::after { right: 18px; top: 24px; }
  .card--accordion .card-summary h3 { margin-right: 34px; }
}

/* =========================================================
   Embedded contact form (recruitv5 contact form migrated)
   ========================================================= */
.contact-form-wrap {
  margin-top: 44px;
}

.contact-form-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--off-white);
}

.form-container {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 18px 52px rgba(15, 20, 25, 0.28);
  text-align: left;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-group label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.required {
  color: var(--muted-gold);
  margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26, 35, 50, 0.22);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--charcoal);
}

.form-group textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.65;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(17, 24, 39, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

.btn-block {
  width: 100%;
}

.text-note {
  font-size: 13px;
  line-height: 1.7;
}

.privacy-note {
  margin-top: 12px;
  text-align: center;
  color: rgba(17, 24, 39, 0.7);
}

/* Contact section small screen adjustments */
@media (max-width: 840px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 22px;
  }
  .contact-form-wrap {
    margin-top: 34px;
  }
}

/* Wider content for contact (form) */
#contact .cta-checklist {
  max-width: 1040px;
}

/* Route grid responsiveness */
@media (max-width: 960px) {
  #contact .route-grid {
    grid-template-columns: 1fr;
  }
}
