:root {
    --dark: #0b0b0f;
    --ink: #15151b;
    --muted: #666577;
    --pink: #ff5fa2;
    --pink2: #ff8fc0;
    --cream: #fff8fb;
    --line: #ece7eb;
    --card: #fff;
    --shadow: 0 22px 70px rgba(16, 10, 20, .10);
    --radius: 28px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #fff8fb 55%, #fff);
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

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

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 22px
}

.topbar {
    background: #08080b;
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 11px;
    padding-bottom: 11px
}

.topbar b {
    color: var(--pink)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(236, 231, 235, .75)
}

.nav-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 13px
}

.links {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 14px;
    font-weight: 800
}

.links a {
    color: #24232d
}

.links a:hover,
.links a.active {
    color: var(--pink)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 20, 24, .06);
    cursor: pointer
}

.btn.primary {
    background: linear-gradient(135deg, var(--pink), var(--pink2));
    color: #fff;
    border: 0;
    box-shadow: 0 18px 34px rgba(255, 95, 162, .28)
}

.btn.dark {
    background: #0b0b0f;
    color: #fff;
    border: 0
}

.menu {
    display: none;
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 11px 13px
}

.hero {
    padding: 95px 0 80px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 95, 162, .16), transparent 36%), linear-gradient(180deg, #fff, #fff8fb)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 58px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(255, 255, 255, .7)
}

.eyebrow:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink)
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.02;
    margin: 0;
    color: #09090c
}

h1 {
    font-size: clamp(48px, 7vw, 92px);
    letter-spacing: -.06em;
    margin-top: 26px
}

h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    letter-spacing: -.04em
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 630px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 44px rgba(20, 20, 24, .05)
}

.stat b {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    color: #08080b
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px
}

.hero-card {
    border-radius: 36px;
    min-height: 520px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.02)
        ),
        url('assets/images/hero-cover.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow:
        0 25px 70px rgba(255,95,162,.12);

    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 28px;
    box-shadow: var(--shadow);
    color: #fff;
    position: relative;
    overflow: hidden
}

.hero-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(20,10,15,.15) 0%,
        rgba(20,10,15,.35) 100%
    );

    z-index:1;
}

.hero-card::after{
    content:'';

    position:absolute;
    width:500px;
    height:500px;

    right:-180px;
    top:-180px;

    border-radius:50%;

    background:#ff5fa2;

    opacity:.12;

    filter:blur(70px);
}
.hero-card > *{
    position:relative;
    z-index:2;
}
.hero-card img {
    border-radius: 26px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, .14)
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.pill {
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, .08)
}

section {
    padding: 78px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 30px
}

.section-head p {
    max-width: 560px;
    color: var(--muted);
    margin: 0
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 16px 50px rgba(20, 20, 24, .05)
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #fff1f7;
    color: var(--pink);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px
}

.product-tools {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.input,
.select,
textarea {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
    outline: none
}

.input {
    min-width: 260px;
    flex: 1
}

.select {
    min-width: 210px
}

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

.product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(20, 20, 24, .06);
    display: flex;
    flex-direction: column
}

.product figure {
    margin: 0;
    background: #fff8fb;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 12px;
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.product-body {
    padding: 18px
}

.meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0
}

.badge {
    font-size: 11px;
    font-weight: 900;
    color: #7b274d;
    background: #fff1f7;
    border: 1px solid #ffd4e6;
    border-radius: 999px;
    padding: 6px 9px
}

.product h3 {
    font-family: Inter, sans-serif;
    font-size: 17px;
    letter-spacing: -.02em;
    margin: 0
}

.product p {
    font-size: 13px;
    color: var(--muted);
    margin: 8px 0 14px
}

.request {
    margin-top: auto;
    color: var(--pink);
    font-weight: 900;
    font-size: 13px
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.brand-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    padding: 21px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 12px 38px rgba(20, 20, 24, .04)
}

