/* v4 note: LP003A/LP003B giữ nguyên layout/code cũ; chỉ đồng bộ màu brand NAKAJP. */
/* =========================================================
ROOT
========================================================= */

:root{
  --njp-font:"Be Vietnam Pro",sans-serif;
  --njp-serif:"Be Vietnam Pro",sans-serif;

    --brown:#6B4F3A;
    --brown-light:#B8944D;
    --brown-dark:#3E2E22;

    --cream:#F7F3EC;
    --cream-dark:#EFE6DA;

    --white:#FFFFFF;

    --text:#231F1A;
    --text-soft:#635A50;

    --red:#8F2F24;

    --shadow-soft:
    0 10px 40px rgba(0,0,0,.04);

    --shadow-medium:
    0 20px 60px rgba(0,0,0,.06);

    --shadow-hover:
    0 35px 90px rgba(107,79,58,.14);

    --radius:28px;

    --transition:
    all .55s cubic-bezier(.165,.84,.44,1);

}

/* =========================================================
RESET
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--njp-font);

    background:
    linear-gradient(
        to bottom,
        #F7F4F0,
        #F2ECE6
    );

    color:var(--text);

    line-height:1.8;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

::selection{
    background:var(--brown-light);
    color:#fff;
}

.container{

    width:100%;
    max-width:1200px;

    margin:auto;

    padding:0 28px;
}

/* =========================================================
TYPOGRAPHY
========================================================= */

h1,h2,h3,h4{

    font-family:var(--njp-serif);
	text-transform: uppercase;
    line-height:1.2;

    letter-spacing:-0.5px;
}

h1{font-size: clamp(40px,6vw,44px);color:#fff;margin-bottom:28px;}

h2{font-size: clamp(34px,4vw,35px);color:var(--brown);margin-bottom:18px;}

h3{

    font-size:24px;

    margin-bottom:14px;
}

p{color:var(--text-soft);font-size: 16px;}

/* =========================================================
SECTION
========================================================= */

section{
    position:relative;
}

.section{
    padding:120px 0;
}

.section-white{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.96),
        rgba(255,255,255,.92)
    );
}

.section-soft{

    background:
    linear-gradient(
        180deg,
        #F7F3EE,
        #F2ECE5
    );
}

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

.section-title{/* max-width:860px; */margin:0 auto 90px;}

.section-title p{/* max-width:760px; */margin:auto;font-size:18px;line-height:1.9;}

.section-title::after{

    content:"";

    width:90px;
    height:2px;

    display:block;

    margin:28px auto 0;

    background:
    linear-gradient(
        to right,
        var(--brown-light),
        transparent
    );
}

/* =========================================================
BUTTON
========================================================= */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:20px 42px;

    border-radius:999px;

    border:none;

    background:
    linear-gradient(
        135deg,
        #8C674B,
        #6B4F3A
    );

    color:#fff;

    text-decoration:none;

    font-weight:700;

    cursor:pointer;

    transition:all .45s ease;

    box-shadow:
    0 12px 35px rgba(107,79,58,.24);

    position:relative;

    overflow:hidden;
}

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:120%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.24),
        transparent
    );

    transition:.8s;
}

.btn:hover::before{
    left:120%;
}

.btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 22px 50px rgba(107,79,58,.30);
}

.inline-cta{

    margin-top:40px;

    text-align:center;
}
/* --- NAVIGATION DOTS (LEFT) --- */
        .nav-dots { position: fixed; left: 30px; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
        .nav-dots a { width: 10px; height: 10px; background: rgba(107, 79, 58, 0.2); border: 1px solid var(--brown); border-radius: 50%; transition: var(--transition); }
        .nav-dots a.active { background: var(--brown); transform: scale(1.5); }
        .nav-dots a:hover { background: var(--brown-light); transform: scale(1.3); }


/* =========================================================
HERO
========================================================= */

.hero{
    position:relative;
    isolation:isolate;

    min-height:100vh;

    display:flex;

    align-items:center;
    justify-content:center;

    text-align:center;
	padding:150px 0;
    overflow:hidden;
}

.hero-bg{

    position:absolute;
    z-index:0;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.72),
        rgba(0,0,0,.58)
    ),

    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=2070')
    center/cover;

    animation:heroZoom 18s ease-in-out infinite alternate;
}

