:root {
    --color-pistachio: #FA8072;
    --color-pistachio-light: #FFE0E0;
    --color-pistachio-dark: #D32F2F;
    --color-chocolate: #4E342E;
    --color-chocolate-light: #795548;
    --color-chocolate-rich: #3E2723;
    --color-cream: #FFF9C4;
    --color-off-white: #ffffff;
    --color-gold: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 30px -10px rgba(250, 128, 114, 0.15);
    --shadow-hover: 0 20px 40px -12px rgba(211, 47, 47, 0.2);
    --shadow-gold: 0 0 20px rgba(255, 179, 0, 0.3)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-chocolate);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-weight: 700
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm)
}

.narrow {
    max-width: 800px
}

.highlight-text {
    color: var(--color-pistachio-dark);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.4em;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    animation: textPulse 1s ease-in-out infinite alternate
}

@keyframes textPulse {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

.highlight-text::after {
    content: none;
    display: none
}

#chocolate-drip-overlay {
    display: none !important
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-chocolate);
    padding-top: max(var(--spacing-sm), env(safe-area-inset-top));
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.4)
}

.navbar::before {
    content: "";
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-chocolate);
    z-index: -1
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 20px
}

.nav-drips {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
    pointer-events: none
}

.drip-svg-nav {
    width: 100%;
    height: 100%;
    display: block
}

.drip-svg-nav path {
    fill: var(--color-chocolate)
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-off-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
}

.nav-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    animation: subtlePulse 2s infinite ease-in-out
}

.nav-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold)
}

.nav-badge .icon {
    color: var(--color-gold)
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        border-color: var(--color-gold)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0)
    }
}

@media (prefers-reduced-motion:reduce) {

    .fade-in,
    .pulse,
    .cta-button:hover {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important
    }
}

.hero {
    position: relative;
    padding: 60px 0 100px;
    background: #ffffff;
    overflow: hidden
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-pistachio-dark);
    margin-bottom: var(--spacing-sm);
    display: block
}

.chef-note {
    font-family: 'Dancing Script', cursive;
    color: var(--color-chocolate);
    font-size: 1.5rem;
    transform: rotate(-5deg);
    display: inline-block
}

.absolute-note {
    position: absolute;
    bottom: -25px;
    right: -10px;
    background: #fff9c4;
    padding: 2px 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 20
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E")
}

.profit-card {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 1px solid rgba(147, 197, 114, 0.3);
    animation: floatCard 4s ease-in-out infinite reverse
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.p-card-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
    margin-bottom: 10px
}

.p-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-chocolate);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px
}

.p-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #666
}

.p-val {
    font-weight: 600
}

.p-val.negative {
    color: #d32f2f
}

.p-val.positive {
    color: #388e3c
}

.p-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0
}

.p-row.highlight {
    font-size: 1rem;
    color: var(--color-chocolate);
    margin-top: 5px
}

.p-row.highlight .p-val {
    font-size: 1.1rem;
    color: var(--color-pistachio-dark)
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md)
}

.hero p {
    font-size: 1.125rem;
    color: var(--color-chocolate-light);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.trust-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md)
}

.pill {
    background: rgba(147, 197, 114, 0.15);
    color: var(--color-chocolate);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500
}

.pill.highlight-red {
    background: #43A047;
    color: white;
    font-weight: 700;
    border: 1px solid #2E7D32;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.4);
    transform: scale(1.05)
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pistachio-dark), #B71C1C);
    color: white;
    padding: 24px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.5);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.6);
    background: linear-gradient(135deg, #E53935, #C62828)
}

.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -10px;
    display: inline-flex
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem
}

.trust-icon {
    font-size: 1.2rem
}

.trust-text strong {
    color: #2E7D32;
    font-weight: 700
}

.divider-vertical {
    width: 1px;
    height: 20px;
    background: #e0e0e0
}

.cta-button.big-btn {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 24px;
    background: linear-gradient(135deg, var(--color-chocolate-light), var(--color-chocolate));
    box-shadow: 0 10px 20px rgba(62, 39, 35, 0.3)
}

.cta-button.big-btn:hover {
    box-shadow: 0 15px 30px rgba(62, 39, 35, 0.4)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 197, 114, 0.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(147, 197, 114, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(147, 197, 114, 0)
    }
}

