/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-beige: #F5F1EB;
    --color-beige-dark: #E8E3DB;
    --color-grey: #6B6B6B;
    --color-grey-light: #9B9B9B;
    --color-grey-dark: #3A3A3A;
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-accent: #8B7355;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-beige);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;       /* cubre toda la altura de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
    padding: 1rem 0 0.5rem; /* quita aire superior */
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    filter: grayscale(100%) brightness(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}



.hero-logo {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0.10rem;
}

.hero-logo img {
    height: 250px;       /* mitad exacta */
    width: auto;
    display: block;
    margin: 0 auto;
}


.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    color: var(--color-black);
    margin-bottom: 0.25rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-grey-dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-grey);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1.25rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-black);
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button:hover {
    background-color: var(--color-grey-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(26, 26, 26, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Transparency Section */
.transparency {
    background-color: var(--color-beige-dark);
    padding: 3rem 0;
}

.transparency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.transparency-text {
    font-size: 1.125rem;
    color: var(--color-grey-dark);
    margin-bottom: 0.75rem;
}

.transparency-text-strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    text-align: center;
}

/* Problem Section */
.problem {
    background-color: var(--color-white);
}

.problem-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.problem-image-left {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.problem-image-left img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) brightness(0.98);
    transition: transform 0.5s ease;
}

.problem-image-left:hover img {
    transform: scale(1.02);
}

.problem-content {
    width: 100%;
}

.problem-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-beige);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.problem-item .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-item .icon svg {
    width: 100%;
    height: 100%;
}

.problem-item p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--color-grey-dark);
}

.problem-cta {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-grey-dark);
    margin-top: 2rem;
    font-weight: 500;
}

/* Promise Section */
.promise {
    background-color: var(--color-beige-dark);
}

.promise-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promise-content {
    width: 100%;
}

.promise-image-right {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    order: -1;
}

.promise-image-right img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) brightness(0.98);
    transition: transform 0.5s ease;
}

.promise-image-right:hover img {
    transform: scale(1.02);
}

.promise-intro {
    font-size: 1.25rem;
    color: var(--color-grey-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.promise-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promise-text strong {
    color: var(--color-black);
    font-weight: 600;
}

.promise-box {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--color-accent);
}

.promise-highlight {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.promise-highlight:last-child {
    margin-bottom: 0;
}

.promise-highlight::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* Real Content Section */
.real-content {
    background-color: var(--color-white);
}

.real-content-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-grey-dark);
    margin-bottom: 3rem;
}

.real-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.real-content-item {
    text-align: center;
}

.real-content-item h3 {
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.content-preview {
    background-color: var(--color-beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.content-preview:hover {
    transform: translateY(-5px);
}

.content-preview img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%) brightness(0.98);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.content-preview img:hover {
    transform: scale(1.02);
    filter: grayscale(0%) brightness(1);
}

.preview-note {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--color-grey);
    margin: 0;
    background-color: var(--color-white);
}

/* Contents Section */
.contents {
    background-color: var(--color-beige-dark);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-beige);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

.content-icon svg {
    width: 100%;
    height: 100%;
}

.content-item h3 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.content-item p {
    color: var(--color-grey);
    font-size: 1rem;
    margin: 0;
}

/* For Who Section */
.for-who {
    background-color: var(--color-beige-dark);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.for-who-box {
    padding: 2.5rem;
    border-radius: 12px;
    background-color: var(--color-white);
}

.for-who-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.for-who-box h2 svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.for-who-box ul {
    list-style: none;
}

.for-who-box li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--color-grey-dark);
}

.for-who-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Price Section */
.price {
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-white) 100%);
}

