/* ===== CSS RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.4;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
}
.skip-link:focus {
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
ul {
    list-style: none;
}
/* ===== VARIABLES ===== */
:root {
    --primary-red: #8B0000;
    --secondary-red: #DC143C;
    --dark-red: #5C0000;
    --light-pink: #FFE8E8;
    --dark-bg: #1a0000;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --gold: #FFD700;
    --green-cta: #28a745;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 2rem;      /* 32px */
    --spacing-lg: 4rem;      /* 64px */
    --spacing-xl: 6rem;      /* 96px */
    --spacing-xxl: 8rem;     /* 128px */
    --container-max: 1280px;
    --container-small: 1024px;
    --container-padding-mobile: 1.5rem;
    --container-padding-tablet: 3rem;
    --container-padding-desktop: 5rem;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 8px 16px rgba(139, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50%;
}
/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
    width: 100%;
}
.container-small {
    max-width: var(--container-small);
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
    width: 100%;
}
@media (min-width: 768px) {
    .container,
    .container-small {
        padding: 0 var(--container-padding-tablet);
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--container-padding-desktop);
    }
    .container-small {
        padding: 0 13rem;
    }
}
.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    animation: bounce 2s infinite;
}
.scroll-indicator svg {
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.2));
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}
/* ===== HERO SECTION ===== */
.hero-section {
    background: #F5E6E8;
    padding: 3rem 0 4rem;
    min-height: auto;
    position: relative;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 2rem;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #DC143C;
    margin-bottom: 1rem;
    letter-spacing: 0px;
    line-height: 1;
}
.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}
.hero-subtitle .highlight-red {
    color: #DC143C;
    display: inline;
}
.hero-description {
    font-size: 25px!important;
    color: #2C2C2C;
    margin-bottom: 3rem;
    line-height: 1.2!important;
}
.hero-description strong {
    color: #DC143C;
    font-weight: 700;
}
.social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}
.social-proof svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.social-proof span {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}
.hero-gif {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-gif::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}
.hero-mockup {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 25px 60px rgba(220, 20, 60, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.hero-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 70px rgba(220, 20, 60, 0.4));
}
.gif-placeholder {
    width: 100%;
    max-width: 450px;
    height: auto;
    min-height: 450px;
    background: linear-gradient(135deg, #FFE5EA 0%, #FFD0DB 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    position: relative;
    padding: 1rem;
}
.gif-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: 24px;
}
.gif-placeholder img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}
a:focus,
button:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ===== CONGRATULATIONS SECTION ===== */
.congratulations-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #8B1F1F 0%, #5C0F0F 50%, #3D0A0A 100%);
    position: relative;
}
.congratulations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(139, 0, 0, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(80, 10, 10, 0.3) 0%, transparent 50%);
    pointer-events: none;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.gif-column {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gif-column .gif-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 450px;
}
.gif-column .gif-placeholder::after {
    content: '';
    display: none;
}
.gif-column .gif-placeholder img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.text-column h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #fdfdfd!important;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.text-column h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.text-column .emphasis {
    font-size: 1.25rem;
    color: #FF6B6B;
    margin: 1.5rem 0;
    font-weight: 600;
}
.benefits {
    margin: 2rem 0;
}
.benefits h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}
.benefits-list {
    margin: 1rem 0 1.5rem 0;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--white);
}
.benefits-list svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}
.benefits p {
    font-size: 1rem;
    color: var(--white);
    margin-top: 1rem;
    line-height: 1.6;
}
.benefits strong {
    color: #FF6B6B;
    font-weight: 900;
    font-size: 1.125rem;
}
.discovery,
.difference {
    font-size: 1.125rem;
    color: var(--white);
    margin: 2rem 0;
    line-height: 1.6;
    font-weight: 600;
}
/* ===== EXPLANATION SECTION ===== */
.explanation-section {
    padding: 4rem 0;
    background: #F5E6E8;
}
.explanation-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.explanation-content h2 {
    font-size: 2rem;
    color: #8B1F1F;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.explanation-content h3 {
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.4;
}
.explanation-content h3 span {
    color: #DC143C;
}
.process-text {
    font-size: 1rem;
    color: #2C2C2C;
    margin: 1rem 0;
    line-height: 1.4;
}
.works {
    font-size: 1rem;
    color: #DC143C;
    margin: 1.5rem 0;
    font-weight: 700;
}
.powerful {
    font-size: 1rem;
    color: #2C2C2C;
    margin: 1rem 0;
    line-height: 1.4;
}
.powerful .lipedema {
    font-style: italic;
    font-weight: 700;
    color: #DC143C;
}
.process-text .bullet {
    color: #DC143C;
    font-weight: 700;
    margin: 0 0.25rem;
}
.process-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 600px;
}
.process-list li {
    font-size: 1rem;
    color: #2C2C2C;
    line-height: 1.6;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}
