/* Bluewire Mesh About - Frontend */
.bw-about-page,
.bw-about-page *{
    box-sizing:border-box;
}

.bw-about-page{
    --bw-about-primary:#0b469b;
    --bw-about-secondary:#002f70;
    --bw-about-accent:#0f67d8;
    --bw-about-bg-image:none;
    position:relative;
    overflow:hidden;
    font-family:inherit;
    color:#0d1b2f;
    background:
        radial-gradient(circle at 12% 3%, rgba(15,103,216,.14), transparent 34%),
        linear-gradient(180deg, #f2f7ff 0%, #f8fbff 34%, #ffffff 68%, #eef5ff 100%);
}

.bw-about-page:before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:820px;
    z-index:0;
    pointer-events:none;
    background-image:
        linear-gradient(90deg, rgba(2,25,64,.94) 0%, rgba(5,58,125,.82) 42%, rgba(2,21,49,.62) 100%),
        var(--bw-about-bg-image);
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    opacity:1;
}

.bw-about-page:after{
    content:"";
    position:absolute;
    top:0;
    right:-170px;
    width:720px;
    height:720px;
    z-index:0;
    pointer-events:none;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08) 25%, transparent 25%) 0 0/34px 34px,
        linear-gradient(225deg, rgba(255,255,255,.055) 25%, transparent 25%) 0 0/34px 34px;
    mask-image:radial-gradient(circle, #000 0%, transparent 70%);
    opacity:.32;
    transform:rotate(10deg);
}

.bw-about-wrap{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
    position:relative;
    z-index:1;
}

/* =========================
   HERO
========================= */
.bw-about-hero{
    min-height:680px;
    display:flex;
    align-items:center;
    padding:92px 0 170px;
    position:relative;
    isolation:isolate;
}

.bw-about-hero:before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:260px;
    z-index:1;
    pointer-events:none;
    background:linear-gradient(
        180deg,
        rgba(242,247,255,0) 0%,
        rgba(242,247,255,.10) 22%,
        rgba(242,247,255,.30) 45%,
        rgba(242,247,255,.68) 72%,
        #f2f7ff 100%
    );
}

.bw-about-hero:after{
    content:"";
    position:absolute;
    right:3%;
    bottom:64px;
    width:320px;
    height:320px;
    z-index:1;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:inset 0 0 0 18px rgba(255,255,255,.025), 0 28px 70px rgba(0,0,0,.12);
    opacity:.36;
    pointer-events:none;
}

.bw-about-hero-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.02fr) minmax(360px, .9fr);
    gap:58px;
    align-items:center;
    position:relative;
    z-index:2;
}

.bw-about-hero-copy{
    color:#fff;
    position:relative;
    z-index:2;
}

.bw-about-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:max-content;
    max-width:100%;
    margin:0 0 18px;
    padding:9px 15px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    color:#dbeaff;
    font-size:14px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.bw-about-eyebrow:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#70b6ff;
    box-shadow:0 0 0 6px rgba(112,182,255,.16);
}

.bw-about-hero h1{
    margin:0;
    max-width:760px;
    color:#fff !important;
    font-size:clamp(38px, 5vw, 39px);
    line-height:1.04;
    letter-spacing:-.055em;
    font-weight:900;
    text-wrap:balance;
    text-shadow:0 18px 50px rgba(0,0,0,.42);
}

.bw-about-lead{
    max-width:690px;
    margin:24px 0 0;
    color:rgba(238,246,255,.92);
    font-size:clamp(16px, 1.55vw, 20px);
    line-height:1.85;
    text-shadow:0 8px 32px rgba(0,0,0,.28);
}

.bw-about-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:34px;
    min-height:52px;
    padding:0 24px;
    border-radius:16px;
    color:var(--bw-about-primary) !important;
    text-decoration:none !important;
    font-weight:900;
    background:linear-gradient(135deg, #fff 0%, #dcecff 100%);
    box-shadow:0 18px 42px rgba(0,20,68,.32), inset 0 1px 0 rgba(255,255,255,.85);
    transition:transform .2s ease, box-shadow .2s ease;
}

