/* =======   GLOBAL RESET & FONT SYSTEM ========= */

* {
    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;
    letter-spacing: -0.025em;
}

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

/*Promotion*/
.sticky-promo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff4d4f;
    z-index: 9999;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.promo-content {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.promo-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-box {
    min-width: 36px;
    height: 36px;

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

    background: #111;
    color: #fff;

    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.separator {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.promo-btn {
    background: #fff;
    color: #ff4d4f;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}

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

    .promo-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 8px 12px;
    }

    .promo-text {
        width: 90%;
        text-align: center;
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 2px;
    }

    .promo-timer {
        font-size: 16px;
        gap: 4px;
    }

    .promo-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

}

/* จอเล็กมาก */
@media (max-width: 380px) {
    .promo-content {
        grid-template-columns: 1fr;
    }

    .promo-timer,
    .promo-btn {
        justify-self: center;
    }
}


/* ========================= HOME HERO SECTION ========================= */

.home-hero {
    padding: 50px 24px;
    background:
        radial-gradient(circle at top right,
            rgba(0, 132, 255, .15),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 132, 255, .08),
            transparent 40%),

        linear-gradient(180deg,
            #FFFFFF 0%,
            #F7FBFF 100%);
    position: relative;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .03) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .03) 1px,
            transparent 1px);

    background-size: 40px 40px;
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -10px;
    left: -250px;
    border-radius: 50%;
    background: rgba(0, 132, 255, 0.348);
    filter: blur(100px);
    pointer-events: none;
}

.home-hero-content {
    max-width: 1280px;
    margin: auto;
    text-align: center;
}


.AISearch {
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(90deg,
            #0084FF,
            #66B8FF,
            #38BDF8,
            #A78BFA,
            #0084FF);

    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aiGradient 4s ease infinite;
}

@keyframes aiGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.home-hero-content h1 {

    color: #050505;
}

.home-hero-content p {

    color: #050505;
    max-width: 900px;
    margin: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    min-width: 120px;

    padding: 14px 18px;

    border-radius: 18px;

    background: rgba(0, 132, 255, .04);
    border: 1px solid rgba(0, 132, 255, .25);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: .3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    border-color: #0084FF;
    box-shadow:
        0 10px 25px rgba(0, 132, 255, .12);
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #0084FF;
    line-height: 1;
}

.hero-stat span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #0084FF;
}

@media(max-width:768px) {

    .hero-stats {
        gap: 8px;
        margin-top: 24px;
    }

    .hero-stat {
        min-width: 95px;
        padding: 12px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 11px;
    }

}

.hero-primary-btn:hover {
    transform:
        translateY(-4px) scale(1.03);

    box-shadow:
        0 0 30px rgba(0, 132, 255, .5),
        0 0 60px rgba(0, 132, 255, .3),
        0 20px 45px rgba(0, 132, 255, .35);
}

@keyframes shineMove {

    0% {
        left: -120%;
    }

    100% {
        left: 160%;
    }

}

@keyframes greenGlow {

    0% {
        box-shadow:
            0 0 15px rgba(0, 132, 255, .25),
            0 0 30px rgba(0, 132, 255, .15),
            0 15px 35px rgba(0, 132, 255, .20);
    }

    50% {
        box-shadow:
            0 0 25px rgba(0, 132, 255, .45),
            0 0 50px rgba(0, 132, 255, .25),
            0 20px 45px rgba(0, 132, 255, .30);
    }

    100% {
        box-shadow:
            0 0 15px rgba(0, 132, 255, .25),
            0 0 30px rgba(0, 132, 255, .15),
            0 15px 35px rgba(0, 132, 255, .20);
    }

}

.hero-image-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 50px auto 0;
    overflow: hidden;
}

.hero-marquee {

    padding: 0 0 50px 50px;
    -webkit-mask-image:
        linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);

    mask-image:
        linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.hero-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: heroMarquee 35s linear infinite;
}

