/* =======   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-image: url('images/images/facebookpage-cover.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
}

@media (max-width: 700px) {
    .home-hero {
        background-image: url('images/images/facebookpage-mb.avif');
        width: 100%;
        height: 950px;
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        position: relative;
    }

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

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-price {
    margin-top: 25px;
}

.hero-price small {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #0084FF;
}

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


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


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



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

}

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

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

@media (max-width: 640px) {

    .home-hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

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

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




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

.about-page {
    padding: 120px 24px;
    background: #fff;
}

.about-page-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}



/* Left */

.about-left {
    display: flex;
    flex-direction: column;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #0B6BFF;
}

.about-left h2 {
    line-height: 1.15;
    font-weight: 700;
    color: #1F2937;
}

.about-left h3 {
    line-height: 1.35;
    font-weight: 700;
    color: #4b4b4b;
    margin-bottom: 60px;
}

.section-en {
    font-size: 15px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #9CA3AF;
}

/* Right */

.about-item {
    margin-bottom: 16px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.about-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    position: relative;
}

.about-item summary::-webkit-details-marker {
    display: none;
}

.about-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #0084ff;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

.about-item[open] summary::after {
    content: "−";
}

.about-item p {
    margin: 0;
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
}

/* Button */

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

    padding: 18px 42px;

    background: #06C755;
    color: #fff;

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

    border-radius: 999px;
    text-decoration: none;

    transition: .3s;
}

.line-btn:hover {
    background: #04b24b;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(6, 199, 85, .28);
}

@media (max-width:991px) {

    .about-page {
        padding: 80px 24px;
    }

    .about-page-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .about-left h3 {
        margin-bottom: 30px;
    }

    .about-right p {
        line-height: 1.8;
    }

}


/* section 3*/
/* =========================
   section end  2
========================= */
/*pain section*/
.pain-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background:
        radial-gradient(circle at top left, rgba(0, 132, 255, .08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 132, 255, .05), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    color: #1e293b;
}

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

.pain-section .section-heading h2 {
    color: #0f172a;
}

.pain-section .section-heading p {
    color: #64748b;
}

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



.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: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
    transition: .35s ease;
    height: 100%;

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

.pain-card:hover {
    transform: translateY(-8px);
    border-color: #0084ff;
    box-shadow: 0 20px 50px rgba(0, 132, 255, .18);
}

.pain-card-inner {
    position: relative;
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #e5eefb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: .35s ease;
    height: 100%;

    display: flex;
    flex-direction: column;
    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;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3ba8ff, #0084ff);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 132, 255, .25);
}

.pain-icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.pain-card h5 {
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}

.pain-card p {
    color: #64748b;
    line-height: 1.75;
    font-size: 14px;
}

.pain-card-inner h5 {
    color: #0084ff;
}

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

@media (max-width: 640px) {

    .pain-grid {
        grid-template-columns: 1fr;
        /* 1 คอลัมน์ */
        gap: 16px;
        margin-top: 34px;
    }

}

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


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

.work-section {
    padding: 100px 24px;
    background: #ffffff;
}

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

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

.work-heading span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #0B6BFF;
}

.work-heading h2 {
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

.work-heading p {
    font-size: 18px;
    color: #6B7280;
}

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

.work-image {
    border-radius: 8px;
    overflow: hidden;
    background: #f3f7fb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.work-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: .35s ease;
}

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

@media (max-width: 991px) {
    .work-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

@media (max-width: 575px) {
    .work-section {
        padding: 70px 16px;
    }

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


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

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

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



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

}