.pulse {
    animation: pulse 2s infinite
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--color-pistachio);
    opacity: 0.15;
    filter: blur(50px);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%)
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-gold);
    opacity: 0.1;
    filter: blur(40px);
    bottom: 0;
    right: 0
}

.image-container {
    position: relative;
    z-index: 5;
    width: 350px;
    height: 480px;
    border-radius: 200px 200px 20px 20px;
    padding: 10px;
    background: linear-gradient(to bottom right, #fff, var(--color-cream));
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 190px 190px 15px 15px;
    display: block;
    transition: transform 0.5s ease
}

.image-container:hover .hero-img {
    transform: scale(1.02)
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-weight: 700;
    border: 1px solid var(--color-gold);
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.section {
    padding: var(--spacing-xl) 0
}

.features {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-cream) 100%)
}

.modules {
    background: linear-gradient(180deg, var(--color-cream) 0%, #fff 100%)
}

.audience {
    background: linear-gradient(180deg, #fff 0%, var(--color-off-white) 100%)
}

.offer {
    background: linear-gradient(180deg, var(--color-off-white) 0%, #F1F8E9 100%)
}

.faq {
    background: linear-gradient(180deg, #F1F8E9 0%, #fff 100%)
}

.alt-bg {
    background-color: transparent
}

.section-header {
    margin-bottom: var(--spacing-lg)
}

.section-header.center {
    text-align: center
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 10px auto 0
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md)
}

.card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    position: relative;
    overflow: hidden
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm)
}

.feature-card.highlight {
    background: linear-gradient(to bottom right, #fff, var(--color-cream));
    border: 1px solid var(--color-gold)
}

.badge-bonus {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px
}

.feature-list {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative
}

.feature-list li::before {
    content: '•';
    color: var(--color-pistachio-dark);
    position: absolute;
    left: 0;
    font-weight: bold
}

.p-gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 60px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.p-gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite
}

.p-slide {
    width: 280px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.15);
    background: white;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: perspective(1000px) rotateY(10deg);
    transition: 0.3s
}

.p-slide:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.25);
    border-color: var(--color-gold)
}

.p-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-1 * (280px + 30px) * 7))
    }
}

.p-gallery-track:hover {
    animation-play-state: paused
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center
}

.book-container-hinge {
    width: 300px;
    height: 420px;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    perspective: 1500px
}

.book-inside-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px 20px 20px 5px;
    box-shadow: inset 10px 0 30px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-image: linear-gradient(90deg, #f5f5f5 0%, #fff 5%, #fff 100%)
}

.chapter-preview {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s ease;
    transition-delay: 0.2s
}

.book-container-hinge.open .chapter-preview {
    opacity: 1;
    transform: translateY(0)
}

.chapter-preview h6 {
    color: #bbb;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.chapter-preview h5 {
    color: var(--color-pistachio-dark);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 15px
}

.chapter-preview p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.6
}

.read-more {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase
}

.book-cover-hinge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #CFE8C2 0%, #BCE2A6 100%);
    border-radius: 5px 20px 20px 5px;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.05), 10px 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center
}

.book-container-hinge.open .book-cover-hinge {
    transform: rotateY(-130deg);
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.1)
}

.cover-design {
    border: 3px double var(--color-chocolate);
    width: 85%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 2px;
    backface-visibility: hidden;
    background-color: rgba(255, 255, 255, 0.1)
}

.cover-design .title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--color-chocolate);
    letter-spacing: -1px
}

.cover-design .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-dark);
    font-weight: 600;
    margin-top: 5px;
    border-top: 1px solid var(--color-chocolate);
    padding-top: 10px;
    width: 60px
}

.span-title {
    font-size: 2.5rem
}

.spine-visual {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 39, 35, 0.1), transparent);
    border-radius: 5px 0 0 5px
}

.click-hint-badge {
    position: absolute;
    bottom: 20px;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulseHint 2s infinite;
    backface-visibility: hidden
}

@keyframes pulseHint {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.book-side-pages {
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 0;
    width: 15px;
    background: repeating-linear-gradient(to right, #eee, #eee 1px, #ddd 1px, #ddd 2px);
    z-index: 0;
    transform: skewY(-5deg) translateX(5px);
    border-radius: 0 5px 5px 0
}

.module-list {
    position: relative;
    padding-left: 30px;
    margin-top: 40px
}

.module-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-pistachio-dark) 0%, transparent 100%);
    opacity: 0.3
}