.hero::after{

    content:"";
    z-index:1;

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(255,255,255,.08),
        transparent 60%
    );
}

.hero > .container{
    position:relative;
    z-index:2;
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:1200px;
}

.hero p{color:rgba(255,255,255,.84);font-size: 15px;margin-bottom:34px;}

.hero-list{

    list-style:none;

    margin:34px 0;
}

.hero-list li{

    color:#fff;

    margin-bottom:12px;

    font-size:18px;
}

.hero-proof{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

    margin-top:40px;
}

.hero-proof span{

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;
}

.hero-trust{

    margin-top:18px;

    color:rgba(255,255,255,.7);

    font-size:14px;
}

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }
}
/* =========================================================
HERO LOGO
========================================================= */

.hero-logo-wrap{

    width:100%;

    display:flex;

    justify-content:center;

    margin-bottom:34px;
}

.hero-logo{
    display:block;
    width:160px;
    max-width:40vw;
    height:auto;
    max-height:64px;
    object-fit:contain;
    object-position:left center;
    filter:
    brightness(0)
    invert(1);
    opacity:.96;
    transition:.45s ease;
}

.hero-logo:hover{

    transform:
    translateY(-2px)
    scale(1.02);
}

@media(max-width:768px){

    .hero-logo{
        width:140px;
        max-width:42vw;
        max-height:52px;
    }
}
/* =========================================================
WARNING
========================================================= */

.warning{

    background:#fff;

    padding:42px 0;

    border-bottom:
    1px solid rgba(0,0,0,.05);
}

.warning p{

    max-width:920px;

    margin:auto;

    font-size:18px;
}

.warning strong{
    color:var(--red);
}

/* =========================================================
GRID
========================================================= */

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

/* =========================================================
CARD
========================================================= */

.card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    padding:42px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.92),
        rgba(255,255,255,.84)
    );

    backdrop-filter:blur(14px);

    transition:all .55s cubic-bezier(.165,.84,.44,1);

    box-shadow:
    0 2px 10px rgba(0,0,0,.02),
    0 18px 50px rgba(0,0,0,.06);
}

.card::after{

    content:"";

    position:absolute;

    top:-40%;
    right:-20%;

    width:220px;
    height:220px;

    background:
    radial-gradient(
        circle,
        rgba(166,123,91,.10),
        transparent 70%
    );
}

.card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 35px 90px rgba(107,79,58,.14);
}

.card i{

    width:72px;
    height:72px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        rgba(166,123,91,.16),
        rgba(107,79,58,.10)
    );

    color:var(--brown);

    font-size:30px;

    margin-bottom:26px;
}

/* =========================================================
CASE
========================================================= */

.case-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;
}

.case-box{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    height:500px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.case-box img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.4s ease;
}

.case-box:hover img{

    transform:scale(1.08);
}

.case-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent 50%
    );

    z-index:2;
}

.case-label{

    position:absolute;

    top:22px;
    left:22px;

    z-index:3;

    padding:8px 16px;

    border-radius:999px;

    background:#fff;

    font-size:12px;

    font-weight:700;
}

.after{

    background:var(--brown);

    color:#fff;
}

/* =========================================================
DARK SECTION
========================================================= */

.dark-section{

    background:
    linear-gradient(
        135deg,
        #5E4633,
        #3E2D21
    );

    color:#fff;
}

.dark-section h2,
.dark-section h3{
    color:#fff;
}

.dark-section p{
    color:rgba(255,255,255,.76);
}

/* =========================================================
FAQ
========================================================= */

.faq-grid{

    display:grid;

    gap:24px;

    max-width:900px;

    margin:auto;
}

.faq-item{

    position:relative;

    padding-left:42px;
}

.faq-item::after{

    content:"?";

    position:absolute;

    left:-12px;
    top:32px;

    width:44px;
    height:44px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--brown-light),
        var(--brown)
    );

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-weight:700;
}

/* =========================================================
FORM
========================================================= */

.form-box{
    position:relative;
    max-width: 800px;
    margin:auto;
    padding:60px;
    overflow:hidden;
    border-radius:36px;
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.82),
        rgba(255,255,255,.72)
    );
    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
    }

