/* Product Reviews Page Styles — v1.0 */

:root {
    --pr-accent: #ffb700;
    --pr-accent-hover: #e5a500;
    --pr-dark-bg: #070a1d;
    --pr-light-bg: #f1f1f1;
    --pr-text-primary: #303030;
    --pr-text-white: #ffffff;
    --pr-green: #56a630;
    --pr-blue: #3292ff;
    --pr-red: #8e1f0b;
    --pr-card-bg: #ffffff;
    --pr-border: #e3e3e3;
}

/* =========================================
   SHARED
   ========================================= */
.pr-section--container {
    display: flex;
    justify-content: center;
    padding: 100px 16px 0;
}

.pr-section--wrap {
    width: 100%;
    max-width: 1120px;
}

.pr-primary--title {
    font-weight: 900;
    font-size: 46px;
    line-height: 110%;
    color: var(--pr-text-primary);
}

.pr-primary--subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #616161;
}

.pr-text--highlight {
    color: var(--pr-accent);
}

.pr-btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--pr-accent);
    color: var(--pr-dark-bg);
    border: 2px solid var(--pr-accent);
    transition:
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.pr-btn--primary:hover {
    background-color: transparent;
    color: var(--pr-accent);
    border-color: var(--pr-accent);
}

.pr-btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    color: var(--pr-accent);
    border: 2px solid var(--pr-accent);
    transition:
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.pr-btn--outline:hover {
    background-color: var(--pr-accent);
    color: var(--pr-dark-bg);
    border-color: var(--pr-accent);
}

.pr-btn--white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    color: var(--pr-text-white);
    border: 2px solid var(--pr-text-white);
    transition:
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.pr-btn--white-outline:hover {
    background-color: var(--pr-text-white);
    color: var(--pr-text-primary);
    border-color: var(--pr-text-white);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.pr-hero {
    width: 100%;
    background: url("../images/whatsapp-marketing/dark-grid-bg.png") center /
        cover no-repeat;
    overflow: visible;
    display: flex;
    justify-content: center;
    padding-top: 200px;
    border-radius: 0px 0px 16px 16px;
}

.pr-hero--wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 0 16px;
    width: 100%;
    max-width: 1120px;
}

.pr-hero--logo {
    height: 54px;
    width: auto;
}

.pr-hero--title {
    font-weight: 900;
    font-size: 46px;
    line-height: 64px;
    text-align: center;
    color: var(--pr-text-white);
}

.pr-hero--subtitle {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: var(--pr-text-white);
    max-width: 720px;
}

.pr-hero--buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 17px;
}