.process-list li::before {
    content: "•";
    color: #DC143C;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    color: var(--white);
}
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(80, 10, 10, 0.3) 0%, transparent 50%);
    pointer-events: none;
}
.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.logo-container {
    margin-bottom: 3rem;
}
.product-logo {
    max-width: 280px;
    height: auto;
}
.product-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.product-title .intro-text {
    color: var(--white);
    font-weight: 400;
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.product-name {
    color: #FF3B3B;
    display: block;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
}
.product-name:first-of-type {
    margin-bottom: 0.25rem;
}
.product-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--white);
}
.product-subtitle .lipedema {
    font-style: italic;
    color: #FF3B3B;
    font-weight: 700;
}

.product-text {
    max-width: 520px;
}
.product-description p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--white);
}
.product-description p:last-child {
    margin-top: 1.5rem;
    font-weight: 600;
}
.product-description strong {
    color: #FF3B3B;
    font-weight: 700;
}
.product-description .lipoblaze-name {
    color: #FF3B3B;
    font-weight: 700;
}
.goodbye {
    color: #FF3B3B !important;
    font-size: 1.125rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}
.cta-button {
    display: inline-block;
    background: #00D97E;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(0, 217, 126, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 217, 126, 0.5);
    background: #00E889;
}
.product-images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.product-section .scroll-indicator {
    margin-top: 3rem;
}
.product-section .scroll-indicator svg path {
    stroke: #FF3B3B;
}
.product-bottle {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(255, 59, 59, 0.3));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
    padding: 5rem 0;
    background: #F5F5F5;
    overflow: hidden;
}
.ingredients-section .container {
    padding: 0 3rem;
}
.ingredients-title {
    font-size: 2rem;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.ingredients-title .product-name {
    color: #DC143C;
}
.ingredients-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
}
.ingredients-list {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ingredients-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 60px;
    width: 4px;
    background: #DC143C;
    transform: translateX(-50%);
}
.ingredient-item {
    display: grid;
    grid-template-columns: 1fr 110px 1fr;
    max-width: 100%;
    margin: 0 0 4rem;
    position: relative;
    align-items: center;
    column-gap: 0;
}
.ingredient-item:not(.reverse) .ingredient-content:first-child {
    grid-column: 1;
    justify-self: end;
    padding-right: 2.5rem;
}
.ingredient-item:not(.reverse) .ingredient-icon {
    grid-column: 2;
}
.ingredient-item:not(.reverse) .ingredient-content:last-child {
    grid-column: 3;
    visibility: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}
.ingredient-item.reverse .ingredient-content:first-child {
    grid-column: 1;
    visibility: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}
