:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #C59B27;
    --secondary-color: #D97736; /* Copper */
    --secondary-dark: #B45309;
    --background-color: #1A0F0A; /* Deep Chocolate Background */
    --card-bg: #2D1A13; /* Darker Chocolate for Cards */
    --text-color: #F8E7D5; /* Cream Text */
    --text-light: #FDE4C3; /* Off-white Gold */
    --white: #2D1A13; /* Consistent with card-bg */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-main: 'Poppins', sans-serif;
    --text-dark: #1A0F0A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: #1A0F0A;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.container {
    background-color: var(--background-color);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding-bottom: 80px;
    animation: fadeIn 0.8s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    /* Bolder headings */
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 1rem;
}

h1 {
    animation: slideInDown 0.8s ease-out;
}

h2 {
    animation: slideInDown 1s ease-out;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.text-price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    animation: popIn 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    background: linear-gradient(to bottom, #F7E5A9, #D4AF37);
    color: var(--text-dark);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 0 #997A2E, 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s, box-shadow 0.1s;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    animation: pulseBtn 2s infinite;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #997A2E, 0 3px 5px rgba(0, 0, 0, 0.3);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 0 #997A2E, 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Header/Hero */
.hero {
    background: linear-gradient(180deg, #1A0F0A 0%, #2D1A13 100%);
    padding: 3rem 1.5rem 3.5rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Price reveal box */
.price-box {
    background: linear-gradient(135deg, #1A0F0A, #2D1A13);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1rem;
    margin: 0 0 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.price-box .text-small {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.price-box .text-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 0.2rem;
}

.price-box-final {
    margin-bottom: 2rem;
}

.price-value-final {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    /* Prevent wrapping as requested */
}

/* High-Intensity Scarcity Urgency V4 */
.urgency-trigger-box {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    animation: intensePulse 4s infinite ease-in-out;
}

.urgency-header-v4 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-progress-container {
    width: 100%;
    height: 10px;
    background: #1A0F0A;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.urgency-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 92%;
    background-color: #D32F2F;
    border-radius: 10px;
    animation: progressFlow 2s ease-in-out infinite;
}

.urgency-footer-v4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color);
}

.urgency-footer-v4 span {
    color: #D32F2F;
    font-weight: 900;
}

@keyframes progressFlow {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

@keyframes intensePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(211, 47, 47, 0.08);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(211, 47, 47, 0.15);
    }
}

.badge {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}

/* Hero subtitle line */
.hero-subtitle-line {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0.4rem 0 1.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-subtitle-line::before,
.hero-subtitle-line::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Hero headline block */
.hero-headline-block {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.hero-title-cont {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0.2rem 0 0.4rem;
    animation: none;
}

/* Money amounts row */
.hero-amounts-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.5rem 0;
    white-space: nowrap;
    /* Force single line */
}

.hero-amount {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    /* Fluid font size to prevent overflow */
    font-weight: 900;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--white), var(--background-color));
    border: 2px solid var(--primary-hover);
    border-radius: 14px;
    padding: 0.3rem 0.6rem;
    /* Tighter padding */
    line-height: 1.1;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

.hero-amount--animate-1 {
    animation: smoothFloat 3s ease-in-out infinite;
}

.hero-amount--animate-2 {
    animation: smoothFloat 3.5s ease-in-out infinite 0.5s;
}

@keyframes smoothFloat {


    0%,
    100% {
        transform: translateY(0);
    }


    50% {
        transform: translateY(-8px);
    }
}

.hero-amount-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Hero pills row */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.5rem 0 1.8rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pill {
    background: var(--background-color);
    color: var(--text-light);
    border: 1px solid var(--secondary-dark);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.hero-pill:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-pill i {
    color: var(--primary-color);
    font-size: 0.82rem;
}

/* Objection-breaker below price */
.objection-break {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    background: var(--white);
    border: 1.5px solid var(--primary-hover);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    margin: 0.8rem auto 0;
    white-space: nowrap;
}

/* FOMO block */
.fomo-block {
    background: linear-gradient(135deg, var(--white), var(--background-color));
    border: 2px solid var(--secondary-dark);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem;
    text-align: center;
    margin: 1rem 0 0.5rem;
    animation: fadeInUp 0.7s ease-out;
}

.fomo-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.fomo-main {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.fomo-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.fomo-ask {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Feature card with prices */
.feature-item-priced {
    justify-content: space-between;
}

.feature-label {
    flex: 1;
}

.feature-price {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    white-space: nowrap;
    margin-left: 0.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
}

.feature-total-crossed s {
    color: #D32F2F;
    font-size: 1rem;
}

.feature-card-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.feature-now-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-light);
}

/* Features Card & List */
.feature-card {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card-header {
    background: linear-gradient(to right, #997A2E, #D4AF37);
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.feature-item:last-child {
    margin-bottom: 0;
}

/* Value Stack / Price Anchoring */
.value-stack {
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1rem;
    margin: 1.5rem 0 0.5rem;
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
}

.value-stack-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-stack-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.value-stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-color);
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.value-stack-price {
    font-weight: 700;
    color: var(--text-light);
}

.value-stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
    padding-top: 0.6rem;
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-color);
}

.value-stack-total-price s {
    color: var(--text-light);
    font-size: 1.1rem;
    text-decoration-color: var(--text-light);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Utility Classes for Snippets */
.section-no-bg {
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.calculator-card {
    border-bottom: 8px solid rgba(61, 29, 19, 0.1) !important;
    box-shadow: var(--shadow-lg) !important;
}

.math-box {
    border: 2px solid rgba(41, 182, 246, 0.2) !important;
}

.rotate-neg-1 {
    transform: rotate(-1deg);
}

.font-display {
    font-family: var(--font-main);
    font-weight: 800;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.opacity-10 {
    background-color: rgba(61, 29, 19, 0.1);
}

.opacity-20 {
    background-color: rgba(255, 193, 7, 0.2);
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.items-end {
    align-items: flex-end;
}

.max-w-\[260px\] {
    max-width: 260px;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-16 {
    width: 4rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.rounded-\[2rem\] {
    border-radius: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-black {
    font-weight: 900;
}

.gap-3 {
    gap: 0.75rem;
}


.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(5) {
    animation-delay: 1.0s;
}

.feature-icon {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Section Styling */
.section {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    margin: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 1.6rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Calculator/Math Section Modern */
.calculator-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    margin: 1rem;
}

.calculator-modern .header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-modern .math-box-modern {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.calculator-modern .badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-hover);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.calculator-modern .math-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.calculator-modern .math-row-modern span:last-child {
    font-weight: 800;
    color: var(--text-light);
}

.calculator-modern .result-box {
    text-align: center;
    margin-top: 1.5rem;
}

.calculator-modern .total-vivid {
    background: var(--background-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-sm);
    display: inline-block;
    width: 100%;
    color: var(--text-light);
}

.calculator-modern .profit-tag {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
    transform: rotate(-1deg);
}

.calculator-modern .feature-item-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.calculator-modern .feature-icon-modern {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.calculator-modern .footer-quote {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.calculator-modern {
    animation: fadeIn 1.2s ease-out;
}


/* Support Section Premium Refinement */
.support-section-premium {
    padding: 3.5rem 1.5rem;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.support-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.support-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 420px;
    margin: 1.5rem auto 0;
}

.support-card-v2 {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.support-card-v2:hover {
    transform: translateY(-5px);
    background: #1A0F0A;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.support-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.support-card-v2:hover .support-icon-v2 {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Colors */
.icon-whatsapp,
.icon-calc,
.icon-sales,
.icon-truck {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.support-card-v2 h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.support-card-v2 .support-text {
    font-size: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #B3E5FC;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -8.5px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #FFC107;
    border-radius: 50%;
    border: 3px solid #FFF;
    box-shadow: 0 0 0 3px #FFC107;
    transition: background-color 0.3s;
}

.timeline-item:hover .timeline-marker {
    background-color: #FF6F00;
    box-shadow: 0 0 0 4px #FF6F00;
}

/* Bonus Card Premium */
.bonus-premium {
    background: linear-gradient(135deg, #2c3e50, #000000);
    padding: 3px;
    /* for gradient border effect */
    border-radius: var(--radius-xl);
    position: relative;
    margin: 2rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.bonus-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FFD700, #FFEA00, #FFD700);
    z-index: 0;
    animation: borderRotate 4s linear infinite;
    opacity: 0.8;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.bonus-content-inner {
    background: #1a1a1a;
    border-radius: calc(var(--radius-xl) - 3px);
    /* account for padding */
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.bonus-icon-large {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

.bonus-title-premium {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, #FFF, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bonus-desc-premium {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-highlight {
    color: #FFD700;
    font-weight: 700;
    border-bottom: 1px dashed #FFD700;
}

.btn-bonus {
    background: linear-gradient(to right, #FFD700, #FDB931);
    color: #000;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #FFF8E1;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(to right, #FDB931, #FFD700);
}

/* Social Proof Carousel */
/* Social Proof Carousel Premium Re-styling */
.section-carousel {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1A13 100%);
    margin-bottom: 0;
    /* Merge with previous section for flow */
    position: relative;
    overflow: visible;
    /* Allow badges to pop out if needed */
}

.section-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.carousel-header {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.section-title-white {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.section-subtitle-white {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.4;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    /* Crucial for badges */
    gap: 1rem;
    padding: 1.5rem 1.5rem 2rem 2.5rem;
    /* Increased top padding to 1.5rem for badges */
    /* Left padding matches header */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card-modern {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--card-bg);
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
}

/* Enhanced Social Proof Components */
.aggregate-social-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.aggregate-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.aggregate-text {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Aggressive Proof Additions */
.big-stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    animation: popIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.big-number-highlight {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.2rem;
}

.big-number-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
    border: 2px solid #fff;
    z-index: 10;
    transform: rotate(5deg);
    animation: intensePulse 2s infinite ease-in-out;
}

.star-rating {
    color: #FFC107;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 2px;
}

.verified-badge {
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.verified-badge i {
    font-size: 0.7rem;
}

.testimonial-group {
    position: relative;
}

/* WhatsApp Style Testimonial */
.whatsapp-testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: #e5ddd5;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    background: #075e54;
    color: #fff;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-back-section {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
}

.whatsapp-back-section i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-avatar {
    width: 36px;
    height: 36px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    overflow: hidden;
}

.whatsapp-user-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2px;
}

.whatsapp-user-info p {
    margin-bottom: 0;
    /* Reset global paragraph margin */
}

.whatsapp-user-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    color: #FFFFFF;
    margin-bottom: 0 !important;
    /* Force reset */
}

.whatsapp-status {
    font-size: 0.7rem;
    color: #E0E0E0;
    opacity: 0.9;
    line-height: 1.1;
    margin-top: -1px;
    /* Micro-adjustment for visual centering */
}

.whatsapp-actions {
    display: flex;
    gap: 1.1rem;
    /* Standard WhatsApp icon gap */
    margin-left: auto;
    font-size: 0.9rem;
    padding-right: 0.2rem;
}

.whatsapp-chat-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    min-height: 180px;
}

.whatsapp-bubble {
    background: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    max-width: 85%;
    align-self: flex-start;
    position: relative;
    font-size: 0.75rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.1);
}

.whatsapp-bubble.sent {
    background: #dcf8c6;
    align-self: flex-end;
    border-radius: 0.5rem 0 0.5rem 0.5rem;
}

.whatsapp-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.whatsapp-bubble.sent::before {
    left: auto;
    right: -8px;
    border-width: 8px 8px 0 0;
    border-color: #dcf8c6 transparent transparent transparent;
}

.whatsapp-time {
    font-size: 0.6rem;
    color: #999;
    text-align: right;
    margin-top: 2px;
}

.whatsapp-footer {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-input-sim {
    background: #fff;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    color: #999;
    flex-grow: 1;
}

.whatsapp-send-icon {
    color: #075e54;
    font-size: 1.1rem;
}

.whatsapp-result-footer {
    background-color: var(--background-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* margin-top: 0.75rem; - Removed in favor of card margin-bottom */
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.testimonial-group {
    flex: 0 0 280px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-group .whatsapp-testimonial-card {
    flex: 0 0 auto;
    /* Allow badge to take space below */
    margin-bottom: 1rem;
    /* Clear separation as requested */
}

/* Upsell Specific Styles - Premium Overhaul */
.upsell-progress {
    background: var(--white);
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #997A2E, #D4AF37);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    animation: progressGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.upsell-header {
    background: linear-gradient(to bottom, #1A0F0A, #2D1A13);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.upsell-headline {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
}

.upsell-subheadline {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    max-width: 90%;
    margin: 0 auto;
}

.upsell-vsl-mockup {
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
}

.benefit-pill {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-pill i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.offer-box-premium {
    background: linear-gradient(145deg, #2D1A13, #1A0F0A);
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    margin: 2rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.exclusive-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D32F2F;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    animation: heartBeat 2s infinite;
}

.offer-price-container {
    margin: 1.5rem 0;
}

.offer-price-old {
    color: var(--text-color);
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 600;
}

.offer-price-new {
    color: var(--primary-color);
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 1;
    margin: 5px 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.people-watching {
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.no-thanks-link {
    display: block;
    text-align: center;
    color: #9e9e9e;
    text-decoration: none;
    margin-top: 2rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
    opacity: 0.6;
}

.no-thanks-link:hover {
    color: #D32F2F;
    opacity: 1;
}

@keyframes heartBeat {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.avatar-modern {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    /* Added to clip images */
}

.avatar-modern img,
.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.user-loc {
    font-size: 0.65rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0;
}

.card-body {
    position: relative;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quote-mark {
    position: absolute;
    top: -0.5rem;
    left: -0.25rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 10;
    padding-left: 0.5rem;
    margin-bottom: 0;
}

.card-footer-modern {
    margin-top: auto;
    background-color: var(--background-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.footer-label {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer-value {
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Footer/Sticky Details */
.sticky-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    background-color: rgba(45, 26, 19, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border: 2px solid var(--primary-color);
    animation: slideUp 0.5s ease-out;
}

.sticky-text {
    font-weight: 800;
    padding-left: 0.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.guarantee-badge {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-color);
    border-radius: var(--radius-lg);
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 0.5rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-content {
    display: none;
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.accordion-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Animations Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Refinement */
.hero-title {
    font-size: 1.8rem;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-p {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--primary-color);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}


/* Opacity and UI Helpers */
.bg-opacity-20 {
    background-color: rgba(255, 193, 7, 0.2);
}

.bg-opacity-10 {
    background-color: rgba(255, 193, 7, 0.1);
}

.border-opacity-10 {
    border-color: rgba(61, 29, 19, 0.1);
}

.border-opacity-20 {
    border-color: rgba(41, 182, 246, 0.2);
}

.text-opacity-70 {
    color: rgba(248, 231, 213, 0.7);
}

.text-opacity-80 {
    color: rgba(248, 231, 213, 0.8);
}

.text-opacity-60 {
    color: rgba(248, 231, 213, 0.6);
}

.text-opacity-50 {
    color: rgba(248, 231, 213, 0.5);
}

.shadow-pop-br {
    animation: shadow-pop-br 0.3s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@keyframes shadow-pop-br {
    0% {
        box-shadow: 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00;
        transform: translateX(0) translateY(0);
    }

    100% {
        box-shadow: 1px 1px #FFAB00, 2px 2px #FFAB00, 3px 3px #FFAB00, 4px 4px #FFAB00, 5px 5px #FFAB00, 6px 6px #FFAB00, 7px 7px #FFAB00, 8px 8px #FFAB00;
        transform: translateX(-4px) translateY(-4px);
    }
}


.highlight-money {
    display: none;
}

/* Custom Highlight Money Snippet Classes */
.relative-container {
    position: relative;
}

.inline-block {
    display: inline-block;
}

.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.rotate-neg-2 {
    transform: rotate(-2deg);
}

.absolute-inset {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-gold-circle {
    background-color: #FFC107;
}

.rounded-full {
    border-radius: 9999px;
}

.scale-110 {
    transform: scale(1.1);
}

.opacity-40 {
    opacity: 0.4;
}

.relative-money {
    position: relative;
}

.font-display-money {
    font-family: var(--font-main);
    font-weight: 900;
}

.text-6xl {
    font-size: 3.5rem;
    line-height: 1;
}

.text-blue-money {
    color: #29B6F6;
}

.drop-shadow-choco {
    filter: drop-shadow(2px 2px 0 #3D1D13);
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.animate-char {
    display: inline-block;
    animation: bounceChar 1.5s ease-in-out infinite;
}

@keyframes bounceChar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Final CTA Box Custom Design */
.cta-final-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: transparent;
}

.cta-title-final {
    font-size: 2.2rem;
    /* Matches "Sua Páscoa Lucrativa" */
    line-height: 1.1;
    color: var(--text-light);
    font-weight: 900;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.cta-title-final .highlight-blue {
    color: var(--primary-color);
    /* Matches "começa aqui." */
    display: block;
    margin-top: 0.2rem;
}

.price-box-final {
    background: linear-gradient(135deg, #1A0F0A, #2D1A13);
    border: 2px solid var(--primary-color);
    border-radius: 2rem;
    padding: 1.5rem 3rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    min-width: 280px;
}

.price-label-final {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    margin-bottom: 0;
}

.price-value-final {
    font-size: 3.5rem;
    /* Large R$ 37,90 */
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-top: -5px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.btn-final-cta {
    display: inline-block;
    background: linear-gradient(to bottom, #F7E5A9, #D4AF37);
    color: var(--text-dark);
    font-weight: 900;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 0 #997A2E, 0 10px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
    transition: transform 0.1s, box-shadow 0.1s;
    animation: pulseBtn 2s infinite;
}

.btn-final-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #997A2E, 0 8px 15px rgba(0, 0, 0, 0.4);
}

.btn-final-cta:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #997A2E, 0 3px 5px rgba(0, 0, 0, 0.3);
}

.btn-final-cta i {
    margin-left: 0.5rem;
    color: var(--text-dark);
}

.security-note-final {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


/* Missing animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes progressGrow {
    from {
        width: 0%;
    }

    to {
        width: 85%;
    }
}

/* Utility class used in index.html */
.text-\[10px\] {
    font-size: 10px;
}

/* HIGH FIDELITY MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
        background: #1A0F0A;
    }

    .container {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        padding-bottom: 90px;
    }

    h1.hero-title {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .text-price {
        font-size: 2.2rem;
        /* Reduced to prevent escaping */
        word-break: keep-all;
    }

    .price-box {
        padding: 1rem;
        /* Compact padding for mobile */
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .objection-break {
        white-space: normal;
        display: block;
        text-align: center;
        padding: 0.8rem;
        border-radius: 12px;
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 1rem 0;
    }


    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Stack Support Grid on Mobile */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem;
    }

    .support-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        font-size: 1.8rem;
    }

    .support-card h4 {
        margin-bottom: 0.2rem;
    }

    /* Calculator Adjustments */
    .calculator-modern {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .calculator-modern .header h2 {
        font-size: 1.3rem;
    }

    .math-row-modern {
        font-size: 0.9rem;
    }

    .total-vivid .font-display {
        font-size: 1.1rem;
    }

    .text-price {
        font-size: 2rem;
    }

    .price-value-final {
        font-size: 2.8rem;
        /* Scale down final price to fit small screens */
    }

    /* Big Stats Mobile Fixes */
    .big-number-highlight {
        font-size: 2.5rem;
    }

    .big-number-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .aggregate-text {
        font-size: 0.8rem;
    }

    /* Feature List Mobile */
    .feature-card {
        margin: 1.5rem 0;
        border-radius: 1.5rem;
    }

    .feature-list {
        padding: 1.5rem 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 0.8rem;
    }

    /* FAQ text size */
    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Sticky Footer */
    .sticky-footer {
        width: 94%;
        padding: 0.6rem 1rem;
        bottom: 15px;
    }

    .sticky-text {
        font-size: 0.8rem;
    }

    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-amount {
        font-size: 1.5rem;
        /* Further scale down for very small screens */
        padding: 0.2rem 0.4rem;
    }

    .hero-amounts-row {
        gap: 0.4rem;
    }

    .math-row-modern {
        flex-direction: row;
        /* Keep row but adjust size */
        font-size: 0.8rem;
    }

    .total-vivid .font-display {
        font-size: 1rem;
    }

    .sticky-footer {
        flex-direction: column;
        border-radius: 20px;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .btn-small {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   EXPERT SECTION — Semi Apresentação Premium v2
   ============================================================ */

/* ─── Wrapper & Accent Bar ─────────────────────────────────── */
.expert-section {
    margin: 0 0 1.5rem;
    padding: 0 1rem;
}

.expert-accent-bar {
    background: linear-gradient(90deg, #3D1A10 0%, #6B3520 40%, #3D1A10 100%);
    border-radius: 16px 16px 0 0;
    padding: 0.7rem 1.2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
}

.expert-accent-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Card wrapper ──────────────────────────────────────────── */
.expert-inner {
    background: linear-gradient(160deg, #2D1A13 0%, #1A0F0A 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ─── Avatar Column ─────────────────────────────────────────── */
.expert-avatar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(212, 175, 55, 0.03) 60%,
            transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
}

/* Glow ring around avatar */
.expert-glow-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #D4AF37, #997A2E, #F7E5A9, #D4AF37);
    box-shadow:
        0 0 0 5px rgba(212, 175, 55, 0.15),
        0 0 25px rgba(212, 175, 55, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: expertRingPulse 3s ease-in-out infinite;
}

@keyframes expertRingPulse {

    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.15), 0 0 25px rgba(212, 175, 55, 0.2), 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.35), 0 8px 20px rgba(0, 0, 0, 0.3);
    }
}

.expert-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.expert-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.25rem;
    text-align: center;
    letter-spacing: -0.2px;
}

.expert-instagram {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.7rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.expert-instagram i {
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stars */
.expert-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 0.8rem;
}

.expert-stars i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.expert-rating-text {
    font-size: 0.78rem;
    font-weight: 800;
    color: #7B5020;
    margin-left: 4px;
}

/* Credential chips */
.expert-chips {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    max-width: 180px;
}

.expert-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #1A0F0A;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 0.28rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #F8E7D5;
}

.expert-chip i {
    color: #D4AF37;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ─── Copy Column ───────────────────────────────────────────── */
.expert-copy-col {
    padding: 1.8rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Headline block */
.expert-headline-block {
    margin-bottom: 1.2rem;
}

.expert-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #997A2E;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 2px;
    margin-bottom: 0.6rem;
}

.expert-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    animation: none;
}

.expert-hook {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    border-left: 3px solid #D4AF37;
    padding-left: 0.75rem;
}

.expert-hook strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* Story block */
.expert-story-block {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expert-story-block p {
    font-size: 0.86rem;
    color: var(--text-color);
    line-height: 1.65;
    margin: 0;
}

.expert-story-block strong {
    color: var(--text-light);
    font-weight: 800;
}

.expert-strike {
    text-decoration: line-through;
    color: #FF5252;
    font-weight: 600;
}

.expert-turning-point {
    background: rgba(212, 175, 55, 0.12);
    border-left: 3px solid #D4AF37;
    border-radius: 0 8px 8px 0;
    padding: 0.5rem 0.75rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

/* Metrics row */
.expert-metrics {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #2D1A13, #3D2318);
    border-radius: 14px;
    padding: 1rem 0.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.expert-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    position: relative;
}

.expert-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(212, 175, 55, 0.25);
}

.expert-metric-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    letter-spacing: -0.5px;
}

.expert-metric-plus {
    font-size: 0.9rem;
    vertical-align: super;
    color: #F7E5A9;
}

.expert-metric-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(248, 231, 213, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}

/* Teaches block */
.expert-teaches-block {
    margin-bottom: 1.2rem;
}

.expert-teaches-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2D1A13;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.6rem;
}

.expert-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.expert-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.expert-bullets li i {
    color: #D4AF37;
    font-size: 0.82rem;
    margin-top: 0.18rem;
    flex-shrink: 0;
}

.expert-bullets li em {
    font-style: italic;
    font-weight: 700;
    color: var(--primary-color);
}

/* Close block */
.expert-close-block {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.2rem;
    border-left: 4px solid #D4AF37;
}

.expert-close-block p {
    font-size: 0.86rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 0.3rem;
}

.expert-close-block p:last-of-type {
    margin-bottom: 0.5rem;
}

.expert-close-block strong {
    color: var(--text-light);
    font-weight: 800;
}

.expert-decision {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #D4AF37;
    letter-spacing: -0.8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.expert-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.05rem 1.5rem;
    background: linear-gradient(to bottom, #F7E5A9 0%, #D4AF37 60%, #B8942E 100%);
    color: #2D1A13;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow:
        0 6px 0 #7A5A1A,
        0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.12s, box-shadow 0.12s;
    font-family: var(--font-main);
    animation: expertBtnPulse 2.5s ease-in-out infinite;
}

@keyframes expertBtnPulse {

    0%,
    100% {
        box-shadow: 0 6px 0 #7A5A1A, 0 10px 24px rgba(0, 0, 0, 0.25);
    }

    50% {
        box-shadow: 0 6px 0 #7A5A1A, 0 14px 32px rgba(212, 175, 55, 0.35);
    }
}

.expert-cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #7A5A1A, 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ─── Fade-in scroll animation ──────────────────────────────── */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Desktop: side-by-side layout ─────────────────────────── */
@media (min-width: 520px) {
    .expert-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .expert-avatar-col {
        min-width: 175px;
        width: 175px;
        border-bottom: none;
        border-right: 1px solid rgba(212, 175, 55, 0.18);
        padding: 2rem 1rem 1.5rem;
    }

    .expert-chips {
        max-width: unset;
    }

    .expert-copy-col {
        flex: 1;
        padding: 2rem 1.6rem;
    }
}

/* ─── Mobile explicit overrides ─────────────────────────────── */
@media (max-width: 519px) {
    .expert-glow-ring {
        width: 110px;
        height: 110px;
    }

    .expert-title {
        font-size: 1rem;
    }

    .expert-metrics {
        padding: 0.9rem 0.5rem;
    }

    .expert-metric-num {
        font-size: 1.05rem;
    }

    .expert-cta-btn {
        font-size: 0.78rem;
        padding: 0.95rem 1rem;
    }
}

/* ============================================================
   PURCHASE NOTIFICATIONS — Minimal Toast
   ============================================================ */

#notif-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    width: min(340px, calc(100vw - 40px));
}

.pn-toast {
    pointer-events: all;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pn-toast.pn-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pn-toast.pn-hide {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

.pn-accent-bar {
    width: 3px;
    align-self: stretch;
    flex-shrink: 0;
}

.pn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 10px 8px 10px 10px;
}

.pn-body {
    flex: 1;
    min-width: 0;
    padding: 8px 32px 8px 0;
}

.pn-name {
    font-size: 0.74rem;
    font-weight: 800;
    color: #1C0F08;
    margin: 0 0 2px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.pn-city-line {
    font-size: 0.62rem;
    font-weight: 500;
    color: #9E9E9E;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 2px;
    line-height: 1.2;
}

.pn-msg {
    font-size: 0.68rem;
    font-weight: 500;
    color: #5C3A1E;
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.pn-close {
    position: absolute;
    top: 6px;
    right: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.6rem;
    color: #BDBDBD;
    line-height: 1;
    padding: 2px;
    transition: color 0.15s;
}

.pn-close:hover {
    color: #616161;
}

.pn-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
}

.pn-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #B8942E, #D4AF37);
}

/* ── Toast card ─────────────────────────────────────────────── */
.pn-toast {
    pointer-events: all;
    background: #FFFDF8;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.14),
        0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    overflow: hidden;
    /* Entrance state */
    opacity: 0;
    transform: translateX(115%) scale(0.92);
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pn-toast.pn-show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.pn-toast.pn-hide {
    opacity: 0;
    transform: translateX(115%) scale(0.92);
    transition:
        opacity 0.3s ease-in,
        transform 0.3s ease-in;
}

/* ── Left accent bar ────────────────────────────────────────── */
.pn-accent-bar {
    width: 4px;
    flex-shrink: 0;
    border-radius: 16px 0 0 16px;
    background: #D4AF37;
    /* overridden inline */
}

/* ── Avatar column ──────────────────────────────────────────── */
.pn-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 10px 0 10px 10px;
}

.pn-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pn-verified {
    position: absolute;
    bottom: 8px;
    right: -2px;
    width: 13px;
    height: 13px;
    background: #22A45D;
    border-radius: 50%;
    border: 2px solid #FFFDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* ── Body content ───────────────────────────────────────────── */
.pn-body {
    flex: 1;
    min-width: 0;
    padding: 9px 8px 9px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Top row: badge + time */
.pn-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.pn-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #BBF7D0;
    border-radius: 50px;
    padding: 1px 6px;
    font-size: 0.56rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.pn-badge i {
    font-size: 0.55rem;
}

.pn-time {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.56rem;
    font-weight: 600;
    color: #BDBDBD;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.pn-time i {
    font-size: 0.58rem;
}

/* Name */
.pn-name {
    font-size: 0.76rem;
    font-weight: 800;
    color: #1C0F08;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Action message */
.pn-msg {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4A2A12;
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Footer row: product + city */
.pn-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: 1px;
}

.pn-product {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(to right, #7A5A1A, #D4AF37);
    color: #fff;
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 0.54rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.pn-product i {
    font-size: 0.56rem;
}

.pn-city {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.56rem;
    font-weight: 600;
    color: #9E9E9E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Poppins', sans-serif;
}

.pn-city i {
    color: #D4AF37;
    font-size: 0.58rem;
    flex-shrink: 0;
}

/* ── Close button ───────────────────────────────────────────── */
.pn-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.6rem;
    color: #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.15s, color 0.15s;
    font-family: sans-serif;
}

.pn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #616161;
}

/* ── Bottom progress bar ────────────────────────────────────── */
.pn-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(212, 175, 55, 0.1);
}

.pn-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #B8942E, #D4AF37, #F7E5A9);
}

/* ============================================================
   PIX MODAL CHECKOUT + ORDER BUMPS
   ============================================================ */

.pix-hidden {
    display: none !important;
}

.pix-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1.5rem 1rem;
}

.pix-modal {
    background: #1A0F0A;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.pix-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.2s;
}

.pix-modal-close:hover {
    background: var(--primary-color);
    color: #1A0F0A;
}

.pix-modal-close i {
    font-size: 0.9rem;
}

.pix-modal-header {
    padding: 2rem 1.8rem 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.pix-modal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pix-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.pix-modal-sub {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.7;
}

.pix-modal-body {
    padding: 1.2rem 1.8rem 1.8rem;
}

.pix-summary-card {
    background: linear-gradient(135deg, #1a0f0a, #2d1a13);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    color: var(--text-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.2rem;
}

.pix-summary-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pix-summary-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 800;
}

.pix-summary-title strong {
    font-size: 1rem;
    font-weight: 800;
}

.pix-summary-price {
    text-align: right;
}

.pix-summary-old {
    display: block;
    font-size: 0.8rem;
    color: rgba(248, 231, 213, 0.4);
    text-decoration: line-through;
}

.pix-summary-new {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.pix-summary-note {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-color);
    opacity: 0.6;
}

.pix-bumps-wrapper {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 18px;
    padding: 1rem 1rem 0.4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1.2rem;
}

.pix-bumps-header h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.pix-bumps-header p {
    font-size: 0.8rem;
    color: var(--text-color);
    margin-bottom: 0.7rem;
    opacity: 0.7;
}

.pix-badge-offer {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pix-bumps-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.pix-bump-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #1A0F0A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.pix-bump-card:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.pix-bump-left {
    display: flex;
    align-items: flex-start;
}

.pix-bump-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    accent-color: var(--primary-color);
}

.pix-bump-main h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0;
}

.pix-bump-description {
    font-size: 0.8rem;
    color: var(--text-color);
    margin: 0.2rem 0 0.4rem;
    opacity: 0.8;
}

.pix-badge-small {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pix-bump-prices {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
}

.pix-bump-old {
    text-decoration: line-through;
    color: #b0bec5;
}

.pix-bump-new {
    font-weight: 800;
    color: var(--primary-color);
}

.pix-bump-image-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-bump-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pix-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.6);
    margin-bottom: 1rem;
}

.pix-total-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pix-total-note {
    font-size: 0.78rem;
    color: #8d6e63;
    margin: 0.1rem 0 0;
}

.pix-total-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
}

.pix-generate-btn {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(to bottom, #f7e5a9, #d4af37);
    color: #2d1a13;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 0 #997a2e, 0 10px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.1rem;
}

.pix-generate-btn:disabled {
    opacity: 0.75;
    cursor: default;
    box-shadow: 0 4px 0 #997a2e, 0 6px 12px rgba(0, 0, 0, 0.3);
}

.pix-generate-sub {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: none;
}

.pix-payment-section {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.pix-payment-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.pix-payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.pix-qr-frame {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
}

.pix-qr-frame img {
    max-width: 220px;
    max-height: 220px;
}

.pix-payment-status {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f57c00;
    text-align: center;
}

.pix-payment-success {
    color: #2e7d32;
}

.pix-payment-code label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

#pix-copy-code {
    width: 100%;
    min-height: 90px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: #1A0F0A;
    padding: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: monospace;
    resize: none;
    outline: none;
}

.pix-copy-btn {
    margin-top: 0.4rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: #1A0F0A;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pix-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pix-payment-hint {
    font-size: 0.75rem;
    color: rgba(248, 231, 213, 0.4);
    margin-top: 0.6rem;
}

.pix-security-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: var(--text-color);
    opacity: 0.6;
}

.pix-security-row i {
    color: #22A45D;
    margin-top: 2px;
}

@media screen and (min-width: 540px) {
    .pix-payment-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

@media screen and (max-width: 480px) {
    .pix-modal {
        border-radius: 20px;
    }

    .pix-modal-header {
        padding: 1.4rem 1rem 1rem;
    }

    .pix-modal-body {
        padding: 1rem;
    }

    .pix-modal-header h3 {
        font-size: 1.2rem;
    }

    .pix-modal-sub {
        font-size: 0.82rem;
    }

    .pix-bumps-header h4 {
        font-size: 0.92rem;
    }

    .pix-bump-main h5 {
        font-size: 0.85rem;
    }

    .pix-bump-description {
        font-size: 0.75rem;
    }

    .pix-total-value {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .pix-total-label {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .pix-total-note {
        font-size: 0.72rem;
    }

    .pix-security-row {
        font-size: 0.72rem;
    }
}

/* ── Very small screens ─────────────────────────────────────── */
@media (max-width: 359px) {
    #notif-container {
        left: 6px;
        top: 6px;
        width: calc(100vw - 12px);
    }
}

/* ============================================================
   CHECKOUT MODAL — Premium Redesign (ck-*)
   ============================================================ */

/* Override old modal shape */
.pix-modal-overlay .pix-modal {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    max-width: 460px;
}

/* ── Dark header ──────────────────────────────────────────── */
.ck-header {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0f 100%);
    padding: 1.4rem 1.4rem 1.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.ck-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #7A5A1A, #D4AF37, #7A5A1A);
}

.ck-badge-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.ck-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Poppins', sans-serif;
}

.ck-badge-pix {
    background: rgba(0, 168, 232, 0.15);
    color: #4DD0E1;
    border-color: rgba(0, 168, 232, 0.3);
}

.ck-header h2 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFF8F0;
    margin: 0 0 0.3rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.ck-header-sub {
    font-size: 0.8rem;
    color: rgba(255, 240, 220, 0.65);
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.ck-close {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.ck-close:hover {
    background: var(--primary-color);
    color: #1A0F0A;
}

/* ── Body ─────────────────────────────────────────────────── */
.ck-body {
    padding: 1.2rem;
    background: #1A0F0A;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* ── Product card ─────────────────────────────────────────── */
.ck-product-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1a0f0a, #2d1a13);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ck-product-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.ck-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ck-product-tag {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
}

.ck-product-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFF8F0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.ck-product-desc {
    font-size: 0.68rem;
    color: rgba(255, 240, 220, 0.55);
    font-family: 'Poppins', sans-serif;
}

.ck-product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.ck-price-old {
    font-size: 0.72rem;
    color: rgba(255, 171, 145, 0.7);
    text-decoration: line-through;
    font-family: 'Poppins', sans-serif;
}

.ck-price-new {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

/* ── Bumps section ────────────────────────────────────────── */
.ck-bumps-section {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 0.85rem 0.9rem 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ck-bumps-header {
    margin-bottom: 0.6rem;
}

.ck-offer-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #fce4ec;
    color: #c62828;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.ck-bumps-header p {
    font-size: 0.78rem;
    color: #6b4b2b;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ── Total row ────────────────────────────────────────────── */
.ck-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

.ck-total-left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ck-total-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.ck-total-note {
    font-size: 0.68rem;
    color: var(--text-color);
    opacity: 0.6;
    font-family: 'Poppins', sans-serif;
}

.ck-total-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* ── CTA button ───────────────────────────────────────────── */
.ck-cta-btn {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    background: linear-gradient(to bottom, #F7E5A9 0%, #D4AF37 55%, #B8942E 100%);
    color: #1a0f0a;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 5px 0 #7A5A1A, 0 10px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: 'Poppins', sans-serif;
}

.ck-cta-btn i {
    display: none;
    /* shown inline with text */
}

.ck-cta-btn:not(:disabled):active {
    transform: translateY(4px);
    box-shadow: 0 1px 0 #7A5A1A, 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ck-cta-btn:disabled {
    opacity: 0.75;
    cursor: default;
    box-shadow: 0 3px 0 #7A5A1A, 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ck-cta-sub {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: #4a2a10;
    opacity: 0.75;
}

/* ── Security strip ───────────────────────────────────────── */
.ck-security-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(248, 231, 213, 0.4);
    font-family: 'Poppins', sans-serif;
}

.ck-security-strip i {
    font-size: 0.72rem;
    color: #22A45D;
}

/* ── Phone Modal specific ───────────────────────────────────── */
.phone-modal {
    max-width: 380px;
}

.phone-input-group {
    padding: 1rem 0;
}

.phone-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    font-family: 'Poppins', sans-serif;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: #25D366; /* WhatsApp Green */
    font-size: 1.2rem;
}

.input-with-icon input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: #1A0F0A;
    padding: 0 1rem 0 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-with-icon input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.input-hint {
    font-size: 0.72rem;
    color: rgba(248, 231, 213, 0.4);
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   PRICING SECTION — SaaS Style
   ============================================================ */

.pricing-section {
    padding: 6rem 1.5rem;
    background: #1A0F0A; /* Deep Chocolate */
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    align-items: stretch;
}

.pricing-card {
    background: #2D1A13; /* Darker Chocolate */
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #3D241C 0%, #2D1A13 100%);
    border: 2px solid #D4AF37;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #B8942E);
    color: #1A0F0A;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #F8E7D5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4AF37;
}

.price-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: #F8E7D5;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: rgba(248, 231, 213, 0.5);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.92rem;
    color: rgba(248, 231, 213, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.plan-features li i {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.plan-features li.disabled {
    opacity: 0.3;
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: rgba(248, 231, 213, 0.2);
}

.plan-cta {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.essential-cta {
    background: rgba(248, 231, 213, 0.05);
    color: #F8E7D5;
    border: 1px solid rgba(248, 231, 213, 0.2);
}

.pro-cta {
    background: linear-gradient(135deg, #D4AF37, #B8942E);
    color: #1A0F0A;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.elite-cta {
    background: #F8E7D5;
    color: #1A0F0A;
}

.plan-cta:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .pricing-grid {
        max-width: 400px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .pix-modal-overlay .pix-modal {
        border-radius: 16px;
    }

    .ck-header {
        padding: 1.1rem 1rem 1rem;
    }

    .ck-header h2 {
        font-size: 1.1rem;
    }

    .ck-body {
        padding: 0.9rem;
        gap: 0.75rem;
    }

    .ck-total-value {
        font-size: 1.25rem;
    }

    .ck-cta-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }
}

.pix-modal-overlay {
    overflow-y: auto;
}

.pix-modal {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.pix-modal-body {
    overflow-y: auto;
}

/* ============================================================
   PIX PAYMENT POPUP — Separate modal (pp-*)
   ============================================================ */

.pix-payment-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 1rem;
}

.pp-modal {
    background: #1A0F0A;
    border-radius: 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    max-height: 96vh;
    display: flex;
    flex-direction: column;
    animation: ppModalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ppModalFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Close button ─────────────────────────────────────────── */
.pp-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.pp-close:hover {
    background: var(--primary-color);
    color: #1A0F0A;
    transform: rotate(90deg);
}

/* ── Header ───────────────────────────────────────────────── */
.pp-header {
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1A13 100%);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    border-bottom: 2px solid var(--primary-color);
}

.pp-pix-logo {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.pp-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
}

.pp-header p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* ── Timer row ────────────────────────────────────────────── */
.pp-timer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.05);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#pp-countdown {
    font-weight: 900;
    font-size: 1rem;
}

/* ── QR wrap ──────────────────────────────────────────────── */
.pp-qr-wrap {
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1A0F0A;
}

.pp-qr-frame {
    width: 240px;
    height: 240px;
    background: #fff; /* Keep QR background white for scanability */
    border-radius: 20px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.pp-qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #F57C00;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.pp-status-success {
    color: #22A45D !important;
}

.pp-status-error {
    color: #dc3545 !important;
}

/* ── Copy wrap ────────────────────────────────────────────── */
.pp-copy-wrap {
    padding: 1.5rem;
    background: #1A0F0A;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.pp-copy-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.7;
}

.pp-copy-input-wrap {
    display: flex;
    gap: 0.6rem;
}

.pp-copy-input-wrap input {
    flex: 1;
    height: 48px;
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 0 1rem;
    font-size: 0.85rem;
    background: #1A0F0A;
    color: var(--text-light);
    font-family: monospace;
    outline: none;
    transition: all 0.2s;
}

.pp-copy-input-wrap input:focus {
    border-color: var(--primary-color);
}

.pp-copy-input-wrap button {
    height: 48px;
    padding: 0 1.5rem;
    background: var(--primary-color);
    color: #1A0F0A;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.pp-copy-input-wrap button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pp-copy-input-wrap button:active {
    transform: scale(0.96);
    opacity: 0.9;
}

/* ── Footer ───────────────────────────────────────────────── */
.pp-footer {
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-color);
    background: #1A0F0A;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
}

.body-lock {
    overflow: hidden;
}

/* ── Amount row ───────────────────────────────────────────── */
.pp-amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.82rem;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.pp-amount-row strong {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* ── Hint ─────────────────────────────────────────────────── */

/* ============================================================
   PURCHASE NOTIFICATIONS V2 — Enhanced & Themed
   ============================================================ */

.pn-toast-v2 {
    pointer-events: all;
    cursor: pointer;
    background: linear-gradient(135deg, #2D1A13, #1A0F0A);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pn-toast-v2.pn-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pn-toast-v2.pn-hide {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.84, 0), opacity 0.4s cubic-bezier(0.7, 0, 0.84, 0);
}

.pn-toast-v2 .pn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pn-toast-v2 .pn-body {
    flex: 1;
    min-width: 0;
}

.pn-toast-v2 .pn-main-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #F8E7D5;
    margin: 0;
    line-height: 1.4;
}

.pn-toast-v2 .pn-sub-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(248, 231, 213, 0.6);
    margin: 2px 0 0;
    line-height: 1.2;
}

.pn-toast-v2 .pn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: rgba(248, 231, 213, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-toast-v2 .pn-close:hover {
    color: rgba(248, 231, 213, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.pn-toast-v2 .pn-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(212, 175, 55, 0.15);
}

.pn-toast-v2 .pn-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #D4AF37;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 8s linear;
}

.pn-toast-v2.pn-show .pn-progress::after {
    transform: scaleX(1);
}
.pp-hint {
    font-size: 0.7rem;
    color: #90A4AE;
    text-align: center;
    padding: 0.7rem 1.2rem 1.2rem;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.pp-hint i {
    color: #00BCD4;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 420px) {
    .pp-modal {
        border-radius: 18px;
    }

    .pp-qr-frame {
        width: 190px;
        height: 190px;
    }

    .pp-header {
        padding: 1.3rem 1.2rem 1rem;
    }

    .pp-header h3 {
        font-size: 1.1rem;
    }
}