/* =========================
   Design system for NK 
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Thai', sans-serif;
}


body {
    background: #ffffff;
    color: #374151;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .65em;
    line-height: 1.18;
}

/* Hero / Main Title */
h1 {
    font-size: clamp(2.1rem, 5vw, 2.5rem);
    font-weight: 700;
}

/* Section Title */
h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
}

/* Card / Content Title */
h3 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
}

/* Sub Heading */
h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(1);
    font-weight: 600;
}

/* Paragraph */
p {
    font-size: clamp(1rem);
    line-height: 1.85;
    margin: 0 0 1.2em;
}

/* Lead Text */
.lead {
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.9;
}

p {
    margin: 0 0 1.2em;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================
   SECTION 1: HERO
========================= */

.googleads-hero {
    padding: 70px 20px 0;
    background:
        radial-gradient(circle at top center,
            rgba(255, 255, 255, .15) 0%,
            transparent 60%),
        linear-gradient(135deg,
            #0094ff 0%,
            #0084ff 45%,
            #006fe0 100%);
    overflow: hidden;
    border-radius: 0 0 80px 80px;
}

.googleads-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}

.googleads-hero-content h1 {
    color: #fff;
    line-height: 1.15;
    font-weight: 800;
}

.googleads-hero-content p {
    color: #fff;

}

.googleads-hero-content span {
    font-size: 24px;
    font-weight: 500;
}

.hero-price small {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
}

.hero-price strong {
    display: block;
    font-size: clamp(48px, 6vw, 60px);
    line-height: 1;
    color: #fff;
    font-weight: 800;
}

.googleads-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.googleads-primary-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg,
            #ff8a00,
            #ff6b00);

    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(255, 107, 0, .25);
    transition: .3s;
}

.googleads-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, .35);
}

.googleads-hero-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.googleads-hero-image img {
    width: 120%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

/* MOBILE */

@media (max-width: 991px) {

    .googleads-hero {
        padding: 70px 15px 0;
    }

    .googleads-hero-image img {
        width: 100%;
    }

    .googleads-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }


    .googleads-hero-content {
        text-align: center;
    }

    .googleads-actions {
        justify-content: center;
    }

}

@media (max-width: 700px) {

    .googleads-actions {
        flex-direction: column;
    }

    .googleads-hero-image {
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .googleads-hero-image img {
        width: 120%;
        max-width: none;
    }

    .googleads-primary-btn,
    .googleads-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .googleads-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .googleads-hero-content h1 {
        font-size: 38px;
    }

    .googleads-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    .googleads-hero-content p {
        font-size: 16px;
    }

    .pain-cta1 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .pain-cta1 .icon {
        width: 20px;
        height: 20px;
        display: block;
        flex-shrink: 0;
        position: relative;
        top: -1px;
    }

}


.pain-cta1 {
    position: relative;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #4ef0b4,
            #34E0A1);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow:
        0 18px 40px rgba(52, 224, 161, .28),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: .3s ease;
    animation: pulseGlow 1.8s infinite;
    text-decoration: none;
}

.pain-cta1 svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 12px;
}

.pain-cta1 svg path {
    fill: #fff;
}

.pain-cta1:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 24px 55px rgba(52, 224, 161, .38),
        inset 0 1px 0 rgba(255, 255, 255, .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: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 22px 28px;
    border-radius: 24px;

    background: linear-gradient(135deg,
            #FFB84D,
            #FF8A00);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow:
        0 12px 30px rgba(255, 138, 0, .25),
        0 24px 60px rgba(255, 138, 0, .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(255, 138, 0, .35),
        0 35px 80px rgba(255, 138, 0, .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, .55),
            transparent);

    animation: shine 3s infinite;
}

.pain-cta2:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(255, 138, 0, .35),
        0 35px 80px rgba(255, 138, 0, .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%;
    }
}

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

.service-section {
    overflow: hidden;
    text-align: center;
    padding: 120px 10px 0;

    h2 {
        margin-bottom: 1.2rem;
    }

    .content {
        color: #000;

    }
}

