@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --creme: #FAF9F6;
    --terra: #BA4A00;
    --terra-light: #D37C5A;
    --terra-dark: #A03E00;
    --deep: #1A1A1A;
    --deep-light: #3D2B24;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --white: #ffffff;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--creme);
    color: var(--deep);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

.badge {
    display: inline-block;
    border: 1px solid var(--gray-300);
    border-radius: 9999px;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--terra);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--terra-dark);
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button.secondary {
    background-color: var(--terra-light);
}

.cta-button.primary-large {
    width: 100%;
    border-radius: 1rem;
    padding: 1.5rem;
}

section {
    padding: 5rem 1rem;
}

section>h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--deep-light);
}

section>p {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
    color: var(--gray-500);
    font-size: 1.125rem;
}

.hero {
    padding: 4rem 1rem 3rem;
    text-align: center;
}

.hero-content {
    max-width: 72rem;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.highlight {
    display: block;
    color: var(--terra);
    font-style: italic;
}

.highlight-italic {
    color: var(--terra);
    font-style: italic;
}

.subtitle {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    color: var(--gray-500);
    font-size: 1.125rem;
}

.video-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--white);
    aspect-ratio: 16 / 9;
    background-color: var(--deep);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--deep);
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-facade:hover img {
    opacity: 0.9;
}

.play-button {
    position: absolute;
    width: 68px;
    height: 48px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-facade:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    margin-top: 1.25rem;
    font-weight: 500;
}

.cards-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--gray-100);
    text-align: center;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background-color: #FDF6F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--terra);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--deep-light);
}

.solution-card {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--deep-light);
    color: var(--white);
    padding: 3.5rem;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.solution-icon-wrapper {
    flex-shrink: 0;
}

.solution-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--terra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #4D3A32;
    color: var(--white);
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.solution-text p {
    text-align: left;
    margin: 0;
    color: var(--gray-300);
    font-size: 1.125rem;
}

.text-highlight {
    color: var(--terra-light);
    font-weight: 700;
}

.pillars {
    text-align: center;
}

.pillars-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: left;
}

.pillar-card {
    background: var(--white);
    border-radius: 2.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(249, 250, 251, 0.5);
    transition: box-shadow 0.5s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    box-shadow: 0 30px 70px -15px rgba(186, 74, 0, 0.1);
}

.pillar-number {
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    font-size: 12rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--terra);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
    z-index: -1;
}

.pillar-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--terra-light);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(186, 74, 0, 0.2);
    color: var(--white);
}

.pillar-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--deep-light);
}

.pillar-subtitle {
    display: block;
    color: var(--terra);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pillar-content p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.testimonials {
    background-color: var(--white);
}

.testimonials-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    color: var(--deep);
}

.cards-container {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
    background: var(--creme);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.avatar-container {
    margin-bottom: 1rem;
}

.avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    filter: grayscale(30%);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #EAB308;
    margin-bottom: 0.75rem;
}

blockquote {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    flex: 1;
}

.author-info {
    margin-top: auto;
}

cite {
    font-weight: 700;
    font-style: normal;
    display: block;
    font-size: 1rem;
    color: var(--deep);
}

.role {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 600;
    margin-top: 0.25rem;
}

.testimonials-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
    margin-top: 3rem;
}

.testimonials-footer .line {
    height: 1px;
    width: 3rem;
    background: var(--gray-300);
}