.band {
    background: linear-gradient(135deg, #08080b, #331524);
    color: #fff;
    border-radius: 40px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 25px;
    overflow: hidden;
    position: relative
}

.band:before {
    content: '';
    position: absolute;
    right: 12%;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--pink);
    opacity: .22;
    filter: blur(8px)
}

.band h2 {
    color: #fff
}

.band p {
    color: #eadde5;
    max-width: 680px
}

.steps {
    counter-reset: s;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.step:before {
    counter-increment: s;
    content: '0' counter(s);
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    margin: 13px 0;
    padding: 18px 22px
}

.faq summary {
    font-weight: 900;
    cursor: pointer
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px
}

.form {
    display: grid;
    gap: 12px
}

.footer {
    background: #08080b;
    color: #fff;
    padding: 46px 0;
    margin-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px
}

.footer a,
.footer p {
    color: #c9c2c7
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    background: #050507;
    color: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .25)
}

.whatsapp:before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #20d466;
    margin-right: 9px
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 14px
}

th {
    background: #fff8fb;
    font-weight: 900
}

.hide {
    display: none !important
}

@media(max-width:980px) {

    .hero-grid,
    .contact-grid,
    .band {
        grid-template-columns: 1fr
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3,
    .grid-4,
    .steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .links {
        position: fixed;
        top: 82px;
        left: 18px;
        right: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start
    }

    .links.open {
        display: flex
    }

    .menu {
        display: block
    }

    .topbar .wrap {
        flex-direction: column;
        gap: 4px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .hero {
        padding: 58px 0
    }

    .stats,
    .products-grid,
    .grid-3,
    .grid-4,
    .steps,
    .brand-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .section-head {
        display: block
    }

    .hero-card {
        min-height: auto
    }

    .btn {
        width: 100%
    }

    .whatsapp {
        left: 18px;
        right: 18px;
        text-align: center
    }

    .nav-inner {
        height: 74px
    }

    h1 {
        font-size: 46px
    }
}
.about-page .about-hero{
    padding:95px 0 80px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,95,162,.18), transparent 35%),
        linear-gradient(180deg,#fff,#fff8fb);
}

.about-page .about-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:58px;
    align-items:center;
}

.about-page .about-panel{
    min-height:460px;
    border-radius:38px;
    padding:34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,248,251,.78)),
        radial-gradient(circle at 80% 20%, rgba(255,95,162,.22), transparent 36%);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.about-page .about-panel:after{
    content:"S";
    position:absolute;
    right:-20px;
    bottom:-90px;
    font-family:'Playfair Display',serif;
    font-size:360px;
    line-height:1;
    color:rgba(255,95,162,.08);
}

.about-page .panel-label{
    display:inline-flex;
    border:1px solid #ffd4e6;
    background:#fff;
    color:var(--pink);
    border-radius:999px;
    padding:8px 14px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.about-page .about-panel h2{
    margin-top:28px;
    max-width:430px;
}

.about-page .about-mini-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:42px;
    position:relative;
    z-index:2;
}

.about-page .about-mini-grid div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:22px;
    box-shadow:0 14px 40px rgba(20,20,24,.05);
}

.about-page .about-mini-grid b{
    font-family:'Playfair Display',serif;
    font-size:30px;
    display:block;
}

.about-page .about-mini-grid span{
    color:var(--muted);
    font-size:13px;
}

.about-page .gallery-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:18px;
}

.about-page .gallery-large{
    grid-row:span 2;
    min-height:520px;
    border-radius:34px;
    overflow:hidden;
    position:relative;
    box-shadow:var(--shadow);
}

.about-page .gallery-large img,
.about-page .gallery-card img,
.about-page .image-placeholder img,
.about-page .proof-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-page .gallery-large div{
    position:absolute;
    left:24px;
    right:24px;
    bottom:24px;
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);
}