.inner-service-section {
    max-width: 1280px;
    margin: auto;
}

.inner-service-content {
    max-width: 900px;
    margin: auto;

    padding: 0 20px;
}

/* ==================================
   CAROUSEL
================================== */

.carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible;
}

.carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

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

.track {
    display: flex;
    gap: 16px;
    padding: 50px 24px 50px 24PX;

}

/* desktop */
.slide {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 4);
}


/* ปุ่ม */
.prev,
.next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}

@media (max-width: 700px) {

    .service-section {
        padding: 70px 10px 0;
    }

    .inner-service-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .carousel {
        width: 100%;
        padding-left: 16px;
        overflow-x: auto;
        box-sizing: border-box;
    }

    .track {
        gap: 12px;
        padding: 50px 50px 50px 0;
    }

    .carousel-wrapper .carousel .track .slide {
        flex: 0 0 100%;
    }

    .prev,
    .next {
        display: none;
    }
}

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

.fb-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .25s ease;
}

.fb-card:hover {
    transform: translateY(-1px);
}

.card-service {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

/* ==================================
   IMAGE
================================== */

.card-service-1 {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0084ff;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

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

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

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

/* ==================================
   CONTENT
================================== */

.card-service-2 {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 22px;
    flex: 1;
}

.service-price {
    font-size: 30px;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 22px;
}

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

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: #0084ff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.service-btn:hover {
    background: #0084ff;
}

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

.prev,
.next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #0084ff;
    color: #fff;

    font-size: 28px;
    cursor: pointer;

    transition: .25s ease;
}

.prev:hover,
.next:hover {
    background: #0084ff;
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}

/* ==================================
   DOTS
================================== */

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: .25s ease;
}

.dot.active {
    background: #0084ff;
    transform: scale(1.15);
}

/* ==================================
   TABLET
================================== */

@media (max-width: 992px) {

    .service-hero {
        padding: 60px 30px;
    }

    .slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .prev {
        left: -10px;
    }

    .next {
        right: -10px;
    }
}

/* =========================
   section  2
========================= */

.home-pain-section {
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background:
        radial-gradient(circle at top left,
            rgba(0, 132, 255, .08),
            transparent 30%),
        linear-gradient(180deg,
            #ffffff 0%,
            #F7FBFF 100%);
}

.home-pain-container {
    max-width: 1280px;
    margin: auto;
    opacity: 1;
    animation: fadeUp .8s ease forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .3s ease, transform .3s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* heading */

.home-pain-heading {
    max-width: 780px;
    margin: 0 auto 64px;
    text-align: center;
}

.home-pain-heading span {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 132, 255, .1);
    color: #0084FF;
    font-size: 14px;
    font-weight: 800;
}

.home-pain-heading h2 {
    margin: 0;
    letter-spacing: -1.5px;
}

.home-pain-heading p {
    max-width: 720px;
    margin: 24px auto 0;
    color: #64748b;
    line-height: 1.9;
}

/* grid */

.home-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* card */

.home-pain-card {
    position: relative;
    overflow: hidden;
    width: 240px;
    min-height: 200px;
    padding: 24px 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
    transition: .35s ease;

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

.home-pain-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 190px;
    height: 190px;
    background:
        radial-gradient(circle,
            rgba(0, 132, 255, .14),
            transparent 70%);
}

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

    border-color:
        rgba(0, 132, 255, .24);

    box-shadow:
        0 30px 80px rgba(0, 132, 255, .12);
}

/* featured */

.featured-pain {
    background:
        linear-gradient(180deg,
            #0084FF,
            #006FE0);
}

.featured-pain::before {
    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .18),
            transparent 70%);
}

/* number */

.featured-pain .pain-number {
    color: rgba(255, 255, 255, .16);
}

/* icon */