.bw-about-button:after{
    content:"›";
    font-size:24px;
    line-height:1;
    transform:translateY(-1px);
}

.bw-about-button:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 58px rgba(0,20,68,.38), inset 0 1px 0 rgba(255,255,255,.85);
}

.bw-about-hero-visual{
    position:relative;
    min-height:500px;
    z-index:2;
}

.bw-about-hero-visual:before{
    content:"";
    position:absolute;
    inset:22px -22px -22px 22px;
    border-radius:34px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.055);
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
}

.bw-about-hero-visual:after{
    content:"ตาข่ายถักปม • ลวดหนาม";
    position:absolute;
    left:-18px;
    bottom:74px;
    z-index:3;
    padding:12px 16px;
    border-radius:999px;
    color:#fff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.03em;
    background:rgba(2,23,51,.72);
    border:1px solid rgba(255,255,255,.2);
    box-shadow:0 18px 46px rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.bw-about-image{
    position:absolute;
    inset:0;
    border-radius:34px;
    overflow:hidden;
    min-height:500px;
    background-image:var(--bw-about-bg-image);
    background-size:cover;
    background-position:center;
    box-shadow:0 32px 90px rgba(0,15,50,.42);
    border:1px solid rgba(255,255,255,.22);
}

.bw-about-image:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(3,31,74,.40)),
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.32), transparent 28%);
}

.bw-about-image:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:42%;
    background:linear-gradient(180deg, transparent, rgba(0,22,55,.66));
}

.bw-about-badge{
    position:absolute;
    right:24px;
    bottom:22px;
    z-index:3;
    max-width:320px;
    padding:18px 22px;
    border-radius:22px;
    color:#fff;
    font-weight:900;
    background:linear-gradient(135deg, rgba(11,70,155,.94), rgba(15,103,216,.88));
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 20px 60px rgba(0,15,60,.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

/* =========================
   STATS - SMOOTH JOIN
========================= */
.bw-about-stats{
    position:relative;
    z-index:4;
    margin-top:-112px;
    padding:0 0 86px;
    background:transparent;
}

.bw-about-stats:before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:48px;
    bottom:0;
    z-index:0;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(242,247,255,.96) 0%, #f8fbff 52%, #ffffff 100%);
}

.bw-about-stat-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    position:relative;
    z-index:2;
}

.bw-about-stat-card{
    min-height:158px;
    padding:28px 24px;
    border-radius:28px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(11,70,155,.10);
    box-shadow:0 18px 44px rgba(11,70,155,.11);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bw-about-stat-card:hover{
    transform:translateY(-4px);
    border-color:rgba(11,70,155,.16);
    box-shadow:0 24px 56px rgba(11,70,155,.14);
}

.bw-about-stat-card strong{
    display:block;
    color:var(--bw-about-primary);
    font-size:clamp(32px, 3.8vw, 50px);
    line-height:1;
    font-weight:950;
    letter-spacing:-.04em;
}

.bw-about-stat-card span{
    display:block;
    margin-top:12px;
    color:#526178;
    line-height:1.58;
    font-weight:750;
}

/* =========================
   COMMON SECTIONS
========================= */
.bw-about-story,
.bw-about-values,
.bw-about-process,
.bw-about-cta{
    position:relative;
    z-index:1;
}

.bw-about-story{
    padding:28px 0 96px;
    background:#ffffff;
}

.bw-about-story-grid{
    display:grid;
    grid-template-columns:minmax(340px,.86fr) minmax(0,1.14fr);
    gap:46px;
    align-items:center;
}

.bw-about-story-image{
    min-height:520px;
    border-radius:32px;
    background-image:var(--bw-about-bg-image);
    background-size:cover;
    background-position:center;
    box-shadow:0 28px 80px rgba(0,31,92,.18);
    position:relative;
    overflow:hidden;
}

.bw-about-story-image:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(3,31,74,.12), rgba(3,31,74,.66));
}