.about-page .gallery-large b{
    font-family:'Playfair Display',serif;
    font-size:30px;
    display:block;
}

.about-page .gallery-large span{
    color:var(--muted);
}

.about-page .gallery-card{
    min-height:250px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    background:#fff8fb;
    box-shadow:0 16px 50px rgba(20,20,24,.06);
}

.about-page .gallery-card b{
    position:absolute;
    left:18px;
    bottom:18px;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(12px);
    border-radius:999px;
    padding:10px 16px;
    font-size:13px;
}

.about-page .process-showcase{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:34px;
    align-items:center;
    border-radius:42px;
    padding:42px;
    background:linear-gradient(135deg,#fff,#fff8fb);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}

.about-page .process-showcase p{
    color:var(--muted);
    max-width:560px;
}

.about-page .process-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:28px;
}

.about-page .process-list div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:18px;
}

.about-page .process-list b{
    color:var(--pink);
    font-weight:900;
    display:block;
    margin-bottom:6px;
}

.about-page .image-placeholder{
    height:430px;
    border-radius:34px;
    overflow:hidden;
    background:#ffeaf3;
}

.about-page .proof-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.about-page .proof-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:34px;
    padding:18px;
    box-shadow:var(--shadow);
}

.about-page .proof-card img{
    height:320px;
    border-radius:24px;
    background:#fff8fb;
}

.about-page .proof-card h3{
    margin-top:20px;
}

.about-page .proof-card p{
    color:var(--muted);
}

.about-page .trust-band{
    border-radius:42px;
    padding:46px;
    background:linear-gradient(135deg,#08080b,#351625);
    color:#fff;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
}

.about-page .trust-band h2{
    color:#fff;
}

.about-page .trust-list{
    display:grid;
    gap:14px;
}

.about-page .trust-list div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:20px;
}

.about-page .trust-list b{
    display:block;
    font-size:16px;
}

.about-page .trust-list span{
    display:block;
    margin-top:6px;
    color:#eadde5;
    font-size:14px;
}

.about-page .about-cta{
    text-align:center;
    border-radius:42px;
    padding:60px 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,95,162,.18), transparent 38%),
        #fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}

.about-page .about-cta h2{
    margin-top:20px;
}

.about-page .about-cta p{
    color:var(--muted);
    max-width:620px;
    margin:18px auto 28px;
}

@media(max-width:980px){
    .about-page .about-hero-grid,
    .about-page .gallery-grid,
    .about-page .process-showcase,
    .about-page .proof-grid,
    .about-page .trust-band{
        grid-template-columns:1fr;
    }

    .about-page .gallery-large{
        min-height:420px;
    }
}

@media(max-width:600px){
    .about-page .about-mini-grid,
    .about-page .process-list{
        grid-template-columns:1fr;
    }

    .about-page .about-panel{
        min-height:auto;
    }

    .about-page .proof-card img,
    .about-page .image-placeholder{
        height:260px;
    }
}

/* css ảnh about */
.about-page .about-hero-content{
    position:relative;
    padding:50px;
    border-radius:32px;
    overflow:hidden;
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;

    background:url("../images/warehouse.png") center center/cover no-repeat;
}

/* lớp phủ */
.about-hero-content::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.2) 100%
    );

    z-index:1;
}

/* đưa nội dung lên trên overlay */
.about-hero-content>*{
    position:relative;
    z-index:2;
}

.about-hero-content h1,
.about-hero-content p,
.about-hero-content .eyebrow{
    color:#fff;
}

.about-hero-content h1{
    font-size:clamp(48px, 5vw, 76px);
    line-height:.92;
}

.about-hero-content::before{
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.52) 45%,
        rgba(0,0,0,.18) 100%
    );
}

.about-page .about-hero-content,
.about-page .about-panel{
    min-height:590px;
}

.about-page .about-hero{
    padding:70px 0 70px;
}

.about-page .about-hero-grid{
    align-items:stretch;
}