.pain-icon-2 {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    border-radius: 20px;
    background: rgba(0, 132, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon-2 svg {
    width: 48px;
    height: 48px;
    fill: #0084FF;
}

.featured-pain .pain-icon-2 {
    background: rgba(255, 255, 255, .16);
    color: #ffffff;
}


.home-pain-card p {
    position: relative;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.home-section2-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 16px;
}


@media (max-width: 1100px) {

    .home-pain-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }

}


@media (max-width: 700px) {

    .home-pain-section {
        padding: 80px 24px;
    }

    .home-pain-heading {
        margin-bottom: 42px;
    }

    .home-pain-heading p {
        font-size: 16px;
    }

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

    .home-pain-card {
        width: 300px;
        min-height: auto;
        padding: 18px 24px;
        border-radius: 28px;
    }

}

/* =========================
   section end  2
========================= */


/* =========================
   ประสบการณ์
========================= */

.nk-stats-section {
    padding: 80px 20px;

    background: linear-gradient(135deg,
            #0094ff 0%,
            #0084ff 45%,
            #006fe0 100%);
}

.nk-stats-box {
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 20px;
}

.nk-stat-highlight,
.nk-stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;

    transition: all .3s ease;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.nk-stat-highlight {
    padding: 30px;
}

.nk-stat-item {
    padding: 30px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nk-stat-highlight:hover,
.nk-stat-item:hover {
    transform: translateY(-5px);

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

    border-color: rgba(255, 255, 255, 0.3);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ตัวเลข */

.nk-stat-highlight span,
.nk-stat-item strong {
    display: block;

    font-size: 42px;
    font-weight: 900;
    line-height: 1;

    color: #fff;

    margin-bottom: 12px;
}

/* หัวข้อ */

.nk-stat-highlight strong {
    display: block;

    font-size: 18px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 12px;
}

/* รายละเอียด */

.nk-stat-highlight p {
    margin: 0;

    font-size: 14px;
    line-height: 1.8;

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

.nk-stat-item span {
    display: block;

    font-size: 14px;
    line-height: 1.6;

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

/* Mobile */

@media (max-width: 700px) {

    .nk-stats-section {
        padding: 60px 16px;
    }

    .nk-stats-box {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .nk-stat-highlight {
        grid-column: 1 / -1;
        text-align: center;
        padding: 24px;
    }

    .nk-stat-highlight span,
    .nk-stat-item strong {
        font-size: 32px;
    }

    .nk-stat-item {
        padding: 24px 15px;
    }

}


/* =========================
   Price
========================= */
.price-slider-section {
    padding: 70px 0;
    background: #f8fafc;
}

.price-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* =========================
   PRICE CAROUSEL
========================= */
.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 10px 24px rgba(117, 198, 255, 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(0, 132, 255, 0.18),
            transparent 70%);
    top: -120px;
    right: -120px;
}

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

    border-color:
        rgba(0, 132, 255, 0.35);

    box-shadow:
        0 34px 20px rgba(0, 132, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-card.highlight {
    transform: scale(1.06);
    background:
        linear-gradient(180deg,
            #F4FAFF,
            #EAF4FF);
    border: 2px solid #0084FF;
    box-shadow:
        0 20px 50px rgba(0, 132, 255, .15),
        0 35px 80px rgba(0, 132, 255, .10);

    z-index: 3;
}

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

.price-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 132, 255, .10);
    color: #0084ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
}

.discount-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg,
            #FFB84D,
            #FF8A00);
    color: #000000;
    font-size: 13px;
    font-weight: 900;
    box-shadow:
        0 12px 28px rgba(255, 196, 0, 0.35);

    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;
    }

}

.price-card h4 {
    margin: 18px 0 8px;
    font-size: 20px;
    color: #0f172a;
}

.price-amount {
    margin: 6px 0 10px;
    font-size: 38px;
    font-weight: 900;
    color: #0084ff;
}

.price-card span {
    display: block;
    margin-bottom: 14px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.price-card p {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.price-list {
    width: 100%;
    padding: 0;
    margin: 22px 0 28px;
    list-style: none;
}

.price-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
}

.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0084ff;
    font-weight: 900;
}

.price-btn {
    margin-top: auto;
    width: 100%;
    min-height: 50px;
    border-radius: 999px;
    background: #0084ff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.price-btn:hover {
    background: #006ed6;
    transform: translateY(-2px);
}

.price-popular {
    border: 2px solid #0084ff;
    box-shadow: 0 24px 70px rgba(0, 132, 255, .18);
}

.price-popular .price-badge {
    background: #0084ff;
    color: #ffffff;
}

.price-popular .price-btn {
    background: #0f172a;
}

.price-popular .price-btn:hover {
    background: #0084ff;
}

.feature-divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.feature-divider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(0, 132, 255, .15);
    z-index: 1;
}

.feature-divider span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 8px 12px;
    background: #0084ff;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;

    margin-right: 25px;
}

.feature-divider::before {
    display: none !important;
}



.price-card.highlight .tag {
    background: #000000;
    color: #fff;
    border: none;
}

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

.price {
    font-weight: 800;
    line-height: 1;
    font-size: 36px;
    margin-bottom: 26px;
    color: #0084FF;
}

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

.price-card ul {
    list-style: none;
    margin-top: 12px;
    margin-bottom: 34px;
}

.price-card li {
    font-size: 16px;
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.2;
}

.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,
            #8CCBFF,
            #0084FF);

    color: #000000;

    font-weight: 900;
}

.price-card.highlight li {
    color: rgba(0, 0, 0, 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: #000000;

    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 20px;
    }

    .pricing-grid {
        gap: 16px;
        margin-top: 40px;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
        border-radius: 26px;
    }

}

/* =========================
   Price
========================= */





/* =========================
   section ผลงาน
========================= */
/* =========================
   SECTION ผลงาน NK
========================= */

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

    background:
        radial-gradient(circle at 15% 10%,
            rgba(0, 132, 255, .12),
            transparent 32%),

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

.work-inner {
    max-width: 1280px;
    margin: auto;
}

.work-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;
    border-radius: 999px;

    background: rgba(0, 132, 255, .10);

    color: #0084FF;

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

    margin-bottom: 14px;
}