.module-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
    transition: transform 0.3s ease
}

.module-item:hover {
    transform: translateX(10px)
}

.mod-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-pistachio-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 0 5px white;
    border: 2px solid var(--color-pistachio-light)
}

.mod-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding-bottom: 25px
}

.bonus-floating-tag {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: #FFD700;
    color: #3E2723;
    padding: 5px 15px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
    border: 2px solid white
}

.mod-info::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}

.mod-info h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--color-chocolate);
    font-weight: 700;
    font-family: var(--font-body)
}

.mod-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5
}

.audience-box {
    padding: 40px;
    border-radius: var(--radius-md)
}

.for-you {
    background-color: var(--color-cream);
    color: var(--color-chocolate)
}

.not-for-you {
    background-color: #f0f0f0;
    color: #888
}

.audience-box h3 {
    margin-bottom: 20px
}

.audience-box ul li {
    margin-bottom: 10px;
    font-size: 1.05rem
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.15);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--color-gold)
}

.offer-header {
    background: var(--color-chocolate);
    color: white;
    padding: 20px
}

.offer-header h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.4rem
}

.offer-header .urgency {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500
}

.offer-body {
    padding: 40px
}

.price-container {
    margin-bottom: 30px
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem
}

.current-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin: 10px 0
}

.current-price-wrapper .currency {
    font-size: 1.2rem;
    font-weight: 500
}

.current-price-wrapper .value {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-pistachio-dark)
}

.payment-info {
    font-size: 0.9rem;
    color: #666
}

.guarantee-seal {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: left
}

.seal-icon {
    font-size: 2rem
}

.accordion-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-chocolate);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s
}

.accordion-header:hover {
    background: #fdfdfd
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
    font-size: 0.95rem
}

.accordion-item.active .accordion-content {
    max-height: 200px
}

.footer {
    background: var(--color-chocolate-rich);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    display: block;
    margin-bottom: 5px
}

.offer-card.urgency-mode {
    text-align: center;
    border: 1px solid var(--color-gold);
    background: #fff;
    overflow: hidden;
    position: relative;
    padding-top: 60px;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.1);
    border-radius: 16px
}

.urgency-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--color-pistachio-dark), var(--color-pistachio));
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(147, 197, 114, 0.2)
}

.urgency-title {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-size: 2.2rem;
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 0 15px
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px
}

.time-box {
    background: var(--color-chocolate);
    color: var(--color-gold);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3)
}

.time-box #hours,
.time-box #minutes,
.time-box #seconds {
    font-size: 2.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-family: 'Inter', sans-serif;
    color: white
}

.time-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 500;
    color: var(--color-pistachio-light)
}

.separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-pistachio-dark);
    margin-top: -25px;
    opacity: 0.6
}

.offer-card.urgency-mode {
    padding-top: 0;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto
}

.offer-header-redesign {
    background: #fff;
    padding: 20px;
    text-align: center
}

.scarcity-text {
    background: #ffebee;
    color: #e53935;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid #ffcdd2
}

.timer-compact {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center
}

.timer-digits {
    color: #333;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px
}

.social-proof {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff9800;
    border-radius: 50%;
    display: inline-block;
    animation: blinkLive 1.5s infinite
}

@keyframes blinkLive {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }

    100% {
        opacity: 1
    }
}

.offer-body-redesign {
    padding: 20px 30px 40px;
    text-align: center
}

.plan-label {
    font-family: 'Inter', sans-serif;
    color: #e65100;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.price-showcase {
    margin-bottom: 30px
}

.old-price-small {
    display: inline-block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px
}

.big-price-huge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: var(--color-chocolate-rich);
    line-height: 1;
    margin: 10px 0;
    letter-spacing: -2px
}

.discount-pill {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 12px
}

.price-analogy {
    font-size: 0.95rem;
    color: #777
}

.benefits-list-redesign {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px;
    max-width: 400px;
    text-align: left
}

.benefits-list-redesign li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 12px
}

.benefits-list-redesign li strong {
    color: #000;
    font-weight: 700
}

.benefits-list-redesign .check {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E7D32;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.3)
}