.pr-hero--widget {
    margin-top: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.pr-hero--widget img {
    width: 100%;
    height: auto;
    border-radius: 18px 18px 0 0;
    display: block;
}

/* =========================================
   2. STATS / BENTO GRID SECTION
   ========================================= */
.pr-stats {
    background-color: var(--pr-light-bg);
    padding-top: 100px;
    padding-bottom: 100px;
}

.pr-stats .pr-section--wrap {
    padding-top: 0;
}

.pr-stats--header {
    text-align: center;
    margin-bottom: 50px;
}

.pr-stats--header .pr-primary--title {
    margin-bottom: 12px;
    line-height: 64px;
}

.pr-stats--grid {
    display: grid;
    grid-template-columns: 365px 1fr 365px;
    grid-template-rows: 260px auto;
    gap: 20px;
}

.pr-stats--card {
    background: var(--pr-card-bg);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.pr-stats--card__number {
    font-weight: 900;
    font-size: 56px;
    line-height: normal;
    margin-bottom: 6px;
    color: var(--pr-text-primary);
}

.pr-stats--card__title {
    font-weight: 800;
    font-size: 22px;
    line-height: normal;
    color: var(--pr-text-primary);
    margin-bottom: 6px;
}

.pr-stats--card__desc {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
}

/* Stat card colors */
.pr-stats--card.card-aov .pr-stats--card__number {
    color: var(--pr-green);
}
.pr-stats--card.card-traffic .pr-stats--card__number {
    color: var(--pr-text-primary);
}
.pr-stats--card.card-rating .pr-stats--card__number {
    color: var(--pr-text-primary);
}
.pr-stats--card.card-organic .pr-stats--card__number {
    color: var(--pr-blue);
}
.pr-stats--card.card-trust .pr-stats--card__number {
    color: var(--pr-green);
}
.pr-stats--card.card-return .pr-stats--card__number {
    color: var(--pr-red);
}

/* Grid positions */
.pr-stats--card.card-aov {
    grid-column: 1;
    grid-row: 1;
}
.pr-stats--card.card-traffic {
    grid-column: 2 / 4;
    grid-row: 1;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}
.pr-stats--card.card-rating {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-end;
    padding-bottom: 16px;
}
.pr-stats--card.card-organic {
    grid-column: 2;
    grid-row: 2;
    overflow: hidden;
    padding-bottom: 0;
}

.pr-stats--card__organic-img {
    width: calc(100% + 60px);
    max-width: none;
    margin-left: -30px;
    height: auto;
    margin-top: auto;
}

/* Traffic card: text left, image right */
.pr-stats--card__text-area {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pr-stats--image {
    flex-shrink: 0;
    overflow: hidden;
    align-self: stretch;
}

.pr-stats--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stack: Consumer Trust + Return Rate */
.pr-stats--stack {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pr-stats--stack .pr-stats--card {
    flex: 1;
    padding: 24px;
    justify-content: center;
}

/* Row layout for stacked cards */
.pr-stats--card__row-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pr-stats--card__row-layout .pr-stats--card__number {
    font-size: 46px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.pr-stats--card__row-layout .pr-stats--card__title {
    margin-bottom: 4px;
}

.pr-stats--card__row-layout .pr-stats--card__desc {
    line-height: 24px;
}

/* AOV card rating row */
.pr-stats--card__rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
}

.pr-stats--avatars {
    display: flex;
}

.pr-stats--avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: -4px;
    overflow: hidden;
}

.pr-stats--avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-stats--card__rating-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--pr-text-primary);
    margin-left: 4px;
}

.pr-stats--card__rating-star {
    width: 18px;
    height: 18px;
}

.pr-stats--card__rating-sep {
    font-size: 14px;
    color: #ccc;
}

.pr-stats--card__rating-text {
    font-size: 14px;
    color: #616161;
}

.pr-stats--rating-inner {
    background: #fff;
    border-radius: 16px;
}

/* Rating card header (4.8 + stars + count) */
.pr-stats--rating-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.pr-stats--rating-header .pr-stats--card__number {
    margin-bottom: 4px;
}

.pr-stats--rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.pr-stats--rating-stars svg {
    width: 20px;
    height: 20px;
}

.pr-stats--rating-count {
    font-size: 14px;
    color: #616161;
}

/* Rating breakdown bars */
.pr-stats--rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pr-stats--rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pr-text-primary);
}

.pr-stats--rating-bar span:first-child {
    width: 12px;
    text-align: right;
    font-weight: 500;
}

.pr-stats--rating-bar__star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pr-stats--rating-bar__track {
    flex: 1;
    height: 10px;
    background: #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
}

.pr-stats--rating-bar__fill {
    height: 100%;
    border-radius: 5px;
    background: var(--pr-accent);
}

.pr-stats--rating-bar span:last-child {
    width: 28px;
    text-align: right;
    color: #616161;
}

/* =========================================
   3. TOOLKIT / FEATURES TAB SECTION
   ========================================= */
.pr-toolkit {
    padding-bottom: 100px;
}

.pr-toolkit--header {
    text-align: left;
    margin-bottom: 40px;
}

.pr-toolkit--label {
    font-size: 22px;
    font-weight: 800;
    color: var(--pr-accent);
    margin-bottom: 13px;
}

.pr-toolkit--header .pr-primary--title {
    margin-bottom: 0;
}

.pr-toolkit-content--container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}

.pr-toolkit-menu--container {
    width: 340px;
    flex-shrink: 0;
}

.pr-toolkit-menu--wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pr-toolkit-menu--item {
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s;
}

.pr-toolkit-menu--item__header {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    transition: background-color 0.2s;
}

.pr-toolkit-menu--item:not(.active):hover .pr-toolkit-menu--item__header {
    background-color: #f0f0f0;
}

.pr-toolkit-menu--item.active {
    background-color: #f7f7f7;
    border-radius: 16px;
}

.pr-toolkit-menu--item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-toolkit-menu--item__content {
    font-size: 18px;
    font-weight: 400;
    color: var(--pr-text-primary);
    transition: color 0.2s;
}