.work-heading p {
    max-width: 900px;
    margin: auto;
    color: #64748B;
    font-size: 16px;
}

.work-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 34px;
    align-items: flex-start;
}

/* Tabs */

.work-tabs {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.work-tab {
    width: 100%;
    padding: 13px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 255, .15);
    background: rgba(255, 255, 255, .85);
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: .3s ease;
}

.work-tab:hover,
.work-tab.active {
    background: #0084FF;
    color: #ffffff;
    border-color: #0084FF;
    box-shadow: 0 14px 34px rgba(0, 132, 255, .22);
    transform: translateX(6px);
}

.work-right {
    min-width: 0;
}

/* Grid */

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

.image-card {
    position: relative;

    display: block;

    aspect-ratio: 1/1;

    overflow: hidden;

    border-radius: 24px;

    background: #EAF4FF;

    border: 1px solid rgba(0, 132, 255, .10);

    box-shadow:
        0 18px 45px rgba(0, 132, 255, .08);

    transition: .35s ease;
}

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

    object-fit: cover;
    display: block;

    transition: .5s ease;
}

.image-card:hover {

    transform: translateY(-8px);

    border-color: rgba(0, 132, 255, .25);

    box-shadow:
        0 28px 70px rgba(0, 132, 255, .15);
}

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

/* Overlay */

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

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

    padding: 18px;

    background:
        linear-gradient(180deg,
            rgba(15, 23, 42, 0) 35%,
            rgba(15, 23, 42, .72) 100%);

    opacity: 0;

    transition: .35s ease;
}

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

.work-btn {
    min-height: 42px;

    padding: 0 18px;

    border-radius: 999px;

    background: #0084FF;

    color: #ffffff;

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

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

    box-shadow:
        0 12px 30px rgba(0, 132, 255, .30);
}

