:root {
    --yellow: #ffd21f;
    --yellow-soft: #fff7d6;
    --black: #080808;
    --dark: #111827;
    --gray: #6b7280;
    --white: #ffffff;
    --soft: #f8fafc;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Thai";
}

body {
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    font-family: "Noto Sans Thai";
    font-size: clamp(15px, 1.05vw, 16px);
}

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


/*==================================
GLOBAL TYPOGRAPHY
ใช้ Noto Sans Thai ทั้งเว็บ และคุมขนาดตัวอักษรจากจุดเดียว
==================================*/

html {
    font-size: 16px;
}


h1 {
    font-size: clamp(34px, 4.8vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.8px;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.6px;
}

h3 {
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.3;
}

h4 {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.35;
}

h5 {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.4;
}

h6 {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.45;
}

p {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.8;
}

a,
li,
label,
input,
textarea,
button,
summary {
    font-size: clamp(14px, 1vw, 16px);
}

small {
    font-size: clamp(12px, 0.9vw, 14px);
}

/* มือถือให้อ่านง่ายขึ้น */
@media (max-width: 640px) {
    h1 {
        font-size: clamp(32px, 9vw, 40px);
    }

    h2 {
        font-size: clamp(26px, 7vw, 34px);
    }

    h3 {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    p {
        font-size: 15px;
    }
}


.container {
    width: min(1280px, 92%);
    margin: auto;
}

.small {
    width: min(850px, 92%);
}

/*nav bar*/

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
}

.nav-inner {
    width: 100%;
    height: 74px;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.82);
    border-bottom:
        1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
}

.nav-menu a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #6b7280;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-menu a:hover {
    background: #fff;
    color: #111827;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.nav-cta {
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe98d, #ffd21f);
    color: #111827;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(255, 210, 31, 0.28);
    transition: 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 210, 31, 0.38);
}

.nav-menu a.active {
    background: #ffd21f;
    color: #111827;
    box-shadow: 0 8px 18px rgba(255, 210, 31, .25);
}

@media (max-width: 768px) {

    .nav-inner {
        height: 66px;

        padding: 0 16px;

        gap: 10px;
    }

    .logo {}

    .nav-menu {
        display: none;
    }

    .nav-cta {
        padding: 12px 18px;

    }

}

/*nav bar*/

.nav-menu {
    display: flex;
    gap: 28px;
    color: var(--gray);
}

.nav-menu a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 90vh;

    background:
        url("images/images/cover.webp"),
        radial-gradient(circle at top left,
            rgba(255, 210, 31, 0.18),
            transparent 35%),
        linear-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .06) 1px, transparent 1px);

    background-size:
        cover,
        auto,
        40px 40px,
        40px 40px;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        no-repeat,
        no-repeat,
        repeat,
        repeat;

}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    padding: 34px;
    overflow: hidden;
}


.badge {
    display: inline-flex;
    background: var(--yellow-soft);
    border: 1px solid rgba(255, 210, 31, 0.6);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 22px;
}

.hero p {
    color: var(--gray);
    max-width: 620px;
}

.hero-buttons {
    margin-top: 12px;
}

.hero-cta {
    position: relative;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe66d, #ffd21f);
    color: #111827;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    transition: 0.3s ease;

    animation: pulseGlow 1.8s infinite;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 24px 55px rgba(255, 210, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);

    transform: skewX(-20deg);
    animation: shine 2.8s infinite;
}


@media (max-width: 640px) {

    .hero {
        background:
            url("images/images/cover-mb.webp"),
            radial-gradient(circle at top left,
                rgba(255, 210, 31, 0.18),
                transparent 35%),
            linear-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 0, 0, .06) 1px, transparent 1px);

        background-size:
            cover,
            auto,
            40px 40px,
            40px 40px;

        background-position:
            center,
            center,
            center,
            center;

        background-repeat:
            no-repeat,
            no-repeat,
            repeat,
            repeat;

        height: 100vh;

    }

    .hero-cta {
        padding: 18px 20px;
        border-radius: 20px;
    }

    .hero-content {
        padding: 0 16px;
    }

}


/* =========================
   DESIGN SERVICE CAROUSEL
========================= */

.design-service {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(254, 255, 179, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffff4 100%);
    overflow: hidden;
}

.design-service .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* title */

.design-service .section-title {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}


.design-service .section-title p {
    margin: 0;
    line-height: 1.8;
    color: #64748b;
}

/* carousel */

.service-carousel-wrapper {
    position: relative;
    margin-top: 20px;
}