.pr-toolkit-menu--item.active .pr-toolkit-menu--item__content {
    font-weight: 700;
}

/* Feature detail sub-items */
.pr-toolkit-menu--item__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.pr-toolkit-menu--item.active .pr-toolkit-menu--item__details {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 24px;
}

.pr-toolkit-detail--item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--pr-text-primary);
}

.pr-toolkit-detail--icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #29845a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-toolkit-mobile-details {
    display: none;
}

.pr-toolkit-demo--container {
    background-color: #f7f7f7;
    border-radius: 16px;
    flex: 1;
    overflow: hidden;
    min-height: 582px;
    position: relative;
}

.pr-toolkit-demo--panel {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 0 0 40px;
}

.pr-toolkit-demo--panel:has(.toolkit-1){
    padding: 40px 16px 0 40px;
}

.pr-toolkit-demo--panel:has(.toolkit-5), 
.pr-toolkit-demo--panel:has(.toolkit-2) {
    padding: 40px 40px 0;
}

.pr-toolkit-demo--panel.active {
    display: flex;
    justify-content: space-between;
}

.pr-toolkit-demo--panel[data-toolkit="ai"]::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/product-reviews/toolkit-bg.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 0;
}

.pr-toolkit-demo--panel[data-toolkit="ai"] > * {
    position: relative;
    z-index: 1;
}

.pr-toolkit-demo--text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.pr-toolkit-demo--title {
    font-size: 22px;
    font-weight: 800;
    color: var(--pr-text-primary);
    line-height: normal;
}

.pr-toolkit-demo--desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--pr-text-primary);
    line-height: 26px;
}

.pr-toolkit-demo--img {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.pr-toolkit-demo--img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom left;
}

/* =========================================
   4. WIDGET SHOWCASE SECTION
   ========================================= */
.pr-showcase {
    background-image: url("../images/whatsapp-marketing/dark-grid-bg.png");
    background-color: #010101;
    background-size: contain;
    background-position: center;
    padding-bottom: 100px;
}

.pr-showcase--header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pr-showcase--badge {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 6px 17px;
    border-radius: 9000px;
    background: #222536;
    box-shadow: inset 0 1.5px 0 0 rgba(255, 255, 255, 0.08);
    color: var(--pr-accent);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
}

.pr-showcase--header .pr-primary--title {
    color: var(--pr-text-white);
    line-height: 64px;
}

.pr-showcase--header .pr-primary--subtitle {
    color: var(--pr-text-white);
    font-size: 18px;
    line-height: 28px;
}

.pr-showcase--grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.pr-showcase--item {
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 70px;
    animation: scrollAnimation linear forwards;
    animation-timeline: view();
    animation-range-start: entry 0%;
    animation-range-end: cover 10%;
}

.pr-showcase--item img {
    width: auto;
    margin: auto;
    display: block;
}

.pr-showcase-item--1 {
    z-index: 1;
}

.pr-showcase-item--2 {
    z-index: 2;
}

.pr-showcase-item--3 {
    z-index: 3;
}

.pr-showcase-item--4 {
    z-index: 4;
}

.pr-showcase-item--5 {
    z-index: 5;
}

.pr-showcase-item--6 {
    z-index: 6;
}

.pr-showcase-item--7 {
    z-index: 7;
}


/* =========================================
   5. TESTIMONIALS SECTION
   ========================================= */
.pr-testimonials {
    background-color: var(--pr-light-bg);
    padding-bottom: 60px;
}

.pr-testimonials .pr-section--wrap {
    overflow: hidden;
    max-width: unset;
}

.pr-testimonials--header {
    text-align: center;
    margin-bottom: 40px;
}

.pr-testimonials--header .pr-primary--title {
    line-height: 64px;
}

.pr-testimonials--header .pr-primary--subtitle {
    line-height: 36px;
    color: var(--pr-text-primary);
}

.pr-testimonials--marquee {
    overflow: hidden;
    width: 100vw;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    display: flex;
    gap: 24px;
}

.pr-testimonials--marquee:hover .pr-testimonials--scroll {
    animation-play-state: paused;
}

.pr-testimonials--scroll {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    animation: pr-marquee 90s linear infinite;
}

.pr-testimonials--card {
    width: 620px;
    min-width: 620px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-snap-align: start;
    flex-shrink: 0;
    overflow: hidden;
}