/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 34px;
}

.pagination button,
#pageNumbers button {

    min-width: 42px;
    height: 42px;

    padding: 0 16px;

    border-radius: 999px;

    border: 1px solid rgba(0, 132, 255, .15);

    background: #ffffff;

    color: #0F172A;

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

    cursor: pointer;

    transition: .3s ease;
}

.pagination button:hover,
#pageNumbers button:hover,
#pageNumbers button.active {

    background: #0084FF;

    color: #ffffff;

    border-color: #0084FF;

    box-shadow:
        0 12px 28px rgba(0, 132, 255, .20);
}

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

.portfolio-image {
    cursor: pointer;
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 44px;
    cursor: pointer;
}

/* Tablet */

@media (max-width: 1024px) {

    .work-layout {
        grid-template-columns: 1fr;
    }

    .work-tabs {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }

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

    .work-tab:hover,
    .work-tab.active {
        transform: translateY(-3px);
    }

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

/* Mobile */

@media (max-width: 768px) {

    .work-section {
        padding: 70px 16px;
    }

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

    .work-heading p {
        font-size: 14px;
    }

    .work-layout {
        gap: 24px;
    }

    .work-tabs {
        margin-left: -16px;
        margin-right: -16px;

        padding: 10px 16px;

        gap: 8px;
    }

    .work-tab {
        padding: 11px 14px;
        border-radius: 999px;
        font-size: 13px;
    }

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

    .image-card {
        border-radius: 18px;
        aspect-ratio: 1/1;
    }

    .work-overlay {
        opacity: 1;
        padding: 10px;
    }

    .work-btn {
        min-height: 28px;
        padding: 0 8px;
        font-size: 10px;
        font-weight: 500;
    }

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

    .pagination button,
    #pageNumbers button {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .image-card:hover {
        transform: none;
    }

    .image-card:hover img {
        transform: none;
    }
}

/* Helper */

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

.work-tabs::-webkit-scrollbar {
    display: none;
}

.work-tabs {
    scrollbar-width: none;
}

/* =========================
   section ผลงาน
========================= */

/* social proof*/
.logo-proof-section {
    padding: 120px 20px;
    background: #ffffff;
    overflow: hidden;
}

.logo-proof-header {
    text-align: center;
    margin-bottom: 22px;
}

.logo-proof-header p {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 132, 255, 0.22);
    border-radius: 999px;
    background: rgba(0, 132, 255, 0.08);
    color: #0084ff;
    font-size: 14px;
    font-weight: 700;
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: logoScroll 24s linear infinite;
    padding: 12px;

}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    min-width: 170px;
    height: 58px;
    padding: 22px 22px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(0, 132, 255, .08);
    box-shadow:
        0 4px 12px rgba(0, 132, 255, .06),
        0 8px 20px rgba(0, 132, 255, .03);
    transition: .3s ease;
}

.second-row {
    margin-top: 12px;
}

/* reverse */

.logo-track.reverse {
    animation: logoScrollReverse 24s linear infinite;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes logoScrollReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

@media (max-width: 576px) {
    .logo-proof-section {
        padding: 28px 16px;
    }

    .logo-item {
        min-width: 145px;
        height: 52px;
        font-size: 14px;
    }

    .logo-track {
        animation-duration: 18s;
    }
}

/* social proof*/

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

.review-slider-section {
    padding: 70px 24px 0;
    background:
        radial-gradient(circle at top right,
            rgba(0, 132, 255, .08),
            transparent 35%),

        linear-gradient(180deg,
            #ffffff,
            #f5f9ff);
    overflow: hidden;
}

.review-container {
    max-width: 1280px;
    margin: auto;
}

.review-slider-section .section-heading {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.review-slider-section .section-heading h2 {
    margin-bottom: 12px;
}

.review-slider-section .section-heading h2 span {
    color: #0084FF;
}

.review-slider-section .section-heading p {
    color: #64748B;
    font-size: 16px;
}


/* slider */

.review-carousel-wrapper {
    position: relative;
}

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

.review-track {
    display: flex;
    gap: 20px;

}

.review-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 24px 24px;
}

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

.review-card {
    flex: 0 0 calc((100% - 84px) / 4);
    min-width: 0;
    position: relative;
    min-height: 300px;
    padding: 90px 34px 34px;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    border: 1px solid rgba(0, 132, 255, .08);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border: 1px solid #0084FF;
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 132, 255, .12);
}

.review-card h4 {
    color: #0084FF;
    font-size: 18px;
}

.review-avatar {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 132, 255, .25);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .12);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-arrow {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #0084FF;
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
}