.cta-button.pulse-fast {
    background: linear-gradient(135deg, var(--color-chocolate), #5D4037);
    border: 1px solid var(--color-gold);
    font-size: 1.3rem;
    padding: 24px 48px;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.2);
    animation: elegantButtonGlow 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px
}

@keyframes elegantButtonGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        transform: scale(1)
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(212, 175, 55, 0.3);
        transform: scale(1.05)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        transform: scale(1)
    }
}

.bottom-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px
}

.hero-social-proof {
    justify-content: center
}

@media (max-width:768px) {
    .hero-social-proof {
        justify-content: center
    }
}

.avatar-stack {
    display: flex
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    background-size: cover;
    background-position: center;
    margin-right: -10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15)
}

.avatar-circle:nth-child(1) {
    z-index: 4
}

.avatar-circle:nth-child(2) {
    z-index: 3
}

.avatar-circle:nth-child(3) {
    z-index: 2
}

.avatar-circle:nth-child(4) {
    z-index: 1
}

.join-text {
    font-size: 0.7rem !important;
    color: #5d4037;
    margin: 0;
    line-height: 1.1;
    text-align: left;
    white-space: nowrap
}

.join-text strong {
    color: #e65100;
    font-weight: 500
}

.security-lock {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 500
}

.links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    font-size: 0.9rem
}

.copyright {
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 20px
}

.testimonials {
    background: linear-gradient(135deg, #fff 0%, var(--color-off-white) 100%)
}

.testimonials {
    background-color: var(--color-off-white);
    position: relative;
    overflow: hidden
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(62, 39, 35, 0.1);
    border-color: var(--color-pistachio-light)
}

.quote-watermark {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 4rem;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    color: var(--color-pistachio);
    opacity: 0.15;
    pointer-events: none
}

.test-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 2
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}

.author-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-chocolate);
    font-weight: 700
}

.location {
    font-size: 0.75rem;
    color: #888;
    display: block
}

@media (max-width:768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .testimonials .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero p {
        margin: 0 auto 2rem
    }

    .trust-pills {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 50px
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .reverse-mobile {
        grid-template-columns: 1fr
    }

    .row .col-visual {
        order: -1;
        margin-bottom: 30px
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.delay-100 {
    transition-delay: 0.1s
}

.delay-200 {
    transition-delay: 0.2s
}

.p-slide-item {
    position: relative;
    width: 100%;
    height: 100%
}

.carousel-note {
    font-family: 'Dancing Script', cursive;
    color: var(--color-chocolate-rich);
    font-size: 1.1rem;
    position: absolute;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    bottom: 15px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.1);
    transform: none;
    font-weight: 700;
    line-height: 1;
    min-width: 80px;
    text-align: center;
    animation: floatNote 4s ease-in-out infinite
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 20px
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px
    }

    .hero-container {
        gap: 20px;
        width: 100%
    }

    .trust-pills {
        gap: 8px
    }

    .pill {
        font-size: 0.8rem;
        padding: 4px 10px
    }

    .section-header h2 {
        font-size: 1.75rem
    }

    .hero-title span {
        display: block;
        line-height: 1.2
    }
}

.hero-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    cursor: default
}

.hero-guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25)
}

.hero-guarantee-badge .guarantee-icon {
    font-size: 0.95rem;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1))
}

.hero-guarantee-badge .guarantee-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-chocolate);
    text-transform: uppercase;
    letter-spacing: 1px
}

.hero-title span {
    display: block;
    line-height: 1.1
}

.highlight-text {
    display: inline-block;
    padding: 0 5px
}

.special-alcoholic .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.special-alcoholic .col-text {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.special-alcoholic .col-visual-drink {
    width: 100%;
    display: flex;
    justify-content: center
}

.features {
    background: #ffffff !important;
    background-image: none !important
}

.special-alcoholic {
    background: #FFF176;
    color: var(--color-chocolate);
    position: relative;
    padding-top: 0;
    padding-bottom: var(--spacing-xl)
}

.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
    position: relative;
    z-index: 10
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px
}

.wave-divider .shape-fill {
    fill: #ffffff
}

.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg)
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px
}

.wave-divider-bottom .shape-fill {
    fill: #FFD54F
}

.special-alcoholic h2 {
    color: var(--color-chocolate);
    text-shadow: none
}