.pr-testimonials--card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pr-testimonials--card__name {
    font-weight: 600;
    font-size: 20px;
    color: var(--pr-text-primary);
}

.pr-testimonials--card__store {
    font-size: 16px;
    color: #616161;
}

.pr-testimonials--card__stars {
    display: flex;
    gap: 4px;
}

.pr-testimonials--card__stars svg {
    width: 20px;
    height: 20px;
}

.pr-testimonials--card__quote {
    font-size: 16px;
    line-height: 26px;
    color: var(--pr-text-primary);
    max-height: 208px;
    overflow: hidden;
}

.pr-testimonials--action {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   6. PRICING SECTION (Glass Morphism)
   ========================================= */
.pr-pricing {
    background-color:  var(--pr-dark-bg);
    background-image: url("../images/product-reviews/pricing-bg.png");
        background-repeat: no-repeat;
        background-position: right top;
    padding-bottom: 100px;
}

.pr-pricing--header {
    text-align: center;
    margin-bottom: 50px;
}

.pr-pricing--header .pr-primary--title {
    color: var(--pr-text-white);
}

.pr-pricing--header .pr-primary--subtitle {
    color: var(--pr-text-white)
}

.pr-pricing--cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding-top: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pr-pricing--cards::-webkit-scrollbar {
    display: none;
}

/* Glass card (Basic & AI-Powered) */
.pr-pricing--card {
    flex: 1;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

/* Featured card (Unlimited) — yellow gradient */
.pr-pricing--card.featured {
    background: linear-gradient(
        172deg,
        rgb(255, 224, 129) 0%,
        rgb(250, 205, 44) 91.666%
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 16px 16px;
    position: relative;
    overflow: visible;
}

/* "Best values" badge — sits above the card */
.pr-pricing--badge {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    transform: translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: inherit;
    color: #303030;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 0;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    overflow: hidden;
    z-index: 0;
}

.pr-pricing--badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

/* Card text — glass cards get white text */
.pr-pricing--card__name {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: var(--pr-text-white);
    margin-bottom: 4px;
}

.pr-pricing--card.featured .pr-pricing--card__name {
    color: #303030;
}

.pr-pricing--card__price {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.pr-pricing--card__amount {
    font-weight: 900;
    font-size: 36px;
    line-height: normal;
    letter-spacing: -0.3px;
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--card__amount {
    color: #303030;
}

.pr-pricing--card__period {
    font-size: 14px;
    letter-spacing: -0.2px;
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--card__period {
    color: #303030;
}

.pr-pricing--card__desc {
    font-size: 14px;
    color: var(--pr-text-white);
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 20px;
    min-height: 40px;
}

.pr-pricing--card.featured .pr-pricing--card__desc {
    color: #616161;
    opacity: 1;
}

/* Card pricing header */
.pr-pricing--card__top {
    padding: 20px;
}

/* Comparison rows */
.pr-pricing--card__rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 0;
}

.pr-pricing--card__row {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.pr-pricing--card.featured .pr-pricing--card__row {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pr-pricing--card__row:last-child {
    border-bottom: none;
}

.pr-pricing--card__row-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--pr-text-white);
}

.pr-pricing--card__row-icon path {
    fill: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--card__row-icon {
    color: #303030;
}

.pr-pricing--card.featured .pr-pricing--card__row-icon path {
    fill: #303030;
}

.pr-pricing--card__row-label {
    flex: 1;
    font-size: 15px;
    line-height: 20px;
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--card__row-label {
    color: #303030;
}

.pr-pricing--card__row-value {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--card__row-value {
    color: #303030;
}

.pr-pricing--card__row-value--bold {
    font-weight: 700;
}

/* Divider */
.pr-pricing--card__divider {
    height: 0.5px;
    background: rgba(255, 255, 255, 0.2);
}

.pr-pricing--card.featured .pr-pricing--card__divider {
    background: #d6a012;
}

/* Features list */
.pr-pricing--card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    flex: 1;
}

.pr-pricing--features__header {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--features__header {
    color: #303030;
}

.pr-pricing--feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    line-height: 20px;
    color: var(--pr-text-white);
}

.pr-pricing--feature span {
    color: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--feature,
.pr-pricing--card.featured .pr-pricing--feature span {
    color: #303030;
}

.pr-pricing--feature__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--pr-text-white);
}

.pr-pricing--feature__icon path {
    fill: var(--pr-text-white);
}

.pr-pricing--card.featured .pr-pricing--feature__icon {
    color: #303030;
}

.pr-pricing--card.featured .pr-pricing--feature__icon path {
    fill: #303030;
}

/* Magic/AI icon — purple fill preserved */
.pr-pricing--feature__icon--magic path {
    fill: #b79dff;
}

.pr-pricing--card.featured .pr-pricing--feature__icon--magic path {
    fill: #b79dff;
}

.pr-pricing--card.featured .pr-btn--dark:hover{
    background: var(--pr-dark-bg);
    color: var(--pr-text-white);
    border-color: var(--pr-text-white);
}

/* CTA */
.pr-pricing--card__cta {
    margin-top: auto;
    padding: 16px 20px;
}

.pr-pricing--card__cta a {
    width: 100%;
}

/* Glass CTA button for Basic & AI-Powered */
.pr-btn--glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
    color: var(--pr-text-white);
    border: 2px solid transparent;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.pr-btn--glass:hover {
    background: transparent;
    color: var(--pr-text-white);
    border-color: var(--pr-text-white);
}

/* Dark CTA for featured/Unlimited card */
.pr-btn--dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.5);
    color: var(--pr-text-white);
    border: 2px solid transparent;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.pr-btn--dark:hover {
    background: transparent;
    color: var(--pr-text-white);
    border-color: var(--pr-text-white);
}

/* =========================================
   7. FAQ SECTION
   ========================================= */
.pr-faq {
    padding-bottom: 100px;
}

.pr-faq .pr-section--wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.pr-faq--left {
    flex-shrink: 0;
    width: 500px;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pr-faq--subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: var(--pr-text-primary);
}

.pr-faq--right {
    flex: 1;
}

.pr-faq__item {
    border-bottom: 1px solid #4a4a4a;
}

.pr-faq__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 16px;
}

.pr-faq__item-header__text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--pr-text-primary);
    font-weight: 400;
}

.pr-faq__item-header__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-faq__item--open .pr-faq__item-header__icon {
    transform: rotate(45deg);
}

.pr-faq__item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pr-faq__item--open .pr-faq__item-body {
    max-height: 500px;
}

.pr-faq__item-body__text {
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
}

.pr-faq__item-body__text ul {
    list-style: disc;
    padding-left: 27px;
    margin-top: 8px;
}

.pr-faq__item-body__text ul li {
    list-style-type: disc;
    margin-bottom: 4px;
}

/* =========================================
   8. LATEST UPDATES SECTION
   ========================================= */
.pr-updates {
    padding-bottom: 100px;
}

.pr-updates--header {
    text-align: center;
    margin-bottom: 40px;
}

.pr-updates--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pr-updates--action {
    text-align: center;
}

.pr-updates .blog-card__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 32px;
    color: var(--pr-text-primary);
    min-height: 64px;
}

.pr-updates .blog-card__category {
    display: none;
}

.pr-updates .blog-card__excerpt {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--pr-text-primary);
}