.price-box {
    text-align: center;
    padding: 3rem;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.price-old {
    margin-bottom: 1rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount-old {
    font-size: 1.5rem;
    color: var(--color-grey-light);
    text-decoration: line-through;
    display: block;
}

.price-new {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-black);
    display: block;
    margin-top: 0.5rem;
}

.price-note {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.price-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-features p {
    font-size: 0.95rem;
    color: var(--color-grey-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-features svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Reviews Section */
.reviews {
    background-color: var(--color-beige-dark);
}

.reviews-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-grey-dark);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFB800;
}

.review-stars svg {
    width: 20px;
    height: 20px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    text-align: right;
}

/* FAQ Section */
.faq {
    background-color: var(--color-white);
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-beige-dark);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--color-beige);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-beige-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    background-color: var(--color-white);
}

.faq-answer p {
    margin: 0;
    color: var(--color-grey-dark);
    line-height: 1.8;
}

/* Final Warning Section */
.final-warning {
    background-color: var(--color-beige-dark);
    padding: 3rem 0;
}

.warning-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-accent);
}

.warning-text {
    font-size: 1.125rem;
    color: var(--color-grey-dark);
    margin-bottom: 1rem;
}

.warning-text-strong {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-grey-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-beige);
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-grey-light);
}

.final-cta .cta-button {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.final-cta .cta-button:hover {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    max-width: 90%;
    max-height: 90vh;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
    overflow-y: auto;
}

.modal-content img {
    max-width: 100%;
    height: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1002;
}

.modal-close:hover {
    background-color: var(--color-beige);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-grey-light);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-grey-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-separator {
    color: var(--color-grey-light);
    margin: 0 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-grey-dark);
    line-height: 1.6;
}

.cookie-link {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--color-black);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background-color: var(--color-black);
    color: var(--color-white);
}

.cookie-accept:hover {
    background-color: var(--color-grey-dark);
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: transparent;
    color: var(--color-grey-dark);
    border: 2px solid var(--color-grey-light);
}

.cookie-reject:hover {
    background-color: var(--color-beige);
    border-color: var(--color-grey-dark);
}

/* Legal Modals */
.modal-legal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 2rem auto;
    scroll-behavior: smooth;
    display: block;
}

.modal-legal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-legal-content::-webkit-scrollbar-track {
    background: var(--color-beige);
    border-radius: 4px;
}

.modal-legal-content::-webkit-scrollbar-thumb {
    background: var(--color-grey-light);
    border-radius: 4px;
}

.modal-legal-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-grey);
}

.legal-content {
    color: var(--color-black);
}

.legal-content h2 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--color-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h4 {
    color: var(--color-grey-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content p {
    color: var(--color-grey-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--color-grey-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--color-black);
    font-weight: 600;
}

.legal-link-inline {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

.legal-link-inline:hover {
    color: var(--color-black);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 968px) {
    .problem-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-image-left {
        order: -1;
    }

    .promise-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promise-image-right {
        order: -1;
    }

    .real-content-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 95%;
        padding: 1.5rem;
    }

    .modal-image {
        max-height: 80vh;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

   

    .hero-image {
        opacity: 0.1;
    }

    .hero-logo {
        margin-bottom: 0.15rem;
    }

    .hero-logo img {
        max-width: 400px;
    }

    .transparency-box {
        padding: 2rem 1.5rem;
    }

    .warning-box {
        padding: 2rem 1.5rem;
    }

    .problem-wrapper {
        gap: 1.5rem;
    }

    .promise-wrapper {
        gap: 1.5rem;
    }

    .contents-grid {
        grid-template-columns: 1fr;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .price-box {
        padding: 2rem 1.5rem;
    }

    .price-features {
        gap: 0.5rem;
    }

    .price-features p {
        font-size: 0.85rem;
        justify-content: flex-start;
    }

    .cta-button {
        padding: 1rem 2rem;
    }

    .cta-button.large {
        padding: 1.25rem 2.5rem;
    }

    .cookie-banner {
        padding: 1.25rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-separator {
        display: none;
    }

    .modal-legal-content {
        padding: 1.25rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .legal-content h4 {
        font-size: 1.125rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviews-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .problem-item {
        padding: 1rem;
    }

    .promise-box {
        padding: 1.5rem;
    }

    .content-item {
        padding: 1.5rem;
    }

    .for-who-box {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-button {
        flex: 1;
    }

    .modal-legal-content {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.25rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