.ingredient-item.reverse .ingredient-icon {
    grid-column: 2;
}
.ingredient-item.reverse .ingredient-content:last-child {
    grid-column: 3;
    justify-self: start;
    padding-left: 2.5rem;
}
.ingredient-content {
    padding: 1.75rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.ingredient-content h3 {
    font-size: 1.25rem;
    color: #DC143C;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.8rem;
}
.ingredient-item:not(.reverse) .ingredient-content h3 {
    text-align: right;
}
.ingredient-item.reverse .ingredient-content h3 {
    text-align: left;
}
.ingredient-content p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.4rem;
}
.ingredient-item:not(.reverse) .ingredient-content p {
    text-align: right;
}
.ingredient-item.reverse .ingredient-content p {
    text-align: left;
}
.ingredient-content span {
    font-weight: 700;
}
.ingredient-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}
.icon-circle {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    border: 4px solid #DC143C;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
    z-index: 5;
}
.icon-circle img {
    width: 102px;
    height: 102px;
    object-fit: cover;
}
/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #5C0F0F 0%, #3D0A0A 50%, #1A0000 100%);
    position: relative;
}
.comparison-section .container {
    position: relative;
    z-index: 1;
}
.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}
.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    font-weight: 700;
}
.comparison-section .product-name {
    color: #FF6B6B;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.comparison-column {
    max-width: 380px;
}
.comparison-column h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}
.with-product h3 {
    color: #FF6B6B;
}
.without-product h3 {
    color: #999;
}
.week-card {
    background: rgba(139, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.with-product .week-card {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(139, 0, 0, 0.25);
}
.without-product .week-card {
    border-color: rgba(153, 153, 153, 0.3);
    background: rgba(0, 0, 0, 0.3);
}
.week-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.2);
}
.week-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.with-product .week-card h4 {
    color: #FF6B6B;
}
.without-product .week-card h4 {
    color: #999;
}
.week-card p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
}
.comparison-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.comparison-image {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 107, 0.3));
    animation: float 4s ease-in-out infinite;
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: #FAFAFA;
}
.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}
.testimonials-section .highlight {
    color: #DC143C;
}
.testimonials-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1216px;
    margin: 0 auto 3rem;
}
.testimonials-section .scroll-indicator svg path {
    stroke: #DC143C;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}
.testimonial-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    overflow: hidden;
}
.testimonial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}
.badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, #DC143C 0%, #B8102D 100%);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 24px;
    font-weight: 900;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    letter-spacing: 0.5px;
}
.testimonial-content {
    padding: 1.75rem 1.5rem;
    background: var(--white);
}
.testimonial-content h3 {
    font-size: 1.125rem;
    color: #2C2C2C;
    margin-bottom: 0.875rem;
    font-weight: 700;
}
.testimonial-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
    font-style: italic;
}
/* ===== DIFFERENCE SECTION ===== */
.difference-section {
    padding: 5rem 0;
    background: #FFFFFF;
}
.difference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.difference-text h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #DC143C;
    margin-bottom: 1.5rem;
    letter-spacing: 0px;
    line-height: 1.2;
    text-transform: uppercase;
}
.difference-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.difference-text p {
    font-size: 1rem;
    color: #2C2C2C;
    margin: 0.75rem 0;
    line-height: 1.4;
}
.motivation {
    background: #FFF5F5;
    border: 2px solid #FFE0E0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}
.motivation p {
    font-size: 1rem;
    font-weight: 400;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.4;
}
.motivation .highlight-red {
    color: #DC143C;
    font-weight: 700;
}
.difference-gif {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}
.difference-gif .gif-placeholder {
    background: linear-gradient(135deg, #FFE5EA 0%, #FFD0DB 100%);
    border-radius: 24px;
    max-width: 450px;
    height: auto;
    min-height: 450px;
    position: relative;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.1);
    overflow: visible;
}
.difference-gif .gif-placeholder::after {
    content: '';
    display: none;
}
.difference-gif .gif-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 5rem 0;
    background: #FFF5F5;
    text-align: center;
}
.offer-title {
    font-size: 2.5rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.offer-intro {
    font-size: 1rem;
    color: #2C2C2C;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.offer-highlight {
    margin: 2rem 0;
}
.offer-highlight p {
    font-size: 1.125rem;
    color: #2C2C2C;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.offer-highlight .simple-text {
    font-size: 1.5rem;
    color: #DC143C;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
.offer-benefit {
    font-size: 1rem;
    color: #2C2C2C;
    margin: 2rem auto;
    line-height: 1.7;
    max-width: 800px;
}
.offer-benefit strong {
    font-weight: 700;
}
.offer-discount {
    margin: 2rem auto;
    max-width: 800px;
}
.offer-discount p {
    font-size: 1.125rem;
    color: #2C2C2C;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.offer-cta {
    margin: 2.5rem auto 3rem;
}
.offer-cta p {
    font-size: 1.25rem;
    color: #DC143C;
    font-weight: 700;
    line-height: 1.5;
    margin: 0.25rem 0;
}
.offer-section .highlight-red {
    color: #DC143C;
    font-weight: 700;
}
.offer-section .scroll-indicator svg path {
    stroke: #DC143C;
}
/* ===== ALERT BANNER ===== */
.alert-banner {
    background: #DC143C;
    padding: 1.5rem 0;
    text-align: center;
}
.alert-banner p {
    font-size: 1.75rem;
    color: #FFFF00;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}
.alert-banner .alert-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}
.alert-banner .alert-highlight {
    color: var(--white);
    font-weight: 900;
}
/* ===== COUNTDOWN BANNER ===== */
.countdown-banner {
    background: linear-gradient(135deg, #DC143C 0%, #B8102D 100%);
    padding: 1.25rem 0;
    text-align: center;
    border-bottom: 3px solid #8B0000;
}
.countdown-banner p {
    font-size: 1.75rem;
    color: #FFFF00;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}
.countdown-banner #countdown {
    color: var(--white);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 5rem 0 4rem;
    background: #F8F8F8;
}
.pricing-section h2 {
    font-size: 1.75rem;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}
.pricing-section .highlight {
    color: #DC143C;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-card {
    background: var(--white);
    border: 2px solid #2C2C2C;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.pricing-card.popular {
    border-color: #00C853;
    border-width: 3px;
}
.pricing-card.best-offer {
    background: linear-gradient(135deg, #8B1F1F 0%, #6B0F0F 100%);
    border-color: #5C0000;
    color: var(--white);
}
.best-offer .potes-title,
.best-offer .price-detail,
.best-offer .installment,
.best-offer .benefits-included,
.best-offer .benefits-included p,
.best-offer .benefits-included strong {
    color: var(--white);
}
.best-offer .price-large {
    color: var(--white);
}
.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #00C853;
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.best-offer-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #2C2C2C;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.7rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}
.potes-title {
    font-size: 1.125rem;
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-weight: 700;
}
.pricing-info {
    margin: 1rem 0;
}
.price-large {
    font-size: 2rem;
    font-weight: 900;
    color: #2C2C2C;
    margin-bottom: 0.25rem;
    line-height: 1;
}
.price-large.price-green {
    color: #00C853;
}
.price-detail {
    font-size: 0.95rem;
    color: #999999;
    margin-bottom: 0.5rem;
}
.installment {
    font-size: 0.85rem;
    color: #00B841;
    font-weight: 700;
    margin-top: 0.5rem;
}
.installment-green {
    color: #00B841;
}
.best-offer .installment {
    color: var(--white);
}
.benefits-included {
    text-align: left;
    margin: 1rem 0 1.25rem;
    font-size: 0.8rem;
    color: #2C2C2C;
    line-height: 1.4;
    flex-grow: 1;
}
.benefits-included strong {
    color: #2C2C2C;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}
.benefits-included p {
    margin: 0.25rem 0;
}
.buy-button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 900;
    border-radius: 8px;
    margin-top: auto;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.btn-red {
    background: linear-gradient(135deg, #FF6B6B, #DC143C);
    color: var(--white);
}
.btn-red:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.4);
}
.btn-green {
    background: #00C853;
    color: var(--white);
}
.btn-green:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4);
    background: #00B841;
}
.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
}
.btn-gold:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}
.pricing-section .scroll-indicator svg path {
    stroke: #DC143C;
}
/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A0000 0%, #000000 50%, #0A0A0A 100%);
    text-align: center;
    position: relative;
}
.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 0, 0, 0.4) 0%, transparent 60%);
    pointer-events: none;
}
.guarantee-section .container-small {
    position: relative;
    z-index: 1;
}
.guarantee-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}
.guarantee-subtitle {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
}
.guarantee-subtitle .lipoblaze-red {
    color: #DC143C;
    font-weight: 700;
}
.guarantee-subtitle .guarantee-highlight {
    color: #DC143C;
    font-weight: 900;
    text-transform: uppercase;
}
.guarantee-image {
    margin: 2rem auto;
    max-width: 400px;
}
.guarantee-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
}
.guarantee-intro {
    font-size: 1.5rem;
    color: var(--white);
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.guarantee-list {
    margin: 1rem auto 2.5rem;
    max-width: 700px;
}
.guarantee-list p {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.6;
    margin: 0.25rem 0;
}
.guarantee-promise {
    font-size: 1.875rem;
    font-weight: 900;
    color: #DC143C;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.4;
}
.guarantee-clear {
    font-size: 1.25rem;
    color: var(--white);
    margin: 1rem 0 2rem;
    font-weight: 400;
}
.guarantee-section .scroll-indicator svg path {
    stroke: #DC143C;
}
/* ===== CHOICE SECTION ===== */
.choice-section {
    padding: 5rem 0;
    background: #F8F8F8;
}
.choice-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
    font-weight: 700;
}
.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.choice-card {
    padding: 2rem 1.75rem;
    border-radius: 16px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.choice-card.card-white {
    background: var(--white);
    border: 2px solid #E0E0E0;
}
.choice-card.card-red {
    background: linear-gradient(135deg, #C41E3A 0%, #A01828 100%);
    border: 2px solid #8B0000;
}
.choice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.choice-card.card-white h3 {
    color: #2C2C2C;
}
.choice-card.card-red h3 {
    color: var(--white);
}
.choice-card p {
    font-size: 1rem;
    line-height: 1.4;
}
.choice-card.card-white p {
    color: #2C2C2C;
}
.choice-card.card-red p {
    color: var(--white);
}
.choice-card p strong {
    font-weight: 700;
}
.choice-question {
    font-size: 1.75rem;
    text-align: center;
    color: #2C2C2C;
    margin-top: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}
.choice-question strong {
    color: #DC143C;
    font-weight: 900;
}
/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 0;
    background: #F5F5F5;
}
.faq-section h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
    font-weight: 400;
}
.faq-section .highlight {
    color: #DC143C;
    font-weight: 700;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.faq-item {
    margin-bottom: 0.75rem;
}
.faq-question {
    width: 100%;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}
.faq-question:hover {
    border-color: #DC143C;
    background: #FFF5F5;
}
.faq-question h3 {
    font-size: 1rem;
    color: #2C2C2C;
    font-weight: 600;
    margin: 0;
    flex: 1;
}
.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: #2C2C2C;
}
.faq-item.active .faq-question {
    border-color: #DC143C;
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #DC143C;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #FAFAFA;
    border: 2px solid #E0E0E0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.faq-item.active .faq-answer {
    max-height: 800px;
}
.faq-answer p {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.faq-answer p:first-child {
    padding-top: 1.25rem;
}
.faq-answer p:last-child {
    padding-bottom: 1.25rem;
}
.faq-answer ul {
    padding: 0 1.5rem 1.25rem 3rem;
    margin: 0;
    list-style: disc;
}
.faq-answer li {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
/* ===== FOOTER ===== */
.footer {
    background: #000000;
    color: var(--white);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
}
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.footer-column li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}
.footer-column svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}
.footer-column a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.85);
}
.footer-column a:hover {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    gap: 2rem;
}
.footer-logo {
    max-width: 150px;
    flex-shrink: 0;
}
.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 100%;
    line-height: 1.6;
    text-align: right;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 var(--container-padding-tablet);
    }
    .container-small {
        padding: 0 var(--container-padding-tablet);
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 2rem;
    }
    .hero-content,
    .content-grid,
    .product-content,
    .difference-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .difference-gif .gif-placeholder {
        max-width: 400px;
        height: auto;
        min-height: 400px;
        margin: 0 auto;
    }
    .ingredients-list {
        max-width: 100%;
        padding: 1rem 0;
    }
    .ingredients-list::before {
        display: none;
    }
    .ingredient-item,
    .ingredient-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .ingredient-item .ingredient-content:first-child,
    .ingredient-item .ingredient-content:last-child,
    .ingredient-item.reverse .ingredient-content:first-child,
    .ingredient-item.reverse .ingredient-content:last-child {
        display: block !important;
        grid-column: auto !important;
        justify-self: center !important;
        text-align: center !important;
        margin: 0 !important;
    }
    .ingredient-item .ingredient-content:last-child:empty,
    .ingredient-item.reverse .ingredient-content:first-child:empty {
        display: none !important;
    }
    .ingredient-icon {
        grid-column: auto !important;
        margin: 0 auto !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
    }
    .icon-circle {
        width: 90px;
        height: 90px;
    }
    .icon-circle img {
        width: 82px;
        height: 82px;
    }
    .ingredient-content h3 {
        text-align: center !important;
    }
    .ingredient-content p {
        text-align: center !important;
    }
    .comparison-section h2 {
        font-size: 1.75rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .comparison-visual {
        order: 2;
        margin: 2rem 0;
    }
    .comparison-image {
        max-width: 280px;
    }
    .comparison-section {
        padding: 3rem 0;
    }
    .comparison-section::before {
        background: radial-gradient(ellipse at 50% 30%, rgba(139, 0, 0, 0.2) 0%, transparent 60%);
    }
    .comparison-column h3 {
        font-size: 1.5rem;
    }
    .week-card {
        padding: 1.25rem;
    }
    .week-card h4 {
        font-size: 0.95rem;
    }
    .week-card p {
        font-size: 0.85rem;
    }
    .testimonials-section {
        padding: 3rem 0;
    }
    .testimonials-section h2 {
        font-size: 1.75rem;
    }
    .testimonials-subtitle {
        font-size: 0.95rem;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .testimonial-image {
        height: 350px;
    }
    .badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        top: 1rem;
        left: 1rem;
    }
    .testimonial-content {
        padding: 1.5rem 1.25rem;
    }
    .testimonial-content h3 {
        font-size: 1rem;
    }
    .testimonial-content p {
        font-size: 0.875rem;
    }
    .pricing-section h2 {
        font-size: 1.5rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-image {
        max-width: 120px;
    }
    .potes-title {
        font-size: 1rem;
    }
    .price-large {
        font-size: 1.75rem;
    }
    .benefits-included {
        font-size: 0.75rem;
    }
    .buy-button {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }
    .choice-section h2 {
        font-size: 2rem;
    }
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .choice-divider {
        display: none;
    }
    .choice-card {
        min-height: auto;
        padding: 1.75rem 1.5rem;
    }
    .choice-card h3 {
        font-size: 1.125rem;
    }
    .choice-card p {
        font-size: 0.95rem;
    }
    .choice-question {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-section h2 {
        font-size: 2rem;
    }
    .guarantee-subtitle {
        font-size: 1.5rem;
    }
    .guarantee-image {
        max-width: 350px;
    }
    .guarantee-intro {
        font-size: 1.375rem;
    }
    .guarantee-list p {
        font-size: 1.25rem;
    }
    .guarantee-promise {
        font-size: 1.625rem;
    }
    .guarantee-clear {
        font-size: 1.125rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    html {
        font-size: 16px;
    }
    .container,
    .container-small {
        padding: 0 1.25rem;
    }
    .hero-section {
        padding: 2rem 0 2.5rem;
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    .congratulations-section {
        padding: 2.5rem 0 3rem;
        background: linear-gradient(180deg, #8B1F1F 0%, #5C0F0F 50%, #3D0A0A 100%);
    }
    .congratulations-section::before {
        background: radial-gradient(ellipse at 30% 40%, rgba(139, 0, 0, 0.3) 0%, transparent 50%);
    }
    .congratulations-section .scroll-indicator svg path {
        stroke: #FF6B6B;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    .social-proof {
        margin-top: 1.5rem;
    }
    .social-proof svg {
        width: 24px;
        height: 28px;
    }
    .social-proof span {
        font-size: 0.9375rem;
    }
    .gif-placeholder {
        max-width: 320px;
        height: auto;
        min-height: 220px;
        margin: 0 auto;
    }
    .hero-gif .gif-placeholder {
        height: auto;
        min-height: 220px;
    }
    .hero-mockup {
        max-width: 320px;
        filter: drop-shadow(0 15px 35px rgba(220, 20, 60, 0.2));
    }
    .text-column h2 {
        font-size: 1.75rem;
        color: #FF6B6B;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    .text-column h3 {
        font-size: 1.125rem;
        color: var(--white);
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .text-column .emphasis {
        font-size: 1.125rem;
        color: #FF6B6B;
        margin: 1.25rem 0;
        line-height: 1.4;
    }
    .benefits h4 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    .benefits-list li {
        font-size: 0.9375rem;
        padding: 0.3rem 0;
    }
    .benefits p {
        font-size: 0.9375rem;
        margin-top: 0.875rem;
    }
    .discovery,
    .difference {
        font-size: 1rem;
        color: var(--white);
        margin: 1.5rem 0;
        line-height: 1.5;
    }
    .product-section {
        padding: 2.5rem 0;
    }
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
    .logo-container {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .product-logo {
        max-width: 240px;
    }
    .product-title {
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: center;
    }
    .product-title .intro-text {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .product-name {
        font-size: 2rem;
        line-height: 1.1;
    }
    .product-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .product-description {
        margin: 1.5rem 0;
        text-align: center;
    }
    .product-description p {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
        display: block;
        text-align: center;
        max-width: 300px;
        margin: 1.5rem auto 0;
    }
    .product-text {
        max-width: 100%;
    }
    .product-images {
        margin-top: 2rem;
        order: -1;
    }
    .product-bottle {
        max-width: 280px;
    }
    .explanation-section {
        padding: 2.5rem 0;
    }
    .explanation-content h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    .explanation-content h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    .process-text,
    .works,
    .powerful {
        font-size: 0.9375rem;
        line-height: 1.5;
        padding: 0;
    }
    .powerful {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .ingredients-section {
        padding: 2.5rem 0 3rem;
    }
    .ingredients-section .container {
        padding: 0 1.25rem;
    }
    .ingredients-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    .ingredients-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    .ingredients-list {
        padding: 0;
    }
    .ingredients-list::before {
        display: none;
    }
    .ingredient-item,
    .ingredient-item.reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .ingredient-content {
        padding: 1.25rem;
        text-align: center !important;
    }
    .ingredient-content h3 {
        font-size: 1.125rem;
        text-align: center !important;
        margin-bottom: 0.625rem;
    }
    .ingredient-content p {
        font-size: 0.875rem;
        line-height: 1.4;
        text-align: center !important;
    }
    .ingredient-item .ingredient-content:last-child:empty,
    .ingredient-item.reverse .ingredient-content:first-child:empty {
        display: none !important;
    }
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    .icon-circle img {
        width: 72px;
        height: 72px;
    }
    .comparison-section {
        padding: 2.5rem 0 3rem;
    }
    .comparison-section h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 2rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .comparison-column {
        max-width: 100%;
    }
    .comparison-column h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .comparison-visual {
        order: 2;
        margin-top: 1.5rem;
    }
    .comparison-image {
        max-width: 240px;
    }
    .week-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    .week-card h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.625rem;
    }
    .week-card p {
        font-size: 0.875rem;
    }
    .testimonials-section {
        padding: 2.5rem 0 3rem;
    }
    .testimonials-section h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    .testimonials-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    .testimonial-card {
        border-radius: 12px;
    }
    .testimonial-image {
        height: 380px;
    }
    .badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        top: 1rem;
        left: 1rem;
    }
    .testimonial-content {
        padding: 1.5rem;
    }
    .testimonial-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    .testimonial-content p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    .difference-section {
        padding: 2.5rem 0;
    }
    .difference-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .difference-text h2 {
        font-size: 1.75rem;
        letter-spacing: 0px;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }
    .difference-text h4 {
        font-size: 1.125rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .difference-text p {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin: 1rem 0;
    }
    .motivation {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    .motivation p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .difference-gif {
        order: -1;
    }
    .difference-gif .gif-placeholder {
        height: auto;
        min-height: 240px;
        max-width: 320px;
        margin: 0 auto;
    }
    .offer-section {
        padding: 2.5rem 0;
    }
    .offer-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    .offer-intro {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    .offer-highlight p {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    .offer-highlight .simple-text {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-top: 0.5rem;
    }
    .offer-benefit {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin: 1.25rem auto;
    }
    .offer-discount p {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    .offer-cta p {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 0.5rem 0;
    }
    .alert-banner {
        padding: 1rem 0;
    }
    .alert-banner p {
        font-size: 1.125rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    .alert-banner .alert-icon {
        font-size: 1.375rem;
    }
    .countdown-banner {
        padding: 1rem 0;
    }
    .countdown-banner p {
        font-size: 1.125rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    .pricing-section {
        padding: 2.5rem 0 3rem;
    }
    .pricing-section h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    .pricing-card.popular,
    .pricing-card.best-offer {
        transform: scale(1);
    }
    .pricing-image {
        width: 140px;
        height: 140px;
        margin: 0 auto 1rem;
    }
    .potes-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .price-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .price-detail {
        font-size: 1rem;
    }
    .installment {
        font-size: 0.875rem;
    }
    .benefits-included {
        font-size: 0.875rem;
        line-height: 1.5;
        margin: 1rem 0 1.25rem;
    }
    .benefits-included strong {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    .buy-button {
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
    }
    .popular-badge,
    .best-offer-badge {
        font-size: 0.65rem;
        padding: 0.375rem 1rem;
    }
    .guarantee-section {
        padding: 2.5rem 0 3rem;
    }
    .guarantee-section h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    .guarantee-subtitle {
        font-size: 1.375rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    .guarantee-image {
        max-width: 280px;
        margin: 1.5rem auto;
    }
    .guarantee-intro {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 1.5rem 0 1rem;
    }
    .guarantee-list {
        margin: 1rem auto 1.5rem;
    }
    .guarantee-list p {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    .guarantee-promise {
        font-size: 1.625rem;
        line-height: 1.25;
        margin: 1.5rem 0 1rem;
    }
    .guarantee-clear {
        font-size: 1.125rem;
        line-height: 1.3;
        margin: 0.75rem 0 1.5rem;
    }
    .choice-section {
        padding: 2.5rem 0;
    }
    .choice-section h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 2rem;
    }
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .choice-divider {
        display: none;
    }
    .choice-card {
        padding: 1.25rem 1rem;
        min-height: auto;
    }
    .choice-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    .choice-card p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .choice-question {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-top: 0;
    }
    .faq-section {
        padding: 2.5rem 0;
    }
    .faq-section h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .faq-item {
        margin-bottom: 0.5rem;
    }
    .faq-question {
        padding: 1rem 1.125rem;
    }
    .faq-question h3 {
        font-size: 0.9375rem;
        line-height: 1.3;
    }
    .faq-question svg {
        width: 20px;
        height: 20px;
    }
    .faq-answer p {
        padding: 1rem 1.125rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .footer-column li {
        font-size: 0.875rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        align-items: center;
        padding-top: 1.5rem;
    }
    .footer-logo {
        max-width: 140px;
    }
    .copyright {
        text-align: center;
        font-size: 0.75rem;
        line-height: 1.5;
    }
    .scroll-indicator {
        margin-top: 2rem;
    }
    .scroll-indicator svg {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 479px) {
    html {
        font-size: 15px;
    }
    .container,
    .container-small {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    .hero-description {
        font-size: 0.9375rem;
    }
    .social-proof svg {
        width: 20px;
        height: 24px;
    }
    .social-proof span {
        font-size: 0.875rem;
    }
    .gif-placeholder {
        max-width: 280px;
        height: auto;
        min-height: 200px;
        margin: 0 auto;
    }
    .hero-gif .gif-placeholder {
        height: auto;
        min-height: 200px;
    }
    .hero-mockup {
        max-width: 280px;
        filter: drop-shadow(0 12px 30px rgba(220, 20, 60, 0.18));
    }
    .congratulations-section .text-column h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .congratulations-section .text-column h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    .congratulations-section .emphasis,
    .congratulations-section .discovery,
    .congratulations-section .difference {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .congratulations-section .benefits h4 {
        font-size: 0.9375rem;
    }
    .congratulations-section .benefits-list li {
        font-size: 0.875rem;
    }
    .congratulations-section .benefits p {
        font-size: 0.875rem;
    }
    .product-section {
        padding: 2rem 0;
    }
    .product-logo {
        max-width: 200px;
    }
    .product-title {
        font-size: 1.375rem;
        line-height: 1.2;
    }
    .product-title .intro-text {
        font-size: 1.125rem;
    }
    .product-name {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    .product-subtitle {
        font-size: 0.9375rem;
    }
    .product-description p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        max-width: 280px;
    }
    .product-text {
        max-width: 100%;
    }
    .product-bottle {
        max-width: 240px;
    }
    .explanation-section {
        padding: 2rem 0;
    }
    .explanation-content h2 {
        font-size: 1.375rem;
        line-height: 1.25;
    }
    .explanation-content h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    .process-text,
    .works,
    .powerful {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .powerful {
        padding: 0 0.5rem;
    }
    .comparison-section {
        padding: 2rem 0;
    }
    .comparison-section h2 {
        font-size: 1.375rem;
        line-height: 1.25;
        padding: 0 0.5rem;
    }
    .comparison-column h3 {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    .week-card {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    .week-card h4 {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    .week-card p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    .comparison-image {
        max-width: 220px;
    }
    .difference-section {
        padding: 2rem 0;
    }
    .difference-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .difference-text h2 {
        font-size: 1.625rem;
        line-height: 1.1;
    }
    .difference-text h4 {
        font-size: 1.0625rem;
        line-height: 1.3;
    }
    .difference-text p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .motivation {
        padding: 0.875rem;
        margin: 1rem 0;
    }
    .motivation p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .difference-gif .gif-placeholder {
        height: auto;
        min-height: 200px;
        max-width: 280px;
        margin: 0 auto;
    }
    .ingredients-section {
        padding: 2rem 0;
    }
    .ingredients-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .ingredients-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    .ingredients-list {
        max-width: 100%;
        padding: 0;
    }
    .ingredient-item,
    .ingredient-item.reverse {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }
    .ingredient-content {
        padding: 1rem;
    }
    .ingredient-content h3 {
        font-size: 1rem;
        text-align: center !important;
        line-height: 1.3;
    }
    .ingredient-content p {
        font-size: 0.8125rem;
        text-align: center !important;
        line-height: 1.4;
    }
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    .icon-circle img {
        width: 62px;
        height: 62px;
    }
    .testimonials-section {
        padding: 2rem 0;
    }
    .testimonials-section h2 {
        font-size: 1.375rem;
        line-height: 1.25;
    }
    .testimonials-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    .testimonial-card {
        border-radius: 12px;
    }
    .testimonial-image {
        height: 320px;
    }
    .badge {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
        top: 0.875rem;
        left: 0.875rem;
    }
    .testimonial-content {
        padding: 1.25rem;
    }
    .testimonial-content h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    .testimonial-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .pricing-section {
        padding: 2rem 0;
    }
    .pricing-section h2 {
        font-size: 1.25rem;
        line-height: 1.25;
        padding: 0 0.5rem;
    }
    .pricing-grid {
        gap: 1.25rem;
    }
    .pricing-card {
        padding: 1.25rem 1rem;
    }
    .pricing-image {
        width: 120px;
        height: 120px;
    }
    .potes-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    .price-large {
        font-size: 1.75rem;
    }
    .price-detail {
        font-size: 0.875rem;
    }
    .installment {
        font-size: 0.75rem;
    }
    .popular-badge,
    .best-offer-badge {
        font-size: 0.625rem;
        padding: 0.3125rem 0.875rem;
    }
    .benefits-included {
        font-size: 0.75rem;
        line-height: 1.5;
        margin: 0.875rem 0 1rem;
    }
    .benefits-included strong {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    .buy-button {
        font-size: 0.8125rem;
        padding: 0.875rem 1.125rem;
    }
    .offer-section {
        padding: 2rem 0;
    }
    .offer-title {
        font-size: 1.625rem;
        line-height: 1.2;
    }
    .offer-intro {
        font-size: 0.875rem;
    }
    .offer-highlight p {
        font-size: 1rem;
    }
    .offer-highlight .simple-text {
        font-size: 1.375rem;
    }
    .offer-benefit {
        font-size: 0.875rem;
    }
    .offer-discount p {
        font-size: 1rem;
    }
    .offer-cta p {
        font-size: 1.125rem;
    }
    .guarantee-section {
        padding: 2rem 0;
    }
    .guarantee-section h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 0.5rem;
    }
    .guarantee-subtitle {
        font-size: 1.125rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    .guarantee-image {
        max-width: 240px;
        margin: 1.25rem auto;
    }
    .guarantee-intro {
        font-size: 1.125rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    .guarantee-list {
        padding: 0 0.5rem;
    }
    .guarantee-list p {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    .guarantee-promise {
        font-size: 1.375rem;
        line-height: 1.25;
    }
    .guarantee-clear {
        font-size: 1rem;
        line-height: 1.3;
    }
    .choice-section {
        padding: 2rem 0;
    }
    .choice-section h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 0.5rem;
    }
    .choice-grid {
        gap: 1rem;
    }
    .choice-card {
        padding: 1rem 0.875rem;
        min-height: auto;
    }
    .choice-card h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    .choice-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .choice-question {
        font-size: 1.25rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    .countdown-banner {
        padding: 0.875rem 0;
    }
    .countdown-banner p {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    .alert-banner {
        padding: 0.875rem 0;
    }
    .alert-banner p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .faq-section {
        padding: 2rem 0;
    }
    .faq-section h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 0.5rem;
    }
    .faq-question {
        padding: 0.875rem 1rem;
    }
    .faq-question h3 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    .faq-answer p {
        font-size: 0.8125rem;
        line-height: 1.5;
        padding: 0.875rem 1rem;
    }
    .footer {
        padding: 2rem 0 1.25rem;
    }
    .footer-column h3 {
        font-size: 0.9375rem;
    }
    .footer-column li {
        font-size: 0.8125rem;
    }
    .copyright {
        font-size: 0.6875rem;
        line-height: 1.5;
        text-align: center;
    }
    .scroll-indicator {
        margin-top: 1.5rem;
    }
    .scroll-indicator svg {
        width: 40px;
        height: 40px;
    }
}
/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}
.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: var(--white);
    margin: 2rem auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}
.modal-content h2 {
    background: linear-gradient(135deg, #DC143C 0%, #B8102D 100%);
    color: var(--white);
    padding: 1.75rem 3rem 1.75rem 2rem;
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 16px 16px 0 0;
}
.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(85vh - 100px);
}
.modal-body h3 {
    color: #DC143C;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.modal-body h3:first-of-type {
    margin-top: 0;
}
.modal-body p {
    color: #2C2C2C;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.modal-body ul li {
    color: #2C2C2C;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style: disc;
}
.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.modal-close:hover,
.modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .modal-content {
        width: 95%;
        margin: 1rem auto;
        max-height: 90vh;
    }
    .modal-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }
    .modal-body {
        padding: 1.5rem;
        max-height: calc(90vh - 80px);
    }
    .modal-body h3 {
        font-size: 1.125rem;
    }
    .modal-body p,
    .modal-body ul li {
        font-size: 0.9375rem;
    }
    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
}
@media (max-width: 479px) {
    .modal-content h2 {
        font-size: 1.25rem;
        padding: 1.25rem 2.75rem 1.25rem 1.25rem;
    }
    .modal-body {
        padding: 1.25rem;
    }
    .modal-body h3 {
        font-size: 1rem;
    }
    .modal-body p,
    .modal-body ul li {
        font-size: 0.875rem;
    }
}