.pr-updates .blog-card {
    display: flex;
    flex-direction: column;
}

.pr-updates .blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pr-updates .blog-card__learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--pr-text-primary);
    margin-top: auto;
}

.pr-updates .blog-card__learn-more svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pr-updates .blog-card:hover .blog-card__learn-more {
    text-decoration: underline;
}

/* =========================================
   9. CTA SECTION
   ========================================= */
.pr-cta {
    background-color: var(--pr-light-bg);
}

.pr-cta--card {
    width: 100%;
    max-width: 1120px;
    background: linear-gradient(135deg, #0d1030 0%, #070a1d 100%);
    background-image: url("../images/whatsapp-marketing/dark-grid-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pr-cta--title {
    font-weight: 900;
    font-size: 46px;
    line-height: 64px;
    color: var(--pr-accent);
}

.pr-cta--subtitle {
    font-size: 20px;
    line-height: 32px;
    color: var(--pr-text-white);
    max-width: 600px;
}

/* =========================================
   RESPONSIVE IMG FOR DEVICES WITH SMALLER HEIGHT
   ========================================= */

@media (max-height: 680px) {
    .pr-showcase--item img {
        height: calc(100svh - 75px);
        width: auto;
    }  
}

/* =========================================
   RESPONSIVE — Tablet (992px)
   ========================================= */
@media (max-width: 992px) {
    .pr-section--container {
        padding: 80px 16px 80px;
    }

    .pr-stats.pr-section--container {
        padding-bottom: 80px;
    }

    .pr-primary--title {
        font-size: 36px;
    }

    /* Stats grid → 2 cols */
    .pr-stats--grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .pr-stats--card.card-aov {
        grid-column: 1;
        grid-row: 1;
    }
    .pr-stats--card.card-traffic {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    .pr-stats--card.card-rating {
        grid-column: 1;
        grid-row: 3;
    }
    .pr-stats--card.card-organic {
        grid-column: 2;
        grid-row: 3;
    }
    .pr-stats--stack {
        grid-column: 2;
        grid-row: 1;
    }

    /* Toolkit — horizontal tab row */
    .pr-toolkit-content--container {
        flex-direction: column;
    }

    .pr-toolkit-menu--container {
        width: 100%;
    }

    .pr-toolkit-menu--wrap {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 0;
    }

    .pr-toolkit-menu--wrap::-webkit-scrollbar {
        display: none;
    }

    .pr-toolkit-menu--item {
        flex-shrink: 0;
    }

    .pr-toolkit-menu--item__header {
        padding: 16px;
        white-space: nowrap;
    }

    .pr-toolkit-menu--item__details {
        display: none !important;
    }

    .pr-toolkit-mobile-details {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0 0;
    }

    .pr-toolkit-demo--container.mobile--hidden {
        display: block;
        width: 100%;
        min-height: auto;
        overflow: visible;
    }

    .pr-toolkit-demo--panel {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
    }

    .pr-toolkit-demo--panel.active {
        padding: 24px 24px 0;
        gap: 24px;
    }

    /* Pricing — horizontal scroll */
    .pr-pricing--cards {
        justify-content: flex-start;
    }

    .pr-pricing--card {
        min-width: 313px;
        flex-shrink: 0;
    }

    /* FAQ two-col → stacked */
    .pr-faq .pr-section--wrap {
        flex-direction: column;
        gap: 40px;
    }

    .pr-faq--left {
        width: 100%;
        position: static;
    }

    .pr-faq--left .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-faq--subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    .pr-faq--left .pr-btn--primary {
        width: fit-content;
    }

    /* Updates grid → 2 cols */
    .pr-updates--grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Showcase */
    .pr-showcase--grid {
        grid-template-columns: 1fr;
        scrollbar-width: none;
    }

    .pr-showcase--grid::-webkit-scrollbar {
        display: none;
    }

    /* Testimonial cards */
    .pr-testimonials--card {
        width: 480px;
        min-width: 480px;
    }
}

/* =========================================
   RESPONSIVE — Mobile (768px)
   ========================================= */
@media (max-width: 768px) {
    .pr-section--container {
        padding: 80px 16px 0;
    }

    .pr-primary--title {
        font-size: 30px;
    }

    .pr-primary--subtitle {
        font-size: 17px;
    }

    /* Hero */
    .pr-hero {
        padding-top: 160px;

        .pr-hero--wrap {
            align-items: flex-start;
        }
    }

    .pr-hero--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-hero--subtitle {
        font-size: 18px;
        line-height: 30px;
    }

    .pr-hero--logo {
        height: 44px;
    }

    /* Stats */
    .pr-stats .pr-primary--title {
        font-size: 46px;
    }

    .pr-stats .pr-primary--subtitle {
        font-size: 20px;
    }

    .pr-stats--header {
        text-align: left;
    }

    .pr-stats--grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .pr-stats--card.card-aov,
    .pr-stats--card.card-traffic,
    .pr-stats--card.card-rating,
    .pr-stats--card.card-organic,
    .pr-stats--stack {
        grid-column: 1;
        grid-row: auto;
    }

    .pr-stats--card.card-traffic {
        flex-direction: column;
        order: -1;
    }

    .pr-stats--card__number {
        font-size: 52px;
    }

    .pr-stats--card__row-layout .pr-stats--card__number {
        font-size: 40px;
    }

    .pr-stats--image {
        width: 100%;
        height: auto;
    }

    /* Toolkit */
    .pr-toolkit {
        padding-bottom: 80px;
    }

    .pr-toolkit--header .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    /* Pricing */
    .pr-pricing {
        background-size: 900px auto;
        background-position: 80% 38%;
        padding-bottom: 80px;
    }

    .pr-pricing--header .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

     .pr-pricing--header .pr-primary--subtitle{
        font-size: 20px;
     }

    /* Testimonials */
    .pr-testimonials--header .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-testimonials--header .pr-primary--subtitle {
        font-size: 20px;
        line-height: 36px;
    }

    /* Testimonials — smaller cards on mobile */
    .pr-testimonials--card {
        width: 270px;
        min-width: 270px;
        padding: 24px;
    }

    .pr-testimonials--scroll {
        animation-duration: 40s;
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: repeat(5, 270px);
    }
    

    .pr-testimonials--card__quote {
        height: 208px;
    }

    .pr-testimonials.pr-section--container {
        padding-bottom: 80px;
    }

    /* Updates */
    .pr-updates.pr-section--container {
        padding-bottom: 80px;
    }

    .pr-updates--header .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-updates--grid {
        grid-template-columns: 1fr;
    }

    .pr-updates .blog-card__title {
        min-height: auto;
    }

    /* CTA */
    .pr-cta--card {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .pr-cta--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-cta--subtitle {
        font-size: 20px;
        line-height: 32px;
    }

    /* FAQ */
    .pr-faq {
        padding-bottom: 80px;
    }

    .pr-faq--left .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-faq--left .pr-faq--subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    /* Showcase */
    .pr-showcase {
        padding-bottom: 80px;
    }

    .pr-showcase .pr-section--wrap {
        overflow: hidden;
    }

    .pr-showcase--header {
        text-align: left;
        align-items: flex-start;
    }

    .pr-showcase--header .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-showcase--header .pr-primary--subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .pr-showcase--grid {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
    }

    .pr-showcase--item {
        position: relative;
        top: auto;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        animation: none;
        border-radius: 6px;
    }
    
    .pr-showcase--item img{
        width: 100%;
        height: auto;
    }

    /* Toolkit */
    .pr-toolkit--header,
    .pr-stats--header,
    .pr-showcase--header,
    .pr-testimonials--header,
    .pr-pricing--header,
    .pr-updates--header {
        margin-bottom: 30px;
    }
}

/* =========================================
   RESPONSIVE — Small Mobile (490px)
   ========================================= */
@media (max-width: 490px) {
    .pr-hero--title {
        font-size: 46px;
        line-height: 64px;
        text-align: start;
    }

    .pr-hero--subtitle {
        font-size: 18px;
        line-height: 30px;
        text-align: start;
    }

    .pr-hero--buttons {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .pr-hero--buttons .pr-btn--primary,
    .pr-hero--buttons .pr-btn--white-outline {
        width: 100%;
    }

    .pr-hero--logo {
        height: 40px;
    }

    .pr-primary--title {
        font-size: 26px;
    }

    .pr-stats--card__number {
        font-size: 52px;
    }

    .pr-stats--card__row-layout .pr-stats--card__number {
        font-size: 40px;
    }

    .pr-pricing--card__amount {
        font-size: 30px;
    }

    .pr-pricing--card__name {
        font-size: 24px;
    }

    .pr-btn--glass,
    .pr-btn--dark {
        font-size: 16px;
        height: 48px;
        padding: 0 24px;
    }

    .pr-cta--title {
        font-size: 46px;
        line-height: 64px;
    }

    .pr-cta--subtitle {
        font-size: 20px;
        line-height: 32px;
    }

    .pr-btn--primary,
    .pr-btn--outline,
    .pr-btn--white-outline {
        font-size: 16px;
        height: 48px;
        padding: 0 24px;
    }

    /* Keep 46px titles on small mobile for all sections */
    .pr-stats .pr-primary--title,
    .pr-toolkit--header .pr-primary--title,
    .pr-showcase--header .pr-primary--title,
    .pr-testimonials--header .pr-primary--title,
    .pr-pricing--header .pr-primary--title,
    .pr-updates--header .pr-primary--title,
    .pr-faq--left .pr-primary--title {
        font-size: 46px;
        line-height: 64px;
    }
}

@keyframes pr-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 24px));
    }
}

@keyframes scrollAnimation {
    from {
        opacity: 0.95;
        scale: 0.9;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