.service-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.service-carousel:active {
    cursor: grabbing;
}

.service-carousel::-webkit-scrollbar {
    display: none;
}

.service-track {
    display: flex;
    gap: 24px;
    padding: 8px 4px 18px;
}

/* card */

.service-card.slide {
    flex: 0 0 calc((100% - 72px) / 4);
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgb(228, 228, 0);
    transition: 0.35s ease;
    min-height: auto;
    padding: 0;
}

.service-card.slide:hover {
    transform: translateY(-1px);
    border-color: rgba(192, 160, 0, 0.42);
}

.service-image-design {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image-design img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s ease;
}

.service-card.slide:hover .service-image-design img {
    transform: scale(1.05);
}

.service-content {
    padding: 26px 24px 28px;
}

.service-content h5 {
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.35;

    color: #111827;
}

.service-content p {
    margin: 0;
    line-height: 1.75;

    color: #64748b;
}

.service-card h3 {
    margin: 0 0 14px;
    line-height: 1.35;
    color: #111827;
}

.service-card p {
    margin: 0;
    line-height: 1.75;
    color: #64748b;
}

/* arrows */

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #ffd21f;
    color: #ffffff;

    line-height: 1;

    cursor: pointer;

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

    box-shadow: 0 16px 40px rgba(249, 255, 158, 0.28);

    transition: 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: #ffd21f;
}

.carousel-btn.prev {
    left: -24px;
    transform: translateY(-50%);
}

.carousel-btn.next {
    right: -24px;
    transform: translateY(-50%);
}

/* button bottom */

.btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    border-radius: 999px;

    background: #ffd21f;
    color: #ffffff;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 16px 40px rgba(253, 255, 187, 0.25);

    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ffd21f;
    box-shadow: 0 24px 60px rgba(255, 252, 150, 0.32);
}

/* tablet */

@media (max-width: 992px) {
    .service-card.slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .carousel-btn.prev {
        left: -12px;
    }

    .carousel-btn.next {
        right: -12px;
    }
}

/* mobile */

@media (max-width: 576px) {
    .design-service {
        padding: 80px 16px;
    }

    .design-service .section-title {
        margin-bottom: 36px;
    }


    .service-track {
        gap: 16px;
        padding: 6px 0 14px;
    }

    .service-card.slide {
        flex: 0 0 82%;
        min-height: 210px;
    }

    .service-content {
        padding: 22px;
    }


    .service-card h3 {}

    .carousel-btn {
        display: none;
    }

    .btn-wrapper {
        margin-top: 32px;
    }
}

/*section 2*/

.btn-primary,
.btn-dark,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 210, 31, 0.35);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--white);
}

.full {
    width: 100%;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.hero-points span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    color: #111827;
    font-weight: 600;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(10px);
}

.hero-points span::before {
    content: "✓";
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;
    font-weight: 900;
    box-shadow:
        0 6px 14px rgba(255, 210, 31, 0.35);
}

@media (max-width: 640px) {

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

    .hero-points span {
        padding: 10px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .hero-points span::before {
        margin: 0 auto;
    }

}




.mockup-button {
    width: 150px;
    height: 42px;
    background: var(--yellow);
    border-radius: 999px;
    margin: 28px 0;
}

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

.mockup-boxes span {
    height: 88px;
    background: var(--yellow-soft);
    border-radius: 18px;
}

section {
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 46px;
}

.section-heading h2 {
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--gray);
}

/*pain section*/
.pain-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 60%, rgba(255, 210, 31, 0.22), transparent 28%),
        radial-gradient(circle at 80% 40%, rgba(255, 210, 31, 0.16), transparent 24%),
        linear-gradient(180deg, #050505, #0b0b0b);
    color: #fff;
}

.pain-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pain-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}

.pain-section .container {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.12);
    border: 1px solid rgba(255, 210, 31, 0.35);
    color: #ffd21f;
    font-weight: 500;
}

.pain-section .section-heading h2 {
    color: #fff;
    line-height: 1.15;
}

.pain-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.pain-card {
    position: relative;
    min-height: 250px;
    padding: 24px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pain-card-inner {
    position: relative;
    padding: 12px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    height: 100%;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 210, 31, 0.45);
    box-shadow:
        0 30px 80px rgba(255, 210, 31, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pain-card:hover::after {
    opacity: 1;
}

.pain-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffe66d, #ffd21f);
    color: #111827;
    box-shadow: 0 12px 28px rgba(255, 210, 31, 0.28);
    flex-shrink: 0;
}

.pain-card h5 {
    margin-bottom: 10px;
    color: #fff;
}

.pain-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    font-size: 14px;
}