.review-stars {
    color: #0084FF;
}

.review-carousel-wrapper .prev {
    left: 0;
}

.review-carousel-wrapper .next {
    right: 0;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 82%;
        min-width: 82%;
    }

    .review-carousel {
        padding: 0 0 30px;
    }

    .review-arrow {
        display: none;
    }
}

/* reviews */

/*======================= promotion ========================*/



.cta-banner-section .container {
    max-width: 100%;
    margin: 0 auto;
    background:
        linear-gradient(135deg,
            #0084ff,
            #36a3ff);
    overflow: hidden;
}

.cta-banner {
    position: relative;
    width: 1280px;
    margin: auto;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* glow */

.cta-banner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

/* content */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-content span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    margin: 0 0 18px;
    line-height: 1.1;
    color: #ffffff;
}

.cta-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}

/* button */

.cta-action {
    position: relative;
    z-index: 2;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 30px;
    border-radius: 999px;
    background: #fff;
    color: #0084ff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    transition: 0.3s ease;
}

.cta-banner-btn:hover {
    transform: translateY(-1px);
    background: #000;
    color: #dff1ff;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, .16);
}

/* tablet */

@media (max-width: 992px) {

    .cta-banner {
        flex-direction: column;
    }

}

/* mobile */

@media (max-width: 576px) {

    .cta-banner-section {
        margin-top: -24px;
        margin-bottom: -24px;
        z-index: 1;
    }

    .cta-banner {
        flex-direction: column;
        width: 100%;
        padding: 40px 28px;
        border-radius: 28px;
        margin: auto;
    }

    .cta-content h2 {
        text-align: center;
    }

    .cta-content p {
        text-align: center;
        font-size: 16px;
    }

    .cta-banner-btn {
        width: 100%;
    }



}

/*======================= promotion ========================*/

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

.faq-section {
    background: #ffffff;
}

.faq-list {
    max-width: 980px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.faq-btn {
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 16px;
}

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

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0, 132, 255, .10);
    color: #0084FF;
    transition: .3s ease;
}

.faq-item[open] .faq-icon {
    background: #0084FF;
    color: #ffffff;
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
}

.faq-content {
    padding: 0 30px 28px;
    color: #64748b;
    line-height: 1.9;
    font-size: 14px;
}

/* =========================
   COMMON
========================= */

.section {
    padding: 120px 24px;
}

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

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

.section-heading h2 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 700;
}

.section-heading p {
    margin: 24px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}


/* ==================================
   TABLET ONLY
   701px - 1100px
================================== */

@media (min-width:701px) and (max-width:1100px) {

    /* HERO */

    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-hero-content {
        text-align: center;
    }

    .home-hero-actions {
        justify-content: center;
    }

    .home-hero-points {
        margin: auto;
    }

    .home-hero-visual {
        justify-content: center;
        min-height: 500px;
    }

    .home-hero-visual img {
        width: 90%;
    }

    /* WHY */

    .why-adsfinity-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-adsfinity-visual {
        margin-left: 0;
        justify-content: center;
    }

    .why-main-card {
        width: 100%;
        max-width: 900px;
        height: auto;
    }

    /* FEATURED */

    .featured-services-grid {
        grid-template-columns: 1fr;
    }

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

    /* TESTIMONIAL */

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

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

    /* PROCESS */

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

    /* PORTFOLIO */

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

}