.hero-image {
    width: 520px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 24px;
    box-shadow: 0 20px 30px rgba(0, 132, 255, .12);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

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

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

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

@media (max-width: 768px) {
    .hero-marquee-track {
        gap: 16px;
        padding: 0 0 50px 50px;
        animation-duration: 28s;
    }

    .hero-image {
        width: 300px;
        height: 240px;
        border-radius: 18px;
    }
}




/* =========================
   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: 1;
    transform: translateY(0);
    transition:
        opacity .8s ease,
        transform .8s 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(4, 1fr);
    gap: 22px;
}

/* card */

.home-pain-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 34px 28px;
    border-radius: 32px;
    background: #ffffff;
    border:
        1px solid rgba(15, 23, 42, .06);

    box-shadow:
        0 18px 50px rgba(15, 23, 42, .06);

    transition: .35s ease;
}

.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 */

.pain-number {
    position: absolute;
    top: 24px;
    right: 24px;

    color: rgba(15, 23, 42, .08);

    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.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 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 16px;
}


@media (max-width: 1100px) {

    .home-pain-grid {
        grid-template-columns: repeat(2, 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 {
        min-height: auto;
        padding: 30px 24px;
        border-radius: 28px;
    }

}

/* =========================
   section end  2
========================= */
/*pain section*/
.pain-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background:
        radial-gradient(circle at 20% 60%, rgba(0, 132, 255, .14), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(0, 132, 255, .10), transparent 25%),
        linear-gradient(180deg, #000000, #050505);
    color: #fff;
}

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


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

.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);
    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, 132, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
}



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

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

    box-shadow:
        0 30px 80px rgba(0, 132, 255, .12),
        inset 0 1px 0 rgba(255, 255, 255, .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,
            #66B8FF,
            #0084FF);
    color: #000;
    box-shadow: 0 12px 28px rgba(0, 132, 255, .25);
    flex-shrink: 0;
	z-index: 1;
}

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

    opacity: 0;
    transition: 0.35s ease;
}

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

.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,
            #66B8FF,
            #0084FF);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow:
        0 18px 40px rgba(0, 132, 255, .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(0, 132, 255, .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%;
    }
}

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

@media (max-width: 640px) {

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



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

    .pain-card {
        min-height: auto;
        padding: 12px;
        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;
        text-decoration: none;
    }
}

/*pain section*/






/* =========================
   section 4
========================= */
/* =========================
   Easy Process Section
========================= */

.why-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;

    background:
        radial-gradient(circle at 80% 20%,
            rgba(0, 132, 255, .10),
            transparent 30%),

        radial-gradient(circle at 20% 80%,
            rgba(0, 132, 255, .06),
            transparent 35%),

        linear-gradient(180deg,
            #ffffff,
            #f5f9ff);

    color: #0F172A;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 132, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 132, 255, .035) 1px, transparent 1px);

    background-size: 44px 44px;
    pointer-events: none;
}

.why-single-container {
    position: relative;
    z-index: 2;

    max-width: 1000px;
    margin: auto;

    padding: 60px;
    border-radius: 36px;

    background: linear-gradient(180deg,
            #ffffff,
            #f8fbff);

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

    box-shadow:
        0 20px 60px rgba(0, 132, 255, .08),
        0 40px 90px rgba(0, 132, 255, .04);
}

.why-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
}

.why-heading h2 {
    color: #0F172A;
    line-height: 1.15;
    margin-bottom: 18px;
}

.why-heading p {
    color: #64748B;
    line-height: 1.8;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;

    padding: 28px;
    border-radius: 26px;

    background: #ffffff;

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

    box-shadow:
        0 10px 30px rgba(0, 132, 255, .05);

    transition: .35s ease;
}

.why-item:hover {
    transform: translateY(-5px);

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

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

.why-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

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

    border-radius: 18px;

    background: linear-gradient(135deg,
            #66B8FF,
            #0084FF);

    color: #ffffff;

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

    box-shadow:
        0 10px 25px rgba(0, 132, 255, .18);
}

.why-item h5 {
    margin-bottom: 8px;

    color: #0F172A;

    font-size: 20px;
    line-height: 1.4;
}

.why-item p {
    color: #64748B;

    line-height: 1.75;
    font-size: 15px;
}

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

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

    .why-single-container {
        padding: 34px 20px;
        border-radius: 28px;
    }

    .why-heading {
        margin-bottom: 34px;
    }

    .why-heading h2 {
        font-size: 28px;
    }

    .why-item {
        gap: 16px;
        padding: 22px;
        border-radius: 22px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 20px;
    }

    .why-item h5 {
        font-size: 17px;
    }

    .why-item p {
        font-size: 14px;
    }
}