.bw-about-story-image:after{
    content:"BLUEWIRE MESH";
    position:absolute;
    left:24px;
    bottom:24px;
    padding:12px 16px;
    border-radius:999px;
    color:#fff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.bw-about-story-copy{
    padding:48px;
    border-radius:32px;
    background:#fff;
    border:1px solid rgba(11,70,155,.1);
    box-shadow:0 24px 70px rgba(11,70,155,.09);
}

.bw-about-section-label,
.bw-about-section-head span{
    display:block;
    color:var(--bw-about-accent);
    font-size:13px;
    font-weight:950;
    letter-spacing:.16em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.bw-about-story-copy h2,
.bw-about-section-head h2,
.bw-about-cta h2{
    margin:0;
    color:#071c3d !important;
    font-size:clamp(30px, 3vw, 48px);
    line-height:1.15;
    letter-spacing:-.04em;
    font-weight:950;
}

.bw-about-story-copy p{
    margin:20px 0 0;
    color:#4a5870;
    line-height:1.9;
    font-size:16px;
}

.bw-about-mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:28px;
}

.bw-about-mv-grid article{
    padding:20px;
    border-radius:22px;
    background:linear-gradient(180deg, #f4f8ff, #fff);
    border:1px solid rgba(11,70,155,.1);
}

.bw-about-mv-grid b{
    display:block;
    color:var(--bw-about-primary);
    margin-bottom:8px;
    font-size:18px;
}

.bw-about-mv-grid span{
    display:block;
    color:#5a6678;
    line-height:1.65;
}

/* =========================
   VALUES
========================= */
.bw-about-values{
    padding:96px 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(15,103,216,.16), transparent 28%),
        linear-gradient(180deg, #f6faff 0%, #edf5ff 100%);
}

.bw-about-section-head{
    max-width:720px;
    margin:0 auto 34px;
    text-align:center;
}

.bw-about-value-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.bw-about-value-card{
    min-height:280px;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(11,70,155,.1);
    box-shadow:0 22px 54px rgba(11,70,155,.09);
    transition:transform .2s ease, box-shadow .2s ease;
}

.bw-about-value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 70px rgba(11,70,155,.14);
}

.bw-about-value-icon{
    width:68px;
    height:68px;
    display:grid;
    place-items:center;
    border-radius:22px;
    color:#fff;
    font-weight:950;
    background:linear-gradient(135deg, var(--bw-about-primary), var(--bw-about-accent));
    box-shadow:0 18px 38px rgba(11,70,155,.22);
    overflow:hidden;
}

.bw-about-value-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.bw-about-value-card h3{
    margin:22px 0 10px;
    color:#0b2348 !important;
    font-size:21px;
    line-height:1.3;
    font-weight:950;
}

.bw-about-value-card p{
    margin:0;
    color:#596779;
    line-height:1.75;
}

/* =========================
   PROCESS
========================= */
.bw-about-process{
    padding:100px 0;
    background-image:
        linear-gradient(90deg, rgba(2,26,64,.94), rgba(3,48,111,.88)),
        var(--bw-about-bg-image);
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    color:#fff;
}

.bw-about-section-head-light span,
.bw-about-section-head-light h2{
    color:#fff !important;
}

.bw-about-process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.bw-about-process-grid article{
    min-height:270px;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 24px 70px rgba(0,0,0,.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.bw-about-process-grid article span{
    display:inline-grid;
    place-items:center;
    width:52px;
    height:52px;
    border-radius:17px;
    background:#fff;
    color:var(--bw-about-primary);
    font-weight:950;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.bw-about-process-grid h3{
    margin:22px 0 10px;
    color:#fff !important;
    font-size:21px;
    line-height:1.3;
    font-weight:950;
}

.bw-about-process-grid p{
    margin:0;
    color:rgba(235,244,255,.86);
    line-height:1.75;
}

/* =========================
   CTA
========================= */
.bw-about-cta{
    padding:90px 0;
    background:#f5f9ff;
}

.bw-about-cta-box{
    padding:54px;
    border-radius:36px;
    color:#fff;
    background:
        linear-gradient(135deg, rgba(11,70,155,.94), rgba(0,47,112,.92)),
        var(--bw-about-bg-image);
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 86px rgba(11,70,155,.22);
    overflow:hidden;
}

.bw-about-cta-box h2{
    color:#fff !important;
    max-width:760px;
}

.bw-about-cta-box p{
    max-width:760px;
    margin:18px 0 0;
    color:rgba(235,244,255,.9);
    line-height:1.8;
    font-size:17px;
}

.bw-about-contactline{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

.bw-about-contactline span{
    display:inline-flex;
    align-items:center;
    min-height:44px;
    padding:0 16px;
    border-radius:999px;
    color:#fff;
    font-weight:850;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1024px){
    .bw-about-page:before{
        height:920px;
    }

    .bw-about-hero-grid,
    .bw-about-story-grid{
        grid-template-columns:1fr;
    }

    .bw-about-hero{
        min-height:auto;
        padding:76px 0 142px;
    }

    .bw-about-hero:before{
        height:220px;
    }

    .bw-about-hero:after{
        right:-80px;
        bottom:80px;
        width:270px;
        height:270px;
        opacity:.25;
    }

    .bw-about-hero-visual,
    .bw-about-image{
        min-height:420px;
    }

    .bw-about-stats{
        margin-top:-88px;
        padding-bottom:66px;
    }

    .bw-about-stat-grid,
    .bw-about-value-grid,
    .bw-about-process-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:640px){
    .bw-about-wrap{
        width:min(100% - 26px, 1180px);
    }

    .bw-about-page:before{
        height:820px;
        background-position:center top;
    }

    .bw-about-page:after{
        width:460px;
        height:460px;
        right:-230px;
        opacity:.22;
    }

    .bw-about-hero{
        padding:56px 0 118px;
    }

    .bw-about-hero:before{
        height:170px;
    }

    .bw-about-hero:after{
        width:220px;
        height:220px;
        right:-120px;
        bottom:70px;
        opacity:.20;
    }

    .bw-about-hero h1{
        letter-spacing:-.04em;
    }

    .bw-about-lead{
        line-height:1.75;
    }

    .bw-about-hero-visual,
    .bw-about-image{
        min-height:330px;
    }

    .bw-about-hero-visual:before{
        inset:14px -8px -12px 12px;
        border-radius:24px;
    }

    .bw-about-hero-visual:after{
        left:14px;
        bottom:66px;
        font-size:12px;
    }

    .bw-about-image{
        border-radius:24px;
    }

    .bw-about-badge{
        right:14px;
        bottom:14px;
        padding:14px 16px;
        border-radius:18px;
        font-size:14px;
    }

    .bw-about-stats{
        margin-top:-68px;
        padding-bottom:54px;
    }

    .bw-about-stats:before{
        top:32px;
    }

    .bw-about-stat-grid,
    .bw-about-value-grid,
    .bw-about-process-grid,
    .bw-about-mv-grid{
        grid-template-columns:1fr;
    }

    .bw-about-stat-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:24px;
    }

    .bw-about-story,
    .bw-about-values,
    .bw-about-process,
    .bw-about-cta{
        padding:62px 0;
    }

    .bw-about-story-copy,
    .bw-about-cta-box{
        padding:28px;
        border-radius:26px;
    }

    .bw-about-story-image{
        min-height:340px;
        border-radius:26px;
    }

    .bw-about-process{
        background-attachment:scroll;
    }
}