.special-alcoholic h3 {
    color: var(--color-chocolate);
    font-weight: 600
}

.highlight-text-alt {
    font-family: 'Dancing Script', cursive;
    color: #1B5E20;
    text-shadow: none;
    font-size: 1.1em
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border: 2px solid #FFD54F;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
    font-weight: 800;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.special-badge-gold {
    background: #ff0000;
    color: #000;
    border-color: #ff2a00;
    box-shadow: 0 5px 15px rgb(217, 222, 81)
}

.special-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: badgeShine 3s infinite;
    z-index: -1
}

@keyframes badgeShine {
    0% {
        left: -100%
    }

    20% {
        left: 100%
    }

    100% {
        left: 100%
    }
}

.drink-list li {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05)
}

.drink-list li:hover {
    background: white;
    border-color: var(--color-chocolate)
}

.drink-list strong {
    color: var(--color-chocolate)
}

.modules {
    background: linear-gradient(180deg, #FFD54F 0%, #FFF9C4 30%, #fff 100%)
}

.audience {
    background: linear-gradient(180deg, #fff 0%, #FFFDE7 100%)
}

.offer {
    background: linear-gradient(180deg, #FFFDE7 0%, #E8F5E9 100%)
}

.special-alcoholic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.2), transparent 40%), radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.2), transparent 40%);
    z-index: 1
}

.special-alcoholic .container {
    position: relative;
    z-index: 2
}

.special-alcoholic h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 10px
}

.special-alcoholic h3 {
    color: #FFF9C4;
    text-shadow: 0 0 5px #FFF59D, 0 0 10px #FFF176, 0 0 20px #FFD700, 0 0 40px #FFC107, 0 0 80px #FFAB00, 0 0 90px #FFD700;
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    line-height: 1.2
}

.highlight-text-alt {
    font-family: 'Dancing Script', cursive;
    color: #00E676;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5)
}

.special-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(5px)
}

.drink-list {
    margin: var(--spacing-md) 0
}

.drink-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s
}

.drink-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--color-gold)
}

.drink-list .icon {
    font-size: 2.5rem
}

.drink-list strong {
    font-size: 1.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px
}

.profit-highlight {
    background: linear-gradient(90deg, #FFD700, #FFA000);
    color: #3E2723;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite
}

.profit-highlight span {
    font-size: 1.2em;
    font-weight: 900
}

.col-visual-drink {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 30px 0
}

.drink-image-container {
    position: relative;
    width: 350px;
    height: 450px
}

.drink-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotate(3deg);
    transition: 0.5s
}

.drink-image-container:hover .drink-img {
    transform: rotate(0deg) scale(1.02)
}

.floating-drink-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #D32F2F;
    color: white;
    padding: 15px 25px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1
}

.centered-row {
    display: flex;
    justify-content: center;
    text-align: center
}

.center-mobile-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.center-mobile-content p {
    margin-left: auto;
    margin-right: auto
}

.module-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

.module-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    transition: 0.3s
}

.module-item:hover {
    transform: translateY(-5px);
    border: 1px solid var(--color-gold)
}

@media (max-width:768px) {
    .module-item {
        flex-direction: column;
        text-align: center
    }
}

.modules h2,
.special-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: var(--font-body);
    letter-spacing: -1px;
    text-align: center
}

.highlight-bonus {
    color: var(--color-pistachio-dark);
    font-weight: 900;
    font-size: 1.1em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    animation: textPulse 1.5s infinite alternate;
    display: inline-block
}

.book-container-hinge {
    width: 300px;
    height: 420px;
    position: relative;
    margin: 0 auto 60px;
    cursor: pointer;
    perspective: 1500px
}

.book-inside-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px 20px 20px 5px;
    box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.chapter-preview h6 {
    color: #999;
    letter-spacing: 2px;
    font-size: 0.8em;
    margin-bottom: 5px
}

.chapter-preview h5 {
    font-family: var(--font-heading);
    color: var(--color-chocolate-rich);
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.2
}

.chapter-preview p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    background: #f9f9f9;
    padding: 15px;
    border-left: 3px solid var(--color-pistachio);
    margin-bottom: 20px
}

.read-more {
    font-size: 0.8em;
    font-weight: 700;
    color: var(--color-pistachio-dark);
    text-transform: uppercase;
    letter-spacing: 1px
}

