/* Global Reset & Variables */
:root {
    --primary-blue: #1677FF;
    --deep-blue: #0B1D4D;
    --sky-blue: #4DBBFF;
    --turquoise: #26D6C8;
    --yellow: #FFD43B;
    --gold: #F6B927;
    --orange: #FF7A32;
    --purple: #7A5CFA;
    --green: #42C96B;
    --white: #FFFFFF;
    --cream: #FFF9ED;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: #333;
    background-color: var(--white);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.text-dark { color: var(--deep-blue); }
.text-light { color: var(--white); }
.text-accent { color: var(--gold); }
.text-accent-alt { color: var(--sky-blue); }

/* Top Bar */
.top-bar {
    background: var(--deep-blue);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    letter-spacing: 1px;
}
.top-bar .highlight {
    color: var(--yellow);
    background: rgba(255, 212, 59, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Hero Section */
.section-hero {
    background: radial-gradient(circle at top, var(--primary-blue), var(--deep-blue));
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.headline-main {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.headline-sub {
    font-size: 2.2rem;
    color: var(--white);
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.price-box {
    background: rgba(11, 29, 77, 0.4);
    border: 2px solid var(--sky-blue);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--sky-blue);
}

.price-value {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin: 5px 0;
}

.price-terms {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--deep-blue);
    text-decoration: none;
    padding: 20px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 6px 0 #cc5f1a, 0 15px 20px rgba(0,0,0,0.3);
    transition: all 0.1s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #cc5f1a, 0 10px 15px rgba(0,0,0,0.3);
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #cc5f1a, 0 5px 10px rgba(0,0,0,0.3);
}

.guarantee-text {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-10deg);
}

.mobile-mockup {
    display: none;
}

/* Section 2: Pain */
.section-pain {
    background-color: var(--cream);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pain-text {
    flex: 1;
    font-size: 1.15rem;
}

.pain-text p {
    margin-bottom: 20px;
}

.pain-visual {
    flex: 1;
}

.pain-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section 3: Solution */
.section-solution {
    background-color: var(--deep-blue);
    background-image: url('assets/images/digital-bg.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.solution-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cycle-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--turquoise);
    color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Inline Offer Card */
.inline-offer-card {
    background: radial-gradient(circle at top, var(--primary-blue), var(--deep-blue));
    border: 3px solid var(--sky-blue);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.inline-offer-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.inline-offer-price {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.inline-cta {
    font-size: 1.5rem;
    padding: 20px 40px;
    display: inline-block;
    width: auto;
    min-width: 300px;
}

/* Section 4: Inside (Carousel) */
.section-inside {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.inside-subheadline {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 50px;
    overflow: hidden;
    padding: 20px 0;
    background: transparent;
    box-shadow: none;
}

.carousel-track.auto-scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 15px;
}

.carousel-track.auto-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

.carousel-slide {
    width: 250px;
    flex-shrink: 0;
    margin-right: 20px;
}

.carousel-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: block;
}

.carousel-img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--sky-blue), var(--purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.guarantee-icon-container {
    text-align: center;
    margin-top: 20px;
}

.guarantee-icon {
    width: 150px;
    height: auto;
    /* Since it's a placeholder, add some styling to make it visible if image is missing */
    background: #f0f0f0;
    border-radius: 50%;
    display: inline-block;
    min-height: 150px;
}

/* Section 5: Stories Grid */
.section-stories {
    background-color: var(--cream);
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--sky-blue);
}

.story-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--deep-blue);
    color: var(--white);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}

.story-cover-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-card h3 {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 5px;
}

.story-card p {
    font-size: 0.85rem;
    color: #666;
}

.stories-footer-note {
    text-align: center;
    font-weight: 600;
    color: var(--deep-blue);
    opacity: 0.7;
    margin-top: 20px;
}

/* Section 6: Structure */
.section-structure {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.timeline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.timeline-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.timeline-arrow {
    color: var(--gold);
    font-weight: 800;
}

.structure-copy {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.structure-copy p {
    margin-bottom: 15px;
}

/* Section 7: Bonus */
.section-bonus {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    padding: 80px 0;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    align-items: center;
    gap: 30px;
}

.bonus-card:hover {
    border-color: var(--gold);
}

.bonus-seal {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gold);
    color: var(--deep-blue);
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bonus-img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.bonus-info h3 {
    color: var(--deep-blue);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.bonus-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.bonus-info ul {
    list-style: none;
}

.bonus-info ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.bonus-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.bonus-info ul li del {
    color: #999;
    font-weight: 600;
}

/* Section 8: Stack */
.section-stack {
    background-color: var(--white);
    padding: 80px 0;
}

.stack-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.stack-visual {
    flex: 1;
}

.stack-mockup-placeholder {
    width: 100%;
    height: 400px;
    background: var(--deep-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
}

.stack-list {
    flex: 1;
}

.value-list {
    list-style: none;
    margin-bottom: 30px;
}

.value-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.value-list li span {
    color: #888;
    font-weight: 500;
}

.total-value {
    text-align: right;
    margin-bottom: 20px;
}

.total-value del {
    font-size: 1.2rem;
    color: #999;
}

.current-offer {
    font-size: 2.5rem;
    color: var(--orange);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.current-offer strong {
    font-size: 3.5rem;
    color: var(--deep-blue);
}

.stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-end;
}

.stack-badges span {
    background: rgba(66, 201, 107, 0.1);
    color: var(--green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Section 9: Emotional */
.section-emotional {
    background-color: var(--white);
    padding: 80px 0;
}

.emotional-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.emotional-text {
    flex: 1;
    font-size: 1.15rem;
}

.emotional-text p {
    margin-bottom: 20px;
}

.emotional-values {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.emotional-values li {
    background: var(--cream);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.emotional-values li::before {
    content: '❤';
    color: var(--orange);
}

.emotional-visual {
    flex: 1;
}

.emotional-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Section 10: Where */
.section-where {
    background-color: var(--cream);
    padding: 80px 0;
    text-align: center;
}

.where-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.where-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.where-card:hover {
    border-color: var(--sky-blue);
}

.where-note {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Section 11: Delivery */
.section-delivery {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 80px 0;
}

.delivery-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.delivery-text {
    flex: 1;
    font-size: 1.15rem;
}

.delivery-text p {
    margin-bottom: 20px;
}

.delivery-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.delivery-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.delivery-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.delivery-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.del-step {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.del-step span {
    background: var(--turquoise);
    color: var(--deep-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.delivery-visual {
    flex: 1;
}

.delivery-mockup-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp colors */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Section 13: FAQ */
.section-faq {
    background-color: var(--cream);
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-blue);
    cursor: pointer;
    font-family: var(--font-heading);
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #555;
}

.faq-question.active + .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Section 14: Final CTA */
.section-final-cta {
    background: radial-gradient(circle at center, var(--primary-blue), var(--deep-blue));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.final-cta-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--sky-blue);
    margin-top: 15px;
    font-weight: 600;
}

.final-offer-box {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.final-offer-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #eee;
}

.final-price {
    font-size: 3.5rem !important;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--yellow) !important;
    line-height: 1;
    margin-bottom: 30px !important;
}

.final-terms {
    font-size: 0.9rem !important;
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

/* Section 12: Guarantee */
.section-guarantee {
    background-color: var(--cream);
    padding: 80px 0;
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon-container {
    text-align: center;
    flex-shrink: 0;
}

.guarantee-icon {
    width: 180px;
    height: auto;
}

.guarantee-text h3 {
    color: var(--deep-blue);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.guarantee-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.guarantee-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.guarantee-badges span {
    background: rgba(66, 201, 107, 0.1);
    color: var(--green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background-color: #050d24;
    color: #888;
    padding: 50px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--sky-blue);
}

.footer-warning, .footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-copyright {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Optimize Section Spacing on Mobile */
    section, header {
        padding: 40px 0 !important;
    }

    .container {
        padding: 0 15px;
    }
    
    .section-hero .container, .pain-content {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .headline-main { font-size: 2rem; }
    .headline-sub { font-size: 1.4rem; }
    
    .mobile-mockup {
        display: block;
        width: 100%;
        height: auto;
        margin: 25px auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .hero-image {
        display: none;
    }
    
    .benefits-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .price-value { font-size: 2.5rem; }
    
    .inline-offer-card, .final-offer-box {
        padding: 30px 15px;
    }
    
    .guarantee-container {
        flex-direction: column;
        padding: 30px 15px;
        text-align: center;
    }
    
    .inline-cta, .cta-button {
        font-size: 1.2rem;
        padding: 15px;
        min-width: 0;
        width: 100%;
    }
    
    .cycle-steps {
        grid-template-columns: 1fr;
    }
    
    .carousel-img-placeholder {
        height: 250px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-visual {
        flex-direction: column;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-seal {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stack-content {
        flex-direction: column;
    }
    
    .value-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .total-value {
        text-align: center;
    }
    
    .stack-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .inline-offer-price {
        font-size: 2.5rem;
    }
    .inline-offer-card {
        padding: 30px 20px;
    }
    .stack-content {
        padding: 20px;
    }
}