/* =========================
   section 4
========================= */


/* =========================
   section 5
========================= */

.featured-services-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%);
}

.featured-services-container {
    max-width: 1240px;
    margin: auto;
}

/* =========================
   HEADING
========================= */

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



.featured-services-heading h2 {
    margin: 0;
    color: #0f172a;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 700;
}

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

/* =========================
   GRID
========================= */

.featured-services-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
}

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

.featured-main-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 38px;
    background:
        linear-gradient(135deg,
            #FFFFFF,
            #EAF4FF);

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

/* bg */

.featured-main-bg {
    position: absolute;
    inset: 0;

    opacity: .22;
}

.featured-main-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* overlay */

.featured-main-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 72, 121, 0.727),
            rgba(0, 0, 0, 0.419));
}

/* content */

.featured-main-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-main-content span {
    display: inline-flex;
    width: fit-content;

    margin-bottom: 20px;
    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .12);

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.featured-main-content h3 {
    margin: 0 0 18px;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 700;
}

.featured-main-content p {
    max-width: 520px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.9;
}

/* list */

.featured-main-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    padding: 0;
    margin: 0 0 34px;

    list-style: none;
}

.featured-main-content li {
    padding: 12px 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .1);

    border:
        1px solid rgba(255, 255, 255, .08);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

/* button */

.featured-main-content a {
    display: inline-flex;
    width: fit-content;

    min-height: 56px;
    padding: 0 28px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0084FF,
            #006FE0);

    color: #ffffff;

    text-decoration: none;

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

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

    box-shadow:
        0 20px 40px rgba(0, 132, 255, .22);

    transition: .3s ease;
}

.featured-main-content a:hover {
    transform: translateY(-4px);
}

/* =========================
   SIDE GRID
========================= */

.featured-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

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

.featured-side-card {
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
    transition: .35s ease;
}

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

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

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

/* image */

.featured-side-image {
    position: relative;

    width: 100%;
    height: 150px;

    overflow: hidden;
}

.featured-side-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .2),
            transparent 60%);
}

.featured-side-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

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

/* content */

.featured-side-content {
    padding: 26px 24px;
}

/* title */

.featured-side-content h5 {
    margin: 0 0 12px;

    color: #0f172a;
    line-height: 1.3;
    font-weight: 700;
}

/* desc */

.featured-side-content p {
    margin: 0 0 24px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}

/* link */

.featured-side-content a {
    display: inline-flex;
    color: #0084FF;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: .3s ease;
}

.featured-side-content a:hover {
    transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px) {

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

}

@media (max-width:700px) {

    .featured-services-section {
        padding: 80px 18px;
    }

    .featured-services-heading {
        margin-bottom: 42px;
    }

    .featured-services-heading p {
        font-size: 16px;
    }

    .featured-main-card {
        min-height: 620px;
        border-radius: 30px;
    }

    .featured-main-content {
        padding: 30px 24px;
    }

    .featured-main-content h3 {
        font-size: 34px;
    }

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

    .featured-side-image {
        height: 220px;
    }

}


/* =========================
   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 h2 {

    color: #0f172a;
    margin-bottom: 12px;
}

.work-heading p {
    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;
}

/* 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 ผลงาน
========================= */









/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
    position: relative;
    overflow: hidden;

    padding: 120px 24px;

    background:
        radial-gradient(circle at top right,
            rgba(0, 132, 255, .08),
            transparent 30%),
        linear-gradient(180deg,
            #ffffff 0%,
            #F7FBFF 100%);
}

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

/* =========================
   HEADING
========================= */

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



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

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

/* =========================
   GRID
========================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
}

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

.testimonial-featured {
    position: relative;
    overflow: hidden;

    min-height: 620px;

    padding: 50px;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            #FFFFFF,
            #EAF4FF);

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

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-featured::before {
    content: "";

    position: absolute;
    top: -120px;
    right: -120px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .14),
            transparent 70%);
}

/* quote */

.testimonial-quote {
    position: relative;
    z-index: 2;

    color: #0084FF;

    font-size: 140px;
    line-height: 1;
    font-weight: 900;
}

/* text */