.book-cover-hinge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4E342E;
    background-image: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.1), transparent 70%), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: cover, 100px 100px;
    border-radius: 5px 20px 20px 5px;
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    box-shadow: inset 3px 0 5px rgba(0, 0, 0, 0.2), inset -5px 0 10px rgba(0, 0, 0, 0.1), 5px 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    backface-visibility: hidden;
    border: 2px solid #3E2723
}

.book-container-hinge.open .book-cover-hinge {
    transform: rotateY(-140deg)
}

.cover-design {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px 15px 15px 5px;
    position: relative
}

.cover-design .title {
    font-family: var(--font-heading);
    color: #FFECB3;
    font-size: 2.2rem;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 2px 2px 0px #3E2723;
    letter-spacing: 0;
    text-align: center;
    width: 100%
}

.cover-design .subtitle {
    font-family: var(--font-body);
    color: #FFD54F;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding: 5px 0
}

.spine-visual {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1)
}

.click-hint-badge {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounceHint 2s infinite
}

@keyframes bounceHint {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(10px)
    }

    60% {
        transform: translateY(5px)
    }
}

.bonus-iphone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden
}

.bonus-iphone-visual {
    width: 1500px;
    max-width: 130vw;
    height: auto;
    display: block;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.2));
    animation: floatPhone 4s ease-in-out infinite
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.bonus-selectable {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center
}

.bonus-selectable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1)
}

.bonus-selectable.selected {
    border-color: #2E7D32;
    background: #F1F8E9;
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.3)
}

.bonus-selectable.selected .badge-bonus {
    background: #2E7D32;
    color: white
}

.bonus-selectable .badge-bonus {
    position: absolute !important;
    top: 15px;
    left: 15px;
    margin: 0;
    align-self: auto;
    z-index: 5
}

.bonus-selectable {
    padding-top: 70px !important
}

.checkbox-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10
}

.bonus-check {
    display: none
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: white
}

.bonus-check:checked+.custom-checkbox {
    background: #2E7D32;
    border-color: #2E7D32
}

.bonus-check:checked+.custom-checkbox::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold
}

.centered-badge-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px
}

.centered-badge-container .special-badge {
    margin-bottom: 0
}

.badge-subtext {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888;
    margin-top: -2px;
    font-weight: 500
}

.customer-speech-bubble {
    background: #fff;
    border-radius: 30px 30px 30px 5px;
    padding: 15px 30px;
    display: inline-block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #E0E0E0;
    margin-bottom: 5px;
    position: relative;
    max-width: 90%;
    margin-top: 40px
}

.customer-speech-bubble .emoji {
    font-style: normal;
    margin-right: 10px
}

.customer-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-bottom: 2px solid #E0E0E0;
    border-right: 2px solid #E0E0E0;
    transform: rotate(45deg)
}

.features .container {
    text-align: center
}

.glow {
    color: #ffcc00;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 204, 0, 0.5), 0 0 6px rgba(255, 204, 0, 0.4)
}

.bonus-chapters-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: -20px;
    margin-bottom: 40px;
    width: 100%
}

.chapter-pill {
    background: linear-gradient(135deg, #ffffff, #F5F5F5);
    padding: 15px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease
}

.chapter-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold)
}

.chapter-text {
    font-family: var(--font-body);
    color: var(--color-chocolate-rich);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    text-align: left
}

.chapter-check {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    background: var(--color-chocolate);
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(78, 52, 46, 0.3);
    flex-shrink: 0
}

.chapter-list-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700
}

.bonus-highlight-title {
    font-family: 'Playfair Display', serif;
    color: #1B5E20;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
    line-height: 1.2
}

.bonus-highlight-title span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    text-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px
}

.static-gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding-bottom: 40px
}

.static-slide {
    width: 280px;
    height: 350px;
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden
}

.static-slide:hover {
    transform: scale(1.03);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.25);
    z-index: 5
}

.static-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px
}

.bonus-alert-box {
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    border: 2px dashed #FF6F00;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.2);
    animation: floatBonus 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@keyframes floatBonus {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(255, 111, 0, 0.2)
    }

    50% {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 111, 0, 0.25)
    }
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: shakeGift 2s infinite
}

@keyframes shakeGift {

    0%,
    100% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(-10deg)
    }

    75% {
        transform: rotate(10deg)
    }
}

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