.pain-card::after {
    content: "";
    position: absolute;
    inset: auto 24px 0 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffd21f, transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.pain-card-inner h5 {
    margin-bottom: 10px;
    color: #ffd21f;
}

.pain-cta1 {
    position: relative;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe66d, #ffd21f);
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    transition: 0.3s ease;

    animation: pulseGlow 1.8s infinite;
}



.pain-cta1:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 24px 55px rgba(255, 210, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pain-cta1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);

    transform: skewX(-20deg);
    animation: shine 2.8s infinite;
}

.pain-cta2 {
    position: relative;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #06C755, #00B900);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 12px 30px rgba(6, 199, 85, .25),
        0 24px 60px rgba(6, 199, 85, .15),
        inset 0 1px 0 rgba(255, 255, 255, .3);

    transition: .3s ease;
    animation: pulseGlow 1.8s infinite;
}

.pain-cta2:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(6, 199, 85, .35),
        0 35px 80px rgba(6, 199, 85, .22),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

.pain-cta2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);

    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -120%;
    }

    100% {
        left: 150%;
    }
}

@media (max-width: 980px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .pain-section {
        padding: 70px 0;
    }



    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 34px;
    }

    .pain-card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .pain-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        margin-bottom: 18px;
    }

    .pain-card h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .pain-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .pain-buttons {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        padding: 0 24px;
    }
}

/*pain section*/



.price-card,
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.price-card.highlight {
    position: relative;

    overflow: hidden;
}

.discount-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    padding: 10px 14px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #ffef9c,
            #ffd21f);

    color: #111827;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 12px 28px rgba(68, 57, 15, 0.426);

    animation:
        badgePulse 2s infinite;
}

@keyframes badgePulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }

}

@media (max-width: 768px) {

    .discount-badge {
        top: 14px;
        right: 14px;

        padding: 8px 12px;

        font-size: 11px;
    }

}

.work-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.work-detail {
    padding: 28px;
}

.service-card .icon {
    width: 52px;
    height: 52px;
    background: var(--yellow-soft);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.service-card h3,
.price-card h3,
.work-card h3 {
    margin-bottom: 10px;
}

.service-card p,
.work-card p {
    color: var(--gray);
}

.review-card p {
    font-size: 14px;
}

.pricing {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at top right,
            rgba(255, 210, 31, 0.14),
            transparent 26%),
        linear-gradient(180deg,
            #080808,
            #111111);
}

.pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.pricing .section-heading {
    position: relative;
    z-index: 2;
}

.pricing .section-heading h2 {
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pricing .section-heading p {
    color: rgba(255, 255, 255, 0.68);

}

.pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 70px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 38px 32px;
    border-radius: 34px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));
    border:
        1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: 0.35s ease;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.14),
            transparent 70%);
    top: -120px;
    right: -120px;
}

.price-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(255, 210, 31, 0.22);

    box-shadow:
        0 34px 80px rgba(255, 210, 31, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-card.highlight {
    transform: scale(1.06);

    background:
        linear-gradient(180deg,
            #ffd21f,
            #ffca0a);

    border:
        1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 34px 90px rgba(255, 210, 31, 0.35);

    z-index: 3;
}

.price-card.highlight:hover {
    transform:
        scale(1.08) translateY(-6px);
}

.tag {
    display: inline-flex;

    padding: 8px 16px;

    border-radius: 999px;

    font-weight: 800;

    margin-bottom: 20px;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color: #fff;
}

.price-card.highlight .tag {
    background: #111827;

    color: #ffd21f;

    border: none;
}

.price-card h3 {
    color: #fff;

    margin-bottom: 14px;
}

.price-card.highlight h3 {
    color: #111827;
}

.price {
    font-weight: 900;
    line-height: 1;
    font-size: 50px;
    margin-bottom: 26px;
    color: #ffd21f;
}

.price-card.highlight .price {
    color: #111827;
}

.price-card ul {
    list-style: none;

    margin-bottom: 34px;
}

.price-card li {
    position: relative;

    padding-left: 34px;

    margin-bottom: 16px;

    color: rgba(255, 255, 255, 0.78);

    line-height: 1.7;
}

.price-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 2px;

    width: 22px;
    height: 22px;

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

    border-radius: 8px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    font-weight: 900;
}

.price-card.highlight li {
    color: rgba(17, 24, 39, 0.86);
}

.price-card .btn-primary,
.price-card .btn-dark {
    width: 100%;

    padding: 16px 22px;

    border-radius: 18px;

    font-weight: 800;
}

.price-card.highlight .btn-dark {
    background: #111827;

    color: #fff;

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.highlight {
        transform: none;
    }

}

@media (max-width: 640px) {

    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        gap: 20px;

        margin-top: 40px;
    }

    .price-card {
        padding: 28px 22px;

        border-radius: 26px;
    }

    .price-card h3 {}

    .price {}

}