.testimonial-text {
    position: relative;
    z-index: 2;

    margin: -10px 0 50px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.7;
    letter-spacing: -.5px;
    font-weight: 700;
}

/* =========================
   USER
========================= */

.testimonial-user {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #0084FF,
            #006FE0);

    color: #ffffff;

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

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

    flex-shrink: 0;
}

.testimonial-user h4 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;
}

.testimonial-user span {
    color: rgba(255, 255, 255, .72);

    font-size: 14px;
}

/* =========================
   SIDE GRID
========================= */

.testimonials-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

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

.testimonial-card {
    position: relative;
    overflow: hidden;

    padding: 30px 26px;

    border-radius: 32px;

    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: space-between;
}

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

    position: absolute;
    top: -90px;
    right: -90px;

    width: 180px;
    height: 180px;

    background:
        radial-gradient(circle,
            rgba(0, 132, 255, .12),
            transparent 70%);
}

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

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

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

/* green */

.green-card {
    background:
        linear-gradient(135deg,
            #0084FF,
            #006FE0);
}

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

/* dark */

.dark-card {
    background:
        linear-gradient(135deg,
            #0f172a,
            #111827);
}

.dark-card::before {
    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .12),
            transparent 70%);
}

/* stars */

.testimonial-stars {
    position: relative;
    z-index: 2;

    margin-bottom: 22px;

    color: #0084FF;

    font-size: 20px;
    letter-spacing: 2px;
}

.white-stars {
    color: #ffffff;
}

/* text */

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

    margin: 0 0 28px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.9;
}

.green-card p,
.dark-card p {
    color: rgba(255, 255, 255, .84);
}

/* small user */

.small-user h4 {
    color: #0f172a;

    font-size: 17px;
}

.small-user span {
    color: #64748b;
}

.green-card .small-user h4,
.dark-card .small-user h4 {
    color: #ffffff;
}

.green-card .small-user span,
.dark-card .small-user span {
    color: rgba(255, 255, 255, .72);
}

/* avatars */

.small-avatar {
    width: 54px;
    height: 54px;

    font-size: 18px;
}

.white-avatar {
    background: #ffffff;
    color: #0084FF;

    width: 54px;
    height: 54px;

    font-size: 18px;
}

.dark-avatar {
    background: #ffffff;
    color: #0f172a;

    width: 54px;
    height: 54px;

    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px) {

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

}

@media (max-width:700px) {

    .testimonials-section {
        padding: 80px 18px;
    }

    .testimonials-heading {
        margin-bottom: 42px;
    }

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

    .testimonial-featured {
        min-height: auto;

        padding: 34px 26px;

        border-radius: 32px;
    }

    .testimonial-quote {
        font-size: 90px;
    }

    .testimonial-text {
        font-size: 22px;
    }

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

    .testimonial-card {
        border-radius: 28px;
    }

}

/*======================= 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 p {
        font-size: 16px;
    }

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



}

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

/* =========================
   price
========================= */


.price-card span {
    color: #0084FF;
}

.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,
            #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;
    }

}

.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: rgba(0, 132, 255, 0.14);
    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);
}

.pricing {
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background: linear-gradient(180deg,
            #ffffff,
            #eef7ff);
}

.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: #0f172a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pricing .section-heading p {
    color: #050505;

}

.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(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(-10px);

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

    box-shadow:
        0 34px 80px 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);
}

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



.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: #000000;
    color: #fff;
    border: none;
}

.price-card h3 {
    color: #050505;

    margin-bottom: 14px;
}

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

.price {
    font-weight: 900;
    line-height: 1;
    font-size: 50px;
    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 {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: #050505;
    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 24px;
    }

    .pricing-grid {
        gap: 20px;

        margin-top: 40px;
    }

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

        border-radius: 26px;
    }

    .price-card h3 {}

    .price {}

}

/* =========================
   price
========================= */

/* =========================
   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: #000;
    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 60px;
    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);
    }

}


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

.review-slider-section {
    padding: 80px 24px;
    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: 14px;
}


/* slider */

.review-carousel-wrapper {
    position: relative;
    padding: 0 24px;
}

.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: 90px 24px 50px;
}

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

.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: 90px 0 30px;
    }

    .review-arrow {
        display: none;
    }
}

/* social proof*/
.logo-proof-section {
    padding: 70px 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*/