.alert-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    color: #E65100;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.alert-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #D32F2F;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    margin: 5px 0;
    line-height: 1.1
}

.arrow-indicator {
    font-size: 2rem;
    margin-top: 10px;
    animation: bounceArrow 1.5s infinite
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(10px)
    }

    60% {
        transform: translateY(5px)
    }
}

.guarantee-section {
    padding: 60px 0;
    background-color: transparent
}

.guarantee-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02)
}

.guarantee-icon-container {
    background: #F5F7FA;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px
}

.guarantee-icon {
    font-size: 1.8rem
}

.guarantee-card h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 15px
}

.guarantee-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5
}

.guarantee-bold {
    font-weight: 700;
    color: #111 !important;
    margin-top: 10px
}

.vsl-wrapper {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
    background: #000
}

.vsl-video {
    width: 100%;
    height: auto;
    display: block
}

.section.modules.alt-bg {
    background: #fff !important;
    background-image: none !important;
}

/* Testimonials Slider Redesign - Phone Frame Style */
.testimonials {
    background-color: var(--color-off-white) !important;
    /* Outer background is white as requested */
    padding: var(--spacing-xl) 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.testimonial-phone-frame {
    background-color: var(--color-chocolate-rich);
    border-radius: 30px;
    /* Big rounded corners like a phone */
    padding: 3rem 0;
    /* Padding inside the dark box */
    width: 100%;
    max-width: 500px;
    /* Force mobile-like constraint even on desktop for this specific look */
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Important so cards don't bleed out of the dark container */
}

.test-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.test-header h2 {
    font-size: 2.2rem;
    color: var(--color-off-white) !important;
    /* White text on dark bg */
    margin-bottom: 0;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.slider-container {
    position: relative;
    width: 100%;
    /* No max-width restriction inside the phone frame */
    margin: 0 auto;
    cursor: grab;
    padding: 0 0 20px;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    align-items: stretch;
    /* Cards stretch to same height */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Taller, thinner cards (Portrait mode) */
.slider-card {
    flex: 0 0 260px;
    /* Narrower width so sides show */
    margin: 0 10px;
    /* Smaller gap */
    background: #fff;
    padding: 2.5rem 1.5rem 2rem;
    /* Taller padding */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0.5;
    transform: scale(0.9);
    /* Scale down non-active */
}

.slider-card.active {
    opacity: 1;
    transform: scale(1);
    /* Center card is full size */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--color-pistachio-light);
    z-index: 2;
}

.test-quote {
    font-size: 0.95rem;
    /* Slightly smaller to fit portrait */
    color: var(--color-chocolate-light);
    /* Matching the image's green/greyish tone */
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 3rem;
    /* Push user info down */
    text-align: center;
    font-weight: 500;
}

/* Flex layout for user info (Image left, text right) */
.test-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.user-img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: none !important;
    /* Clean look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.user-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-name {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--color-chocolate-rich);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.user-loc {
    font-size: 0.65rem;
    color: #a0a0a0;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-pistachio);
}

/* Slider Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-phone-frame {
        border-radius: 15px;
        /* less rounded on real mobile screen */
        padding: 2.5rem 0;
    }

    .slider-card {
        flex: 0 0 240px;
        /* Slightly narrower on mobile devices */
        padding: 2rem 1.2rem;
    }
}

/* Premium Bonus Card Redesign */
.premium-bonus-card {
    background: linear-gradient(180deg, #FFFaf0 0%, #FFFFFF 20%);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-badge-wrapper {
    margin-bottom: 2rem;
}

.premium-badge-orange {
    background-color: #F08D1E;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(240, 141, 30, 0.3);
}

.premium-bonus-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-chocolate-rich);
    margin-bottom: 0.5rem;
}

.premium-bonus-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #c98e4f;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

.premium-bonus-desc {
    font-size: 0.9rem;
    color: #8c786a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.premium-pill-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.premium-pill-item {
    background-color: #FAFAFA;
    border: 1px solid #f3efea;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: transform 0.2s, background-color 0.2s;
}

.premium-pill-item:hover {
    transform: translateY(-2px);
    background-color: #FFF9F2;
    border-color: #FFE0B2;
}