/*==================================
ขั้นตอนการทำงาน
==================================*/

.scope-section {
    padding: 100px 20px;
    overflow: hidden;
}

.scope-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* heading */

.scope-header {
    max-width: 780px;
    margin: 0 auto 70px;

    text-align: center;
}

.scope-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    border:
        1px solid rgba(255, 210, 31, 0.28);
    background:
        rgba(255, 210, 31, 0.10);

}



.scope-header p {
    margin: 0;

    line-height: 1.9;

    color: #6b7280;
}

/* timeline */

.scope-timeline {
    position: relative;

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

    gap: 22px;
}

.scope-timeline::before {
    content: "";

    position: absolute;

    top: 42px;
    left: 6%;
    right: 6%;

    height: 2px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 210, 31, 0.5),
            transparent);

    z-index: 0;
}

/* card */

.scope-card {
    position: relative;
    z-index: 1;

    padding: 84px 22px 28px;

    border-radius: 28px;

    border:
        1px solid rgba(255, 210, 31, 0.16);

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 20px 50px rgba(255, 210, 31, 0.08),

        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(14px);

    transition: 0.35s ease;
}

.scope-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255, 210, 31, 0.45);

    box-shadow:
        0 30px 70px rgba(255, 210, 31, 0.16),

        0 0 30px rgba(255, 210, 31, 0.08);
}

/* number */

.scope-number {
    position: absolute;

    top: 18px;
    left: 22px;

    width: 52px;
    height: 52px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

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

    font-weight: 900;

    box-shadow:
        0 14px 34px rgba(255, 210, 31, 0.28);
}

/* text */

.scope-card h5 {
    margin-bottom: 14px;
    line-height: 1.4;
    color: #111827;
    font-size: 18px;
}

.scope-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

/* payment */

.scope-payment {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.12);
    border: 1px solid rgba(255, 210, 31, 0.22);
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        0 10px 24px rgba(255, 210, 31, 0.08);

    transition: .35s ease;
    animation: pulseGlow 2.5s infinite;
}

.scope-payment:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 45px rgba(255, 210, 31, 0.28);
}

.scope-payment::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transform: skewX(-20deg);

    animation: shine 2.8s infinite;
}

@keyframes shine {
    100% {
        left: 140%;
    }
}

@keyframes pulseGlow {

    0% {
        box-shadow:
            0 0 0 rgba(255, 210, 31, 0),
            0 10px 24px rgba(255, 210, 31, .12);
    }

    50% {
        box-shadow:
            0 0 18px rgba(255, 210, 31, .25),
            0 14px 34px rgba(255, 210, 31, .22);
    }

    100% {
        box-shadow:
            0 0 0 rgba(255, 210, 31, 0),
            0 10px 24px rgba(255, 210, 31, .12);
    }
}

/* tablet */

@media (max-width: 1100px) {

    .scope-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .scope-timeline::before {
        display: none;
    }

}

/* mobile */

@media (max-width: 640px) {

    .scope-section {
        padding: 80px 16px;
    }

    .scope-header {
        margin-bottom: 42px;
    }

    .scope-timeline {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .scope-card {
        padding: 80px 24px 28px;
    }

}



/*==================================
section ผลงานตัวอย่าง
==================================*/
.work-section {
    position: relative;
    overflow: hidden;
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 210, 31, 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf6, #ffffff);
}

.work-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.work-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

.work-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
}

.work-heading span {
    display: inline-block;
    background: rgba(255, 210, 31, 0.16);
    color: #c58a00;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 210, 31, 0.35);
    margin-bottom: 14px;
}

.work-heading h2 {
    color: #111827;
    line-height: 1.2;
    margin-bottom: 14px;
}

.work-heading p {
    color: #6b7280;
}

.work-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