.testimonials-footer span {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.timeline-section {
    background-color: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--terra);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.show .timeline-icon {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

.timeline-content {
    width: calc(50% - 2.5rem);
    background: var(--creme);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.day-badge {
    color: var(--terra);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.bonus-section {
    text-align: center;
}

.bonus-section .badge {
    background-color: var(--terra-light);
    color: var(--white);
    border: none;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.bonus-card {
    background: var(--white);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-100);
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: box-shadow 0.3s;
    min-height: 11rem;
}

.bonus-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.bonus-card figure {
    width: 25%;
    background: var(--gray-50);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bonus-card img {
    max-height: 7.5rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.bonus-card:hover img {
    transform: scale(1.1);
}

.bonus-content {
    padding: 1.25rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-tag {
    background: var(--terra-light);
    color: var(--white);
    font-size: 0.56rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
    align-self: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--deep-light);
}

.bonus-content p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.pricing {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.old-price {
    display: block;
    color: var(--gray-400);
    text-decoration: line-through;
    font-size: 0.875rem;
    font-weight: 700;
}

.new-price {
    display: flex;
    flex-direction: column;
    color: #16a34a;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: right;
}

.new-price::before {
    content: 'HOJE PARA VOCÊ:';
    font-size: 0.56rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.125rem;
}

.guarantee-container {
    max-width: 56rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.guarantee-container figure {
    flex-shrink: 0;
    width: 15rem;
}

.guarantee-container img {
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    height: auto;
}

.guarantee-info {
    flex: 1;
}

.guarantee-info .badge {
    background-color: #FDF6F0;
    color: var(--terra-light);
    border: none;
}

.guarantee-info h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.guarantee-info p {
    text-align: left;
    margin: 0 0 2rem 0;
}

.offer-section {
    background: var(--deep-light);
    padding: 5rem 1rem;
}

.offer-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.offer-wrapper>.badge {
    color: var(--terra-light);
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.offer-wrapper>h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--white);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.offer-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.offer-includes {
    list-style: none;
    color: var(--deep-light);
}

.offer-includes li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.offer-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 800;
}

.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase .blur-bg {
    position: absolute;
    inset: 0;
    background: rgba(211, 124, 90, 0.05);
    filter: blur(40px);
    border-radius: 50%;
    transform: scale(0.9);
    z-index: 0;
}

.product-showcase img {
    border-radius: 0.75rem;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
}

.access-badge {
    position: absolute;
    bottom: 3rem;
    right: -1rem;
    width: 7.5rem;
    height: 7.5rem;
    background-color: var(--terra-light);
    border-radius: 50%;
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white) !important;
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(12deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.access-badge span {
    display: block;
    padding: 5px;
}

.checkout-area {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-box {
    background: #FAF9F6;
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
    min-width: 240px;
}

.price-box .old-price {
    display: block;
    color: var(--gray-400);
    text-decoration: line-through;
    font-size: 0.875rem;
    font-weight: 700;
}

.current-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 0.25rem 0;
}

.price-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--deep-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-right: 0.5rem;
}

.price-currency {
    color: var(--terra-light);
    font-size: 1.5rem;
    font-weight: 900;
}

.price-value {
    color: var(--terra-light);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.price-box .installments {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.cta-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.faq-wrapper h2 {
    color: var(--deep);
    margin-bottom: 0.75rem;
}

.faq-divider {
    width: 4rem;
    height: 4px;
    background-color: var(--terra);
    margin: 0 auto 2.5rem;
    opacity: 0.3;
    border-radius: 2px;
}

.faq-container {
    background: var(--white);
    border-radius: 2rem;
    padding: 2rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--deep);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--terra);
}

.faq-question.active {
    color: var(--terra);
}

.faq-icon {
    transition: transform 0.5s ease;
    color: var(--gray-400);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--terra);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.faq-answer-wrapper.active {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    color: var(--gray-600);
    font-size: 1.125rem;
    padding-right: 2rem;
    line-height: 1.6;
}

.site-footer {
    background: #F4F1EA;
    padding: 4rem 1rem 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terra);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--terra);
}

.footer-bottom {
    max-width: 72rem;
    margin: 0 auto;
    border-top: 1px solid var(--gray-300);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
    padding: 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 50;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text p {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--deep-light);
}

.sticky-text span {
    font-size: 0.6rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    border-radius: 1rem;
    max-width: 42rem;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--deep);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--deep);
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .solution-card,
    .guarantee-container,
    .offer-card {
        padding: 2.5rem;
        gap: 2rem;
    }

    .offer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .bonus-card figure {
        width: 35%;
    }

    .product-showcase img {
        max-width: 100%;
    }

    .main-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .solution-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .solution-text h2,
    .solution-text p {
        text-align: center;
    }

    .bonus-card {
        flex-direction: column;
        min-height: auto;
    }

    .bonus-card figure {
        width: 100%;
        padding: 2rem;
        height: 16rem;
    }

    .bonus-card img {
        max-height: 14rem;
    }

    .guarantee-container {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        border-radius: 2rem;
    }

    .guarantee-container figure {
        width: 10rem;
        margin: 0 auto;
    }

    .guarantee-info h2 {
        text-align: center;
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .guarantee-info p {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .offer-card {
        padding: 2rem;
    }

    .offer-content-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        margin-top: 1rem;
    }

    .product-showcase img {
        max-width: 280px;
        margin: 0 auto;
    }

    .access-badge {
        width: 6rem;
        height: 6rem;
        font-size: 0.65rem;
        bottom: 1.5rem;
        right: 0.5rem;
    }

    .checkout-area {
        flex-direction: column;
        text-align: center;
    }

    .price-box {
        width: 100%;
        text-align: center;
    }

    .current-price-wrapper {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hidden-mobile {
        display: none;
    }

    .timeline-line {
        left: 1.25rem;
        transform: none;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-icon {
        left: 1.25rem;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: calc(100% - 3.5rem);
        margin-left: auto;
    }

    .faq-container {
        padding: 1.5rem;
    }

    .sticky-text {
        display: none;
    }

    .sticky-content .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .card,
    .pillar-card {
        padding: 1.5rem;
    }

    .offer-includes li {
        font-size: 1rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .guarantee-container {
        padding: 2rem 1rem;
    }

    .guarantee-container figure {
        width: 8rem;
    }

    .guarantee-info h2 {
        font-size: 1.5rem;
    }

    .bonus-content {
        padding: 1.5rem;
    }

    .access-badge {
        width: 5.5rem;
        height: 5.5rem;
        font-size: 0.6rem;
        bottom: 1rem;
        right: 0.5rem;
    }
}