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


.about-wrapper{
    width:100%;
    margin-top:20px;     /* เว้นด้านบน */
	margin-bottom:20px;     /* เว้นด้านบน */
    padding:0 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
	 position:relative;
    z-index:1;
}

.about-card{
    width:100%;
    max-width:1700px;      /* หรือ 1800px */
    margin:0 auto;
    z-index:1;
    background:#f7f8f7;
    border-radius:26px;
    overflow:hidden;
    position:relative;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

/* Decorative circles */
.about-card::before{
    content:"";
    position:absolute;
    right:-200px;
    top:0;
    width:900px;
    height:900px;
    border-radius:50%;

    border:1px solid rgba(12,74,57,.08);
    box-shadow:
        0 0 0 70px rgba(12,74,57,.04),
        0 0 0 140px rgba(12,74,57,.03),
        0 0 0 210px rgba(12,74,57,.02);

    z-index:0;
    pointer-events:none;   /* สำคัญ */
}



/* Hero */
.about-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
    padding:64px 64px 56px;
    position:relative;
    z-index:2;
}

.about-hero-content{
    padding-right:18px;
}

.about-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#b7ff32;
    box-shadow:0 0 22px #b7ff32;
    margin-bottom:34px;
}

.about-hero-content h1{
    font-size:68px;
    line-height:1.04;
    letter-spacing:-.04em;
    margin-bottom:24px;
    color:#08120f;
}

.about-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#4b5563;
    max-width:560px;
}

.about-hero-buttons{
    display:flex;
    gap:16px;
    margin-top:34px;
}

.about-btn{
    padding:16px 28px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.about-btn-primary{
    background:#27d3b4;
    color:#06251d;
}

.about-btn-primary:hover{
    transform:translateY(-2px);
}

.about-btn-outline{
    border:1px solid #cbd5e1;
    color:#0f172a;
    background:#fff;
}

/* About mini */
.about-mini{
    margin-top:64px;
}

.about-mini h2{
    font-size:46px;
    margin-bottom:26px;
}

.about-mini-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}
.about-mini-card{
    background:#eaf7f3;
    border-radius:22px;
    padding:28px;
    border:1px solid rgba(12,74,57,.08);
}

.about-mini-card h3{
    font-size:26px;
    margin-bottom:14px;
}

.about-line{
    width:86px;
    height:4px;
    border-radius:999px;
    background:#b7ff32;
    margin-bottom:18px;
}

.about-mini-card p{
    font-size:15px;
    line-height:1.8;
    color:#475569;
}

/* Hero image */
.about-hero-image{
    position:relative;
    min-height:720px;
}

.about-hero-image::before{
    content:"";
    position:absolute;
    inset:22px;
    border-radius:36px;
    border:2px solid rgba(255,255,255,.55);
    z-index:2;
}

.about-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:40px;
    display:block;
}

/* Stats */
.about-stats-bar{
    background:#083c32;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.about-stat{
    padding:42px 34px;
    text-align:center;
    position:relative;
	color:#fff;
}

.about-stat:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:24px;
    bottom:24px;
    width:1px;
    background:rgba(255,255,255,.18);
}

.about-stat h3{
    font-size:42px;
    margin-bottom:10px;
	color:#fff !important;
}

.about-stat p{
    color:rgba(255,255,255,.75) !important;
    font-size:15px;
}

/* Bottom CTA */
.about-bottom-cta{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:36px;
    padding:64px;
    align-items:center;
}

.about-cta-text h2{
    font-size:56px;
    line-height:1.08;
    margin-bottom:20px;
    color:#08120f;
}

.about-cta-text p{
    font-size:18px;
    line-height:1.8;
    color:#4b5563;
    max-width:560px;
}

.about-cta-image{
    position:relative;
    justify-self:end;
}

.about-cta-image img{
    width:280px;
    height:280px;
    border-radius:50%;
    object-fit:cover;
    border:10px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.16);
}

.about-green-circle{
    position:absolute;
    width:84px;
    height:84px;
    border-radius:50%;
    background:#b7ff32;
    left:-18px;
    bottom:12px;
}
.about-company-card{
    grid-column:1 / -1;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:35px;
}

.company-info{
    margin-top:18px;
}

.company-row{
    display:grid;
    grid-template-columns:210px 1fr;
    gap:16px;
    padding:8px 0;
    border-bottom:1px solid #edf2f7;
    align-items:start;
}

.company-row:last-child{
    border-bottom:none;
}

.company-row .label{
    font-weight:700;
    color:#083c32;
    font-size:15px;
    line-height:1.5;
}

.company-row .value{
    color:#475569;
    font-size:15px;
    line-height:1.5;
}

.about-company-card h3{
    font-size:30px;
    margin-bottom:12px;
}
/* Responsive */
@media(max-width:1100px){

    .about-hero-grid,
    .about-bottom-cta{
        grid-template-columns:1fr;
    }

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

    .about-hero-content h1{
        font-size:52px;
    }

    .about-cta-text h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    body{
        padding:18px;
    }

    .about-topbar{
        padding:0 22px;
    }

  

    .about-hero-grid{
        padding:34px 22px 40px;
    }

    .about-hero-content h1{
        font-size:40px;
    }

    .about-mini h2{
        font-size:34px;
    }

    .about-mini-grid{
        grid-template-columns:1fr;
    }

    .about-company-card{
        grid-column:auto;
    }

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

    .about-stat:not(:last-child)::after{
        display:none;
    }

    .about-bottom-cta{
        padding:40px 22px 48px;
    }

    .about-cta-text h2{
        font-size:34px;
    }

    .about-cta-image{
        justify-self:center;
    }

}