.work-tabs {
    position: sticky;
    top: 100px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.work-tab {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 18px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    color: #374151;
    transition: 0.3s ease;
}

.work-tab:hover,
.work-tab.active {
    background: linear-gradient(135deg, #ffe98d, #ffd21f);
    color: #111827;
    box-shadow: 0 10px 24px rgba(255, 210, 31, 0.28);
}

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

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: 0.35s ease;
}

.work-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
    z-index: 0;
    background: radial-gradient(circle, rgba(255, 210, 31, 0.16), transparent 70%);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(255, 210, 31, 0.16);
}

.work-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;

    display: block;

    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: .45s ease;
}

.work-overlay {
    position: absolute;
    inset: 0;

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

    background: rgba(0, 0, 0, .22);

    opacity: 0;
    transition: .35s ease;
}

.work-btn {
    position: relative;
    overflow: hidden;
    padding: 7px 12px;
    border-radius: 999px;
    background: #FFDC35;
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 8px 22px rgba(255, 220, 53, .22);
    transform: translateY(10px);
    transition: .35s ease;
}

/* highlight */
.work-btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transform: skewX(-20deg);

    animation: shine 2.8s infinite;
}

@keyframes shine {
    100% {
        left: 140%;
    }
}

/* desktop hover */
@media (hover:hover) {

    .image-card:hover img {
        transform: scale(1.05);
    }

    .image-card:hover .work-overlay {
        opacity: 1;
    }

    .image-card:hover .work-btn {
        transform: translateY(0);
    }

}

/* mobile */
@media (hover:none) {

    .work-overlay {
        opacity: 1;

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

        align-items: flex-end;

        padding-bottom: 18px;
    }

    .work-btn {
        transform: none;
    }

}

.work-card:hover img {
    transform: scale(1.04);
}

.work-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.work-card-content span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.16);
    color: #c58a00;
    font-weight: 800;
    margin-bottom: 12px;
}

.work-card-content h3 {
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-content p {
    color: #6b7280;
    line-height: 1.8;
}

.hide,
.image-card.hide,
.work-card.hide {
    display: none !important;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 44px;
}

#pageNumbers {
    display: flex;
    gap: 10px;
}

.pagination button,
#pageNumbers button {
    width: 60px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.pagination button:hover,
#pageNumbers button:hover,
#pageNumbers .active {
    background: linear-gradient(135deg, #ffe98d, #ffd21f);
    color: #111827;
    box-shadow: 0 10px 22px rgba(255, 210, 31, 0.28);
}

/* Tablet */
@media (max-width: 992px) {
    .work-layout {
        grid-template-columns: 1fr;
    }

    .work-tabs {
        position: static;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 12px;
    }

    .work-tab {
        white-space: nowrap;
        text-align: center;
        width: auto;
        flex-shrink: 0;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .work-section {
        padding: 70px 16px;
    }

    .work-section::before {
        background-size: 28px 28px;
    }

    .work-heading {
        margin-bottom: 36px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .work-card,
    .image-card {
        border-radius: 22px;
    }

    .work-card img {
        height: 180px;
    }

    .work-card-content {
        padding: 18px;
    }

    .work-card-content h3 {}

    .work-card-content p {}

    .pagination {
        gap: 8px;
        margin-top: 32px;
    }

    .pagination button,
    #pageNumbers button {
        width: 60px;
        height: 40px;
        border-radius: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .work-card img {
        height: 150px;
    }

    .work-card-content {
        padding: 14px;
    }

    .work-card-content span {
        padding: 5px 10px;
    }

    .work-card-content h3 {}

    .work-card-content p {
        line-height: 1.6;
    }
}

/*==================================
section ผลงานตัวอย่าง
==================================*/

/*=======================reviews========================*/

.review-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;

    background:
        radial-gradient(circle at top right,
            rgba(255, 210, 31, 0.14),
            transparent 34%),

        linear-gradient(180deg,
            #fffdf5 0%,
            #ffffff 100%);
}

.review-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

    background-size: 38px 38px;

    pointer-events: none;
}

.review-section .container {
    position: relative;
    z-index: 2;

    max-width: 1280px;
    margin: 0 auto;
}

.review-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.review-header span {
    display: inline-flex;

    margin-bottom: 18px;

    padding: 10px 20px;

    border-radius: 999px;

    border:
        1px solid rgba(255, 210, 31, 0.35);

    background:
        rgba(255, 210, 31, 0.14);

    color: #c58a00;

    font-weight: 800;
}

.review-header h2 {
    margin: 0 0 20px;

    line-height: 1.12;

    color: #111827;

}

.review-header p {
    margin: 0;

    line-height: 1.8;

    color: #6b7280;

}

.review-grid {
    display: grid;

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

    gap: 24px;
}

.review-card {
    position: relative;

    overflow: hidden;

    padding: 30px;

    border-radius: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.9);

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(12px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06);

    transition: 0.35s ease;
}