.form-alert{

    padding:18px 22px;

    border-radius:18px;

    background:
    rgba(165,42,42,.08);

    color:var(--red);

    margin-bottom:28px;

    font-size:15px;
}

.form-badge{

    display:inline-flex;

    padding:8px 18px;

    border-radius:999px;

    background:var(--red);

    color:#fff;

    font-size:12px;

    font-weight:700;

    margin-bottom:22px;
}

input,
select,
textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:16px;

    border:none;

    border-radius:18px;

    background:
    rgba(255,255,255,.78);

    box-shadow:
    inset 0 1px 2px rgba(0,0,0,.04);

    font-family:inherit;

    font-size:15px;
}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    background:#fff;

    box-shadow:
    0 0 0 5px rgba(166,123,91,.10),
    0 10px 30px rgba(166,123,91,.10);
}

.form-trust{

    margin-top:18px;

    text-align:center;

    font-size:14px;
}

/* =========================================================
FLOATING
========================================================= */

.floating{

    position:fixed;

    right:24px;
    bottom:110px;

    z-index:9998;
}

.floating a{

    width:64px;
    height:64px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #8C674B,
        #6B4F3A
    );

    color:#fff;

    text-decoration:none;

    font-size:24px;

    box-shadow:
    0 18px 45px rgba(107,79,58,.28);

    animation:pulse 2s infinite;

    transition:.35s ease;
}

.floating a:hover{

    transform:
    translateY(-4px)
    scale(1.05);
}

/* ZALO */

/* =========================================================
ZALO WIDGET FIX
========================================================= */

.zalo-chat-widget{

 

    right:24px !important;

    bottom:24px !important;

    left:auto !important;

    z-index:9999 !important;

    width:60px !important;
    height:60px !important;

    transition:.35s ease;
transform:none !important;
}

/* CHỈ style icon container */

.zalo-chat-widget > div{

    border-radius:50% !important;

    overflow:hidden !important;

    box-shadow:
    0 18px 45px rgba(0,0,0,.18);
}

/* KHÔNG đụng iframe */

.zalo-chat-widget iframe{

    border:none !important;
}

/* hover */

.zalo-chat-widget:hover{

    transform:
    translateY(-4px)
    scale(1.04);
}

/* MOBILE */

@media(max-width:768px){

    .zalo-chat-widget{

        right:18px !important;

        bottom:18px !important;
    }
}/* =========================================================
MOBILE STICKY CTA
========================================================= */

.mobile-sticky-cta{

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    z-index:999;

    padding:14px;

    background:
    rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    border-top:
    1px solid rgba(0,0,0,.06);

    display:none;
}

.mobile-sticky-cta a{

    width:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:16px;

    border-radius:999px;

    background:var(--brown);

    color:#fff;

    text-decoration:none;

    font-weight:700;
}

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

@media(max-width:992px){

    .grid-3,
    .grid-4,
    .process-grid,
    .case-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .section{
        padding:90px 0;
    }

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    .hero{
        min-height:auto;
        padding:120px 0;
    }

    .card{
        padding:30px;
    }

    .case-box{
        height:340px;
    }

    .form-box{
        padding:32px 24px;
    }

    .btn{
        width:100%;
    }

    .mobile-sticky-cta{
        display:block;
    }

    body{
        padding-bottom:90px;
    }

}
/* =========================================================
WORKFLOW / QUY TRÌNH
========================================================= */
.workflow-section{
    padding:120px 0;
    background:#fff;
}

.workflow-container{
    max-width:1000px;
    margin:auto;
}

.workflow-title{
    text-align:center;
    margin-bottom:80px;
}

.workflow-title h2{
    font-size: 37px;
    color:var(--brown);
    margin-bottom:16px;
}

.workflow-title p{
    font-size: 15px;
    color:var(--text-soft);
    line-height:1.8;
}

/* Timeline */
.workflow-timeline{
    position:relative;
    padding-left:120px;
    margin-bottom:60px;
}

.workflow-timeline::before{
    content:"";
    position:absolute;
    left:100px;
    top:0;
    width:4px;
    height:100%;
    background:var(--brown-light);
    border-radius:4px;
}

.workflow-step{
    position:relative;
    margin-bottom:48px;
}

.workflow-step::before{
    content:"";
    position:absolute;
    left:-30px;
    top:0;
    width:16px;
    height:16px;
    background:var(--brown);
    border-radius:50%;
    border:3px solid var(--brown-light);
}

.workflow-step h3{
    font-size:20px;
    color:var(--brown-dark);
    margin-bottom:8px;
}

.workflow-step p{
    font-size:16px;
    color:var(--text-soft);
    line-height:1.7;
}

/* Quote / team description */
.workflow-quote{
    margin-top:40px;
    padding:32px;
    border-radius:28px;
    background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
    box-shadow:var(--shadow-medium);
    font-size:16px;
    line-height:1.8;
    color:var(--text-soft);
}
/* ================= NAV DOT PRO MAX ================= */
.nav-dots {
    position: fixed;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

/* nền line */
.nav-dots::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(107, 79, 58, 0.12);
    border-radius: 10px;
}

/* progress line */
.nav-progress {
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--brown-light), var(--brown));
    border-radius: 10px;
    transition: height 0.2s ease-out;
}

/* DOT */
.nav-dots a {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brown);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(166,123,91,0);
}

/* hover */
.nav-dots a:hover {
    transform: scale(1.4);
    background: var(--brown-light);
}

/* tooltip */
.nav-dots a::after {
    content: attr(title);
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.78);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.25s ease;
    pointer-events: none;
}

.nav-dots a:hover::after {
    opacity: 1;
}

/* ACTIVE STATE (ZEN GLOW) */
.nav-dots a.active {
    background: var(--brown-light);
    transform: scale(1.6);
    box-shadow: 0 0 0 6px rgba(166,123,91,0.18);
    border-color: var(--brown-light);
}

/* hide on mobile */
@media (max-width: 768px) {
    .nav-dots {
        display: none;
    }
}
/* Header Sticky */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 10px 0;
            transition: 0.3s;
        }
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nakajp-lp003 .header-logo {
            display:block;
            flex:0 0 auto;
            width:184px;
            max-width:38vw;
        }
        .nakajp-lp003 .header-logo img {
            display:block;
            width:100%;
            height:auto;
            max-height:52px;
            object-fit:contain;
            object-position:left center;
            border-radius:0;
        }
        .header-phone {
            background: #C5A059;
            color: white !important;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }
        .header-phone:hover {
            background:#6B4F3A ;
            transform: translateY(-2px);
        }



/* =========================================================
LP003 FORM/TRACKING REFINEMENT
========================================================= */
.form-field-label{display:block;font-size:13px;font-weight:700;color:var(--brown-dark);margin:0 0 8px 4px;}
.proof-note{margin-top:18px;font-size:13px;color:rgba(255,255,255,.74);}
.safe-proof-note{margin-top:16px;font-size:14px;color:var(--text-soft);text-align:center;}
.case-disclaimer{margin-top:18px;font-size:14px;color:var(--text-soft);text-align:center;}
.form-status{margin-top:14px;padding:12px 14px;border-radius:12px;font-size:14px;display:none;}
.form-status.is-success{display:block;background:rgba(48,125,69,.1);color:#27643a;}
.form-status.is-error{display:block;background:rgba(165,42,42,.08);color:var(--red);}
@media(max-width:768px){.floating{bottom:104px}.zalo-chat-widget{bottom:24px !important}}


/* LP003 variant helpers */
.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
    text-transform:uppercase;
}
.risk-check-grid .card i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:linear-gradient(135deg, rgba(166,123,91,.16), rgba(107,79,58,.10));
    color:var(--brown);
    font-size:30px;
    margin-bottom:26px;
}

@media(max-width:768px){.mobile-sticky-cta.is-visible{display:flex;gap:10px}.mobile-sticky-cta a{flex:1}.mobile-sticky-cta a:first-child{background:#fff;color:var(--brown);border:1px solid rgba(0,0,0,.12)}}
/* NAKAJP mobile H1 size adjustment — 2026-06-11 */
@media (max-width: 768px){
  .hero h1,
  h1{
    font-size: clamp(32px, 8.4vw, 36px) !important;
    line-height: 1.16 !important;
    margin-bottom: 18px;
  }
}


/* NAKAJP CSS safety patch — 2026-06-12
   Fixes: desktop mobile-sticky leakage, visible raw Zalo overlay text,
   floating widgets overlapping mobile sticky CTA. */
.mobile-sticky,
.mobile-sticky-cta {
  display: none !important;
}

@media (max-width: 980px) {
  .mobile-sticky.is-visible,
  .mobile-sticky-cta.is-visible {
    display: flex !important;
  }
}

@media (min-width: 981px) {
  .mobile-sticky,
  .mobile-sticky-cta {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.zalo-track-overlay {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 10001 !important;
  border-radius: 999px !important;
  display: block !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  background: transparent !important;
  text-decoration: none !important;
  text-indent: -9999px !important;
  white-space: nowrap !important;
}

.zalo-track-overlay:focus-visible {
  outline: 3px solid rgba(140, 103, 75, .45) !important;
  outline-offset: 4px !important;
}

@media (max-width: 980px) {
  .zalo-track-overlay,
  .zalo-chat-widget {
    right: 16px !important;
    bottom: 92px !important;
  }
}


/* Phase 4 LP003 mobile nav + footer spacing fix */
@media (max-width:760px){
  .nakajp-lp003 .phase4-mobile-page-nav{
    display:flex !important;
    position:sticky !important;
    top:70px !important;
    z-index:999 !important;
    margin-top:70px !important;
    width:100% !important;
    max-width:100% !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    gap:8px !important;
    padding:9px 14px 10px !important;
    background:rgba(247,240,228,.98) !important;
    border-top:1px solid rgba(107,79,58,.10) !important;
    border-bottom:1px solid rgba(107,79,58,.16) !important;
    box-shadow:0 8px 18px rgba(37,33,29,.08) !important;
    -webkit-overflow-scrolling:touch !important;
    scrollbar-width:none !important;
  }
  .nakajp-lp003 .phase4-mobile-page-nav::-webkit-scrollbar{display:none !important;}
  .nakajp-lp003 .phase4-mobile-page-nav a{
    flex:0 0 auto !important;
    min-height:38px !important;
    padding:9px 13px !important;
    border-radius:999px !important;
    background:#fff !important;
    border:1px solid rgba(107,79,58,.16) !important;
    box-shadow:0 6px 16px rgba(45,34,25,.08) !important;
    color:#3b3028 !important;
    font-size:12px !important;
    font-weight:850 !important;
    line-height:1.08 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
  }
  .nakajp-lp003 section[id]{
    scroll-margin-top:132px !important;
  }
}
@media (min-width:761px){
  .nakajp-lp003 .phase4-mobile-page-nav{display:none !important;}
}
.nakajp-lp003 .form-section{
  padding-bottom:96px !important;
}
.nakajp-lp003 footer{
  margin-top:40px !important;
}
@media (max-width:760px){
  .nakajp-lp003 .form-section{
    padding-bottom:76px !important;
  }
  .nakajp-lp003 footer{
    margin-top:28px !important;
  }
}


/* Phase 5 content-depth blocks */
.nakajp-depth-section{position:relative}
.nakajp-depth-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px}
.nakajp-depth-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.nakajp-depth-grid article{background:#fff;border:1px solid rgba(93,70,45,.16);border-radius:16px;padding:20px;box-shadow:0 12px 28px rgba(31,24,18,.06)}
.nakajp-depth-grid h3{margin:0 0 10px;font-size:1.05rem;line-height:1.35;color:#2f261f}
.nakajp-depth-grid p{margin:0;color:#62584f;line-height:1.7}
.nakajp-after-submit{margin-top:18px;padding:18px;border:1px solid rgba(151,111,55,.22);border-radius:16px;background:rgba(248,244,237,.78)}
.nakajp-after-submit h3{margin:0 0 10px;font-size:1.05rem;color:#2f261f}
.nakajp-after-submit ol{margin:0;padding-left:20px;color:#62584f;line-height:1.65}
.nakajp-after-submit li+li{margin-top:6px}
.process-step b{display:block;margin-bottom:6px;color:#2f261f}
.process-step p{margin:0;font-size:.94rem;line-height:1.55;color:#62584f}
@media (max-width: 900px){.nakajp-depth-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 640px){.nakajp-depth-grid{grid-template-columns:1fr}.nakajp-depth-grid article{padding:16px}.nakajp-after-submit{padding:16px}}



/* Font sync fix — keep process step text in content column */
.process-step b,
.process-step p{grid-column:2;min-width:0;overflow-wrap:normal;word-break:normal;}
@media (max-width:640px){.process-step{grid-template-columns:50px minmax(0,1fr);gap:14px}.process-step:before{width:50px;height:50px}}

/* NAKAJP Phase 5 typography size sync — H1/H2 fixed */
:root{
  --njp-h1-size:40px;
  --njp-h2-size:32px;
}
h1,
.hero h1,
.brand-home-page h1,
.brand-hero h1,
.lp001-hero h1,
.lp003-hero h1,
.njp-hero h1,
.quote-hero h1{
  font-size:var(--njp-h1-size)!important;
  line-height:1.12!important;
}
h2,
.sec-title h2,
.workflow-title h2,
.cta-band h2,
.brand-home-page h2,
.brand-home-page .proof-copy h2,
.brand-home-page .team-intro h2,
.brand-home-page .showroom-layout h2,
.brand-home-page .spirit-layout h2,
.brand-home-page .hero-panel h2,
.njp-section-title h2,
.lp003-section h2,
.quote-section h2{
  font-size:var(--njp-h2-size)!important;
  line-height:1.18!important;
}
@media (max-width: 640px){
  h1,
  .hero h1,
  .brand-home-page h1,
  .brand-hero h1,
  .lp001-hero h1,
  .lp003-hero h1,
  .njp-hero h1,
  .quote-hero h1{
    font-size:var(--njp-h1-size)!important;
  }
  h2,
  .sec-title h2,
  .workflow-title h2,
  .cta-band h2,
  .brand-home-page h2,
  .brand-home-page .proof-copy h2,
  .brand-home-page .team-intro h2,
  .brand-home-page .showroom-layout h2,
  .brand-home-page .spirit-layout h2,
  .brand-home-page .hero-panel h2,
  .njp-section-title h2,
  .lp003-section h2,
  .quote-section h2{
    font-size:var(--njp-h2-size)!important;
  }
}


/* Phase font override — all typography: Be Vietnam Pro */
:root{
  --njp-font:"Be Vietnam Pro",sans-serif;
  --njp-serif:"Be Vietnam Pro",sans-serif;
}
html,body{
  font-family:var(--njp-font)!important;
}
body,button,input,select,textarea{
  font-family:var(--njp-font)!important;
}
h1,h2,h3,h4,h5,h6,
.hero-title,.section-title,.brand-title,.proof-title{
  font-family:var(--njp-serif)!important;
}
h1{font-size:40px!important;}
h2{font-size:32px!important;}


/* Phase font readability override — headings/body unified */
:root{
  --njp-font:"Be Vietnam Pro",sans-serif;
  --njp-serif:"Be Vietnam Pro",sans-serif;
}
body,button,input,select,textarea{
  font-family:var(--njp-font)!important;
}
h1,h2,h3,h4,h5,h6,
.hero-title,.section-title,.lp-hero h1,.lp-section h2,
.njp-hero h1,.njp-section h2,.service-hero h1,.service-section h2{
  font-family:var(--njp-font)!important;
}
h1{font-size:40px!important;line-height:1.15!important;}
h2{font-size:32px!important;line-height:1.22!important;}


/* ===== NAKAJP footer + readable casing fix ===== */
.nakajp-lp003 h1,
.nakajp-lp003 h2,
.nakajp-lp003 h3,
.nakajp-lp003 h4,
.nakajp-lp003 .section-title,
.nakajp-lp003 .hero-eyebrow,
.nakajp-lp003 .eyebrow,
.nakajp-lp003 .lp001-inline-015,
.nakajp-lp003 .lp001-inline-023,
.nakajp-lp003 .lp001-inline-053,
.nakajp-lp003 .lp001-inline-058,
.nakajp-lp003 .lp001-inline-066,
.nakajp-lp003 .lp001-inline-067,
.nakajp-lp003 .lp001-inline-083{
  text-transform:none !important;
}
.nakajp-lp003 .hero-eyebrow,
.nakajp-lp003 .eyebrow,
.nakajp-lp003 .lp001-inline-066{
  letter-spacing:.02em !important;
}

.nakajp-lp003 .nakajp-dark-footer{
  background:#1a1a1a;
  color:#fff;
  padding:76px 0 34px;
}
.nakajp-lp003 .nakajp-dark-footer .footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr 1fr .9fr;
  gap:38px;
  text-align:left;
  margin-bottom:48px;
}
.nakajp-lp003 .footer-logo{
  max-width:172px;
  height:auto;
  margin-bottom:18px;
  filter:brightness(0) invert(1);
}
.nakajp-lp003 .nakajp-dark-footer h3{
  margin:0 0 18px;
  color:#B8944D;
  font-size:16px;
  line-height:1.3;
  font-weight:720;
  text-transform:none;
  letter-spacing:.01em;
}
.nakajp-lp003 .nakajp-dark-footer p,
.nakajp-lp003 .nakajp-dark-footer span,
.nakajp-lp003 .nakajp-dark-footer a{
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.75;
  text-decoration:none;
}
.nakajp-lp003 .nakajp-dark-footer .footer-col{
  display:grid;
  align-content:start;
  gap:10px;
}
.nakajp-lp003 .nakajp-dark-footer .footer-col p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
}
.nakajp-lp003 .nakajp-dark-footer i{
  color:#B8944D;
  margin-top:4px;
  min-width:16px;
}
.nakajp-lp003 .nakajp-dark-footer a:hover{color:#fff}
.nakajp-lp003 .footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
@media (max-width:900px){
  .nakajp-lp003 .nakajp-dark-footer .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width:640px){
  .nakajp-lp003 .nakajp-dark-footer{
    padding:58px 0 28px;
  }
  .nakajp-lp003 .nakajp-dark-footer .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
}


/* =========================================================
Phase 58 — LP003A/LP003B/LP003C layout refresh
Goal: keep existing form/tracking/header/footer, move the three pages away from old identical layout.
========================================================= */
.nakajp-lp003 .hero{
  text-align:left;
  justify-content:flex-start;
  min-height:86vh;
  padding:138px 0 96px;
}
.nakajp-lp003 .hero-content{
  width:min(760px,100%);
  margin:0;
}
.nakajp-lp003 .hero-logo-wrap{
  justify-content:flex-start;
  margin-bottom:24px;
}
.nakajp-lp003 .hero h1{
  font-size:clamp(34px,4.8vw,58px);
  line-height:1.08;
  text-transform:none;
  letter-spacing:-.03em;
}
.nakajp-lp003 .hero p{
  max-width:680px;
  font-size:17px;
  line-height:1.75;
}
.nakajp-lp003 .hero .btn{
  margin-top:8px;
}
.nakajp-lp003 .hero-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:26px 0 24px;
}
.nakajp-lp003 .hero-list li{
  margin:0;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,253,248,.10);
  border:1px solid rgba(255,253,248,.18);
  font-size:14px;
  font-weight:800;
}
.nakajp-lp003 .hero-proof{
  justify-content:flex-start;
  margin-top:30px;
}
.nakajp-lp003 .hero-trust{
  max-width:620px;
}

/* LP003A: advisory/start-right layout */
.lp003a .hero-bg{
  background:
    linear-gradient(100deg,rgba(35,31,26,.86) 0%,rgba(62,46,34,.70) 46%,rgba(62,46,34,.20) 100%),
    url('../images/ART_4450.webp') center/cover no-repeat!important;
}
.lp003a .hero-content{
  padding:34px 38px;
  border-left:4px solid #B8944D;
  background:linear-gradient(90deg,rgba(35,31,26,.42),rgba(35,31,26,.08));
  border-radius:0 32px 32px 0;
}
.lp003a #daily-situations .nakajp-depth-grid{
  grid-template-columns:1.1fr .95fr .95fr;
}
.lp003a #daily-situations .nakajp-depth-grid article:first-child{
  grid-row:span 2;
  min-height:280px;
  background:linear-gradient(135deg,#3E2E22,#6B4F3A);
  color:#fff;
}
.lp003a #daily-situations .nakajp-depth-grid article:first-child h3,
.lp003a #daily-situations .nakajp-depth-grid article:first-child p{
  color:#fff!important;
}

/* LP003B: risk/control diagnostic layout */
.lp003b .hero-bg{
  background:
    linear-gradient(115deg,rgba(28,22,18,.90) 0%,rgba(72,44,34,.74) 50%,rgba(143,47,36,.20) 100%),
    url('../images/ART_4617.webp') center/cover no-repeat!important;
}
.lp003b .hero-content{
  position:relative;
  padding:38px;
  border-radius:34px;
  background:rgba(35,31,26,.40);
  border:1px solid rgba(255,253,248,.16);
  box-shadow:0 28px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
}
.lp003b .hero-eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(184,148,77,.18);
  color:#E8D7A8;
  font-weight:900;
  letter-spacing:.08em;
  font-size:12px;
}
.lp003b #missing-quote-items .nakajp-depth-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.lp003b #missing-quote-items .nakajp-depth-grid article{
  border-left:4px solid rgba(143,47,36,.62);
}

/* LP003C: material standard/spec sheet layout */
.lp003c .hero-bg{
  background:
    linear-gradient(105deg,rgba(35,31,26,.86) 0%,rgba(62,46,34,.68) 42%,rgba(184,148,77,.20) 100%),
    url('../images/ART_4617.webp') center/cover no-repeat!important;
}
.lp003c .hero-content{
  position:relative;
  z-index:2;
  padding:36px 38px;
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,253,248,.14),rgba(255,253,248,.06));
  border:1px solid rgba(255,253,248,.22);
  box-shadow:0 28px 80px rgba(0,0,0,.20);
  backdrop-filter:blur(10px);
  opacity:1;
  visibility:visible;
  transform:none;
}
.lp003c .hero-content h1{
  color:#FFF;
}
.lp003c .hero-content > p,
.lp003c .hero-trust{
  color:rgba(255,255,255,.86);
}
.lp003c .hero-eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(184,148,77,.20);
  color:#F4DF9B;
  font-weight:900;
  letter-spacing:.06em;
}
.lp003c #missing-quote-items .section-header{
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(0,1fr);
  gap:34px;
  align-items:end;
  text-align:left;
  margin-bottom:38px;
}
.lp003c #missing-quote-items .section-header h2{
  margin-bottom:0;
}
.lp003c-spec-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.lp003c-spec-grid article{
  padding-top:26px;
  background:#FFFDF8!important;
}
.lp003c-spec-grid .spec-index{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:#EFE6DA;
  color:#3E2E22;
  font-weight:900;
  margin-bottom:14px;
}
.lp003c #material-standard-check .card,
.lp003c #scope-quote-inspection .card{
  border-top:4px solid rgba(184,148,77,.62);
}

/* Shared rhythm/cards for refreshed LP003 pages */
.nakajp-lp003 .section-header,
.nakajp-lp003 .section-title{
  max-width:920px;
}
.nakajp-lp003 .nakajp-depth-grid{
  gap:22px;
}
.nakajp-lp003 .nakajp-depth-grid article,
.nakajp-lp003 .card{
  border:1px solid rgba(107,79,58,.14);
  box-shadow:0 16px 42px rgba(35,31,26,.07);
}
.nakajp-lp003 .inline-cta{
  margin-top:34px;
}

@media(max-width:980px){
  .nakajp-lp003 .hero{
    min-height:auto;
    padding:112px 0 70px;
    text-align:left;
  }
  .nakajp-lp003 .hero-content,
  .lp003a .hero-content,
  .lp003b .hero-content,
  .lp003c .hero-content{
    width:100%;
    padding:26px 24px;
    border-radius:24px;
  }
  .lp003a #daily-situations .nakajp-depth-grid,
  .lp003b #missing-quote-items .nakajp-depth-grid,
  .lp003c-spec-grid,
  .lp003c #missing-quote-items .section-header{
    grid-template-columns:1fr!important;
  }
  .lp003a #daily-situations .nakajp-depth-grid article:first-child{
    grid-row:auto;
    min-height:0;
  }
}
@media(max-width:640px){
  .nakajp-lp003 .hero h1{
    font-size:clamp(30px,9vw,42px);
  }
  .nakajp-lp003 .hero-list{
    display:grid;
    grid-template-columns:1fr;
  }
  .nakajp-lp003 .hero-proof{
    display:none;
  }
}