.premium-pill-item .pill-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.premium-pill-item .pill-text {
    font-size: 0.95rem;
    color: var(--color-chocolate-rich);
    font-weight: 500;
}

.premium-bonus-footer {
    font-size: 0.75rem;
    color: #9c8e84;
    font-style: italic;
    line-height: 1.4;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .premium-bonus-card {
        padding: 2.5rem 1.5rem;
    }

    .premium-bonus-title {
        font-size: 1.5rem;
    }
}

/* Infinite Showcase Carousel (Marquee) */
.showcase-marquee {
    padding: 3rem 0;
    background-color: var(--color-off-white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* subtle separation */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Edge fade masks for smooth entry/exit */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll-left-marquee 35s linear infinite;
}

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

.gelato-sc-card {
    width: 220px;
    /* Fixed width to match reference photo format */
    background-color: #ffffff;
    border-radius: 8px;
    /* Slight rounded corners */
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.gelato-sc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.gsc-img-wrap {
    width: 100%;
    height: 240px;
    /* Yellow/Lime border removed as requested */
}

.gsc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gsc-info {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.gsc-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    /* very dark text */
    text-transform: uppercase;
}

.gsc-arrow {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

@keyframes scroll-left-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 7.5px));
    }

    /* exactly half minus half-gap for seamless loop */
}

@media (max-width: 768px) {
    .gelato-sc-card {
        width: 170px;
        /* Smaller on mobile */
    }

    .gsc-img-wrap {
        height: 190px;
    }

    .gsc-title {
        font-size: 0.95rem;
    }

    .gsc-arrow {
        font-size: 1.1rem;
    }
}

/* Guarantee Section Redesign (Clean Green) */
.guarantee-section-clean {
    padding: 5rem 0;
    background-color: #F4FAF7;
    /* Muito leve, verde menta claro */
    font-family: var(--font-body), sans-serif;
}

.guarantee-box-clean {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

/* Centralized Shield Icon */
.guarantee-badge-top {
    width: 64px;
    height: 64px;
    background-color: #2fb35a;
    /* Verde forte */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(47, 179, 90, 0.3);
}

.shield-svg {
    width: 32px;
    height: 32px;
}

/* Title */
.guarantee-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b4528;
    /* Verde escuro profissional */
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Text Body */
.guarantee-text {
    font-size: 1.05rem;
    color: #4a6355;
    /* Cinza esverdeado para leitura */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guarantee-text.first-line {
    margin-bottom: 1.5rem;
}

.guarantee-text.last-line {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Bottom Outline Tag */
.guarantee-bottom-tag {
    border: 1px solid #c9ebd4;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: inline-block;
    width: 100%;
    max-width: 480px;
    background-color: transparent;
    /* Apenas contorno + fundo da seção vazando */
    transition: background-color 0.2s;
}

.guarantee-bottom-tag:hover {
    background-color: rgba(47, 179, 90, 0.03);
}

.tag-title {
    font-weight: 700;
    color: #0e6b41;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.3rem;
}

.tag-title .check-icon {
    color: #2fb35a;
    font-size: 1.1rem;
}

.tag-subtitle {
    color: #5c7e6c;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .guarantee-section-clean {
        padding: 3.5rem 0;
    }

    .guarantee-title {
        font-size: 1.4rem;
    }

    .guarantee-text {
        font-size: 0.95rem;
    }
}

/* Elegant Dark Checklist Cards */
.dark-check-card {
    background-color: #0F0B09;
    /* Super dark, slightly warm brown/black */
    border: 1px solid rgba(216, 183, 121, 0.15);
    /* Faint golden border */
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dark-check-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 183, 121, 0.05);
}

.dark-check-icon {
    width: 24px;
    height: 24px;
    color: #D8B779;
    /* Gold */
    flex-shrink: 0;
}

.dark-check-text {
    font-family: 'Outfit', sans-serif;
    color: #D8B779;
    /* Gold text */
    font-size: 0.95rem;
    /* Menor como solicitado */
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Elegant Dark Info Box (For Cakto Access Info) */
.dark-info-box {
    background-color: #0F0B09;
    border: 1px solid rgba(216, 183, 121, 0.25);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dark-info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.dark-info-text {
    font-family: var(--font-body), sans-serif;
    color: #f2f2f2;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

.dark-info-text strong {
    color: #D8B779;
    font-weight: 800;
}