.review-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.16),
            transparent 70%);
}

.review-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255, 210, 31, 0.35);

    box-shadow:
        0 28px 60px rgba(255, 210, 31, 0.14);
}

.review-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.review-logo {
    width: 50px;
    height: 50px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    box-shadow:
        0 12px 28px rgba(255, 210, 31, 0.28);

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

    font-weight: 800;

    flex-shrink: 0;
}

.review-card h3 {
    margin: 0 0 4px;

    color: #111827;
}

.review-stars {
    color: #fbbc05;

    letter-spacing: 1px;
}

.review-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    line-height: 1.9;

    color: #6b7280;
}

/* Tablet */
@media (max-width: 992px) {

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

}

/* Mobile */
@media (max-width: 576px) {

    .review-section {
        padding: 80px 16px;
    }

    .review-section::before {
        background-size: 28px 28px;
    }

    .review-header {
        margin-bottom: 38px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 24px;
        border-radius: 24px;
    }

    .review-header p {}

    .review-card p {}

    .review-logo {
        width: 46px;
        height: 46px;

        border-radius: 16px;

    }

}

/*=======================reviews========================*/


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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-list details {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background:
        rgba(255, 255, 255, 0.82);
    border:
        1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
    padding: 5px 24px;
}


.faq-list details::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.16),
            transparent 70%);
}

.faq-list details::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.16),
            transparent 70%);
}

.faq-list details:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 50px rgba(255, 210, 31, 0.14);
}

.faq-list summary {
    position: relative;

    list-style: none;

    cursor: pointer;

    padding: 24px 78px 24px 26px;

    font-weight: 700;

    color: #111827;

    transition: 0.25s ease;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 22px;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

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

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    font-weight: 700;

    box-shadow:
        0 10px 24px rgba(255, 210, 31, 0.28);

    transition: 0.3s ease;
}

.faq-list details[open] summary::after {
    content: "−";

    transform:
        translateY(-50%) rotate(180deg);
}

.faq-list p {
    padding:
        0 26px 26px;

    color: #6b7280;

    line-height: 1.8;

    max-width: 92%;
}

.faq-list details[open] {
    border-color:
        rgba(255, 210, 31, 0.35);

    box-shadow:
        0 28px 60px rgba(255, 210, 31, 0.14);
}

@media (max-width: 640px) {

    .faq {
        padding: 70px 16px;
    }

    .faq .section-heading {
        margin-bottom: 34px;
    }

    .faq-list {
        gap: 14px;
    }

    .faq-list details {
        border-radius: 22px;
    }

    .faq-list summary {
        padding:
            20px 68px 20px 20px;

        line-height: 1.5;
    }

    .faq-list summary::after {
        width: 36px;
        height: 36px;

        right: 16px;

        border-radius: 12px;

    }

    .faq-list p {
        padding:
            0 20px 20px;

        max-width: 100%;
    }

}

/*==================================
FINAL CTA
==================================*/

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 110px 20px;

    background:
        linear-gradient(180deg,
            #050505,
            #0b0b0b);
}

.final-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 40px 40px;

    pointer-events: none;
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.22),
            transparent 70%);

    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: auto;

    padding: 90px 70px;

    border-radius: 42px;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    text-align: center;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

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

    background:
        radial-gradient(circle,
            rgba(255, 210, 31, 0.25),
            transparent 70%);
}

.cta-box h2 {
    position: relative;
    z-index: 2;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 22px;

    letter-spacing: -1.5px;
}

.cta-box p {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin:
        0 auto 36px;

    line-height: 1.9;

    color:
        rgba(255, 255, 255, 0.72);
}

.cta-box .btn-dark {
    position: relative;
    z-index: 2;

    display: inline-flex;

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

    padding: 18px 34px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    font-weight: 800;

    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.28);

    transition: 0.35s ease;
}

.cta-box .btn-dark:hover {
    transform:
        translateY(-4px) scale(1.02);

    box-shadow:
        0 28px 60px rgba(255, 210, 31, 0.38);
}

@media (max-width: 768px) {

    .final-cta {
        padding: 80px 16px;
    }

    .final-cta::before {
        background-size: 28px 28px;
    }

    .cta-box {
        padding: 54px 24px;

        border-radius: 30px;
    }

    .cta-box h2 {
        line-height: 1.18;
    }

    .cta-box p {
        margin-bottom: 28px;
    }

    .cta-box .btn-dark {
        width: 100%;

        padding: 16px 20px;

        border-radius: 18px;
    }

}


/*==================================
FOOTER
==================================*/

.footer {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border-top:
        1px solid rgba(15, 23, 42, 0.06);

    padding-top: 70px;
}

.footer::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);

    background-size: 34px 34px;

    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 70px;
    padding: 0 20px 50px;
}

/* logo */

.footer-logo {
    display: inline-block;

    margin-bottom: 20px;

    font-weight: 900;

    color: #111827;
}

.footer-logo span {
    color: #ffd21f;
}

/* about */

.footer-about p {
    max-width: 520px;

    color: #6b7280;

    line-height: 1.9;

    margin-bottom: 28px;
}

/* contact */

.footer-contact {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.footer-contact-item {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.05);

    color: #111827;

    font-weight: 700;

    transition: 0.3s ease;
}

.footer-contact-item span {
    width: 34px;
    height: 34px;

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

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    box-shadow:
        0 8px 20px rgba(255, 210, 31, 0.28);
}

.footer-contact-item:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(255, 210, 31, 0.12);
}

/* menu */

.footer-menu h5 {
    margin-bottom: 24px;
    color: #111827;

}

.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu a {
    color: #6b7280;

    margin-bottom: 14px;

    font-weight: 500;

    transition: 0.25s ease;
}

.footer-menu a:hover {
    color: #111827;

    transform: translateX(4px);
}

/* bottom */

.footer-bottom {
    position: relative;
    z-index: 2;

    padding: 22px 20px;

    border-top:
        1px solid rgba(15, 23, 42, 0.06);

    text-align: center;

    color: #6b7280;

}

/* tablet */

@media (max-width: 992px) {

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}

/* mobile */

@media (max-width: 640px) {

    .footer {
        padding-top: 50px;
    }

    .footer-inner {
        padding:
            0 16px 40px;
    }

    .footer-logo {}

    .footer-contact {
        flex-direction: column;
    }

    .footer-contact-item {
        width: 100%;
    }

    .footer-menu h3 {
        margin-bottom: 18px;
    }

    .footer-menu a {
        margin-bottom: 12px;
    }

    .footer-bottom {}

}

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 120px 20px;

    background:
        linear-gradient(180deg,
            #050505,
            #0b0b0b);
}

.cta-box {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: auto;

    padding: 80px 70px;

    border-radius: 42px;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03));

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


.final-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 40px 40px;

    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;

    text-align: center;

    margin-bottom: 50px;
}

.cta-badge {
    display: inline-flex;

    margin-bottom: 20px;

    padding: 10px 20px;

    border-radius: 999px;

    background:
        rgba(255, 210, 31, 0.14);

    border:
        1px solid rgba(255, 210, 31, 0.35);

    color: #ffd21f;

    font-weight: 800;
}

.cta-box h2 {
    position: relative;
    z-index: 2;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 22px;

    letter-spacing: -1.5px;
}

.cta-box p {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: auto;

    line-height: 1.9;

    color:
        rgba(255, 255, 255, 0.72);
}

.cta-form {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    padding: 24px;
}

.form-grid {
    display: grid;

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

    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #fff;

    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 18px 20px;

    border-radius: 18px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.06);

    color: #fff;

    outline: none;

    transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color:
        rgba(255, 210, 31, 0.45);

    box-shadow:
        0 0 0 4px rgba(255, 210, 31, 0.08);
}

.cta-submit {
    width: 100%;

    border: none;

    cursor: pointer;

    padding: 18px 24px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    font-weight: 800;

    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.28);

    transition: 0.35s ease;
}

.cta-submit:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 28px 60px rgba(255, 210, 31, 0.38);
}

@media (max-width: 768px) {

    .final-cta {
        padding: 80px 16px;
    }

    .final-cta::before {
        background-size: 28px 28px;
    }

    .cta-box {
        padding: 54px 24px;

        border-radius: 30px;
    }

    .cta-content {
        margin-bottom: 34px;
    }

    .cta-box h2 {
        line-height: 1.18;
    }

    .cta-box p {}

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;

        border-radius: 16px;
    }

    .cta-submit {
        padding: 16px 20px;

        border-radius: 18px;
    }

}


/*==================================
FOOTER
==================================*/


@media (max-width: 980px) {

    .hero-grid,
    .pricing-grid,
    .portfolio-grid,
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0;
    }

    .hero-grid,
    .pricing-grid,
    .portfolio-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {}

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-dark,
    .btn-outline {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .price-card.highlight {
        transform: none;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }


}

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

.floating-contact {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;
    animation:
        floatingPulse 2s infinite;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }

}

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

.floating-main-btn {
    width: 58px;
    height: 58px;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    font-weight: 300;

    cursor: pointer;

    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.28);

    transition: 0.3s ease;
}

.floating-main-btn:hover {
    transform: scale(1.08);

    box-shadow:
        0 24px 50px rgba(255, 210, 31, 0.38);
}

/*==================================
MENU
==================================*/

.floating-menu {
    position: absolute;

    right: 0;
    bottom: 84px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;
}


/* ค่าเริ่มต้น ซ่อนไว้ */
.floating-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* เปิดเมื่อมี active */
.floating-contact.active .floating-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* hover เฉพาะคอม */
@media (hover: hover) {
    .floating-contact:hover .floating-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/*==================================
FOOTER TEXT
==================================*/

.footer-links h6,
.footer-contact h6 {}

.footer-links p,
.footer-contact p {}

.footer-links li,
.footer-contact li {}

/*==================================
ITEM
==================================*/

.floating-item {
    width: 56px;
    height: 56px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.92);

    border:
        1px solid rgba(255, 210, 31, 0.25);

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

    text-decoration: none;

    color: #111827;

    box-shadow:
        0 18px 40px rgba(255, 210, 31, 0.12);

    backdrop-filter: blur(14px);

    transition: 0.3s ease;
}

.floating-item:hover {
    transform:
        translateX(-6px) scale(1.04);

    border-color:
        rgba(255, 210, 31, 0.45);

    box-shadow:
        0 24px 55px rgba(255, 210, 31, 0.22);
}

/*==================================
ICON
==================================*/

.floating-icon {
    width: 40px;
    height: 40px;

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

}

.icon {
    width: 26px;
    height: 26px;
}

.icon path {
    fill: #101010;
}

/* main button icon */

.icon-chat {
    width: 26px;
    height: 26px;
}

.icon-chat path {
    fill: #111827;
}

/*==================================
MOBILE
==================================*/

@media (max-width: 576px) {

    .floating-contact {
        right: 18px;
        bottom: 18px;
    }

    .floating-main-btn {
        width: 54px;
        height: 54px;

    }

    .floating-menu {
        bottom: 76px;

        gap: 12px;
    }

    .floating-item {
        width: 52px;
        height: 52px;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
    }

    .icon,
    .icon-chat {
        width: 24px;
        height: 24px;
    }

}


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

/*==================================
PRIVACY POPUP
==================================*/

.privacy-popup {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 980px;
    z-index: 99999;
    animation:
        popupUp 0.5s ease;
}

.privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 28px;
    border-radius: 28px;
    background:
        rgba(0, 0, 0, 0.76);

    border:
        1px solid rgba(255, 210, 31, 0.18);

    backdrop-filter: blur(16px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}

/* text */

.privacy-text h6 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}

.privacy-text p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 620px;
    font-size: 14px;
}

/* buttons */

.privacy-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.privacy-link {
    color: #ffd21f;
    font-weight: 700;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.privacy-btn {
    border: none;
    padding: 14px 22px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
    transition: 0.25s ease;
}

/* decline */

.decline-btn {
    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.1);
}

.decline-btn:hover {
    background:
        rgba(255, 255, 255, 0.14);
}

/* accept */

.accept-btn {
    background:
        linear-gradient(135deg,
            #ffe98d,
            #ffd21f);

    color: #111827;

    box-shadow:
        0 14px 34px rgba(255, 210, 31, 0.25);
}

.accept-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 40px rgba(255, 210, 31, 0.35);
}

/* animation */

@keyframes popupUp {

    from {
        opacity: 0;

        transform:
            translateX(-50%) translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateX(-50%) translateY(0);
    }

}

/* mobile */

@media (max-width: 768px) {

    .privacy-popup {
        bottom: 16px;

        width: calc(100% - 20px);
    }

    .privacy-content {
        flex-direction: column;
        align-items: flex-start;

        padding: 22px;

        gap: 20px;

        border-radius: 24px;
    }

    .privacy-actions {
        width: 100%;

        flex-wrap: wrap;
    }

    .privacy-btn {
        flex: 1;

        min-width: 120px;
    }

}