/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Baseado no design Protocolo Desinflame */
    --primary-color: #5d7461;
    --primary-dark: #4a5f52;
    --secondary-color: #8b9d8a;
    --dark-bg: #3d4f43;
    --light-bg: #e8e4dd;
    --soft-bg: #ddd8d0;
    --text-dark: #3d4f43;
    --text-light: #6b7d6f;
    --white: #ffffff;
    --beige: #e8e4dd;
    --warning: #c17a5d;
    --gradient-1: linear-gradient(135deg, #5d7461 0%, #4a5f52 100%);
    --gradient-2: linear-gradient(135deg, #c9b9a1 0%, #a89583 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Cinzel', 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --section-padding: 4rem 1.5rem;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   BUTTONS & CTAs
   =================================== */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shine 3s infinite;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 116, 97, 0.4);
}

.cta-secondary {
    background: var(--secondary-color);
    color: var(--white);
    letter-spacing: 1px;
}

.cta-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 116, 97, 0.4);
}

.cta-large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

/* ===================================
   LUCIDE ICONS - GLOBAL FIX
   =================================== */
i[data-lucide] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

i[data-lucide] svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    flex-shrink: 0 !important;
    stroke-width: 2 !important; /* Force same stroke-width for all icons */
}

/* Force all list icons to be consistent */
li i[data-lucide],
.benefit-item i[data-lucide],
.all-in-one-item i[data-lucide] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

li i[data-lucide] svg,
.benefit-item i[data-lucide] svg,
.all-in-one-item i[data-lucide] svg {
    stroke-width: 2 !important; /* Same stroke for visual consistency */
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: var(--beige);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.hero-section .container {
    width: 100%;
    max-width: var(--container-max-width);
    display: flex;
    justify-content: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image Wrapper with Leaf Decorations */
.hero-image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    border: none;
}

.leaf-decoration {
    position: absolute;
    opacity: 0.7;
    color: var(--primary-color);
}

.leaf-decoration i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.leaf-1 {
    top: -10px;
    left: -20px;
    transform: rotate(-25deg);
}

.leaf-2 {
    bottom: -10px;
    right: -20px;
    transform: rotate(25deg);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    width: 100%;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

/* CTA Button */
.hero-content .cta-button {
    margin-bottom: 2.5rem;
}

/* Social Proof Badges */
.social-proof-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    background: transparent;
    padding: 0;
    white-space: nowrap;
}

.badge i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* ===================================
   TARGET AUDIENCE SECTION
   =================================== */
.target-section {
    background: var(--dark-bg);
    padding: 0;
    position: relative;
    margin-top: 0;
}

.target-arrow-wrapper {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.target-arrow {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: bounceArrow 1.5s ease-in-out infinite;
}

.target-arrow i {
    width: 30px;
    height: 30px;
    color: var(--white);
    stroke-width: 2.5;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.target-header {
    background: var(--dark-bg);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.target-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.target-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.target-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--dark-bg);
    width: 100%;
}

.target-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.target-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card-image {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ===================================
   TESTIMONIALS CAROUSEL SECTION
   =================================== */
.testimonials-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    will-change: transform;
    width: fit-content;
}

.carousel-wrapper {
    cursor: grab;
    user-select: none;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-item {
    flex: 0 0 300px;
    height: 400px;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    background: #f5f5f5;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

/* ===================================
   PROTOCOL BENEFITS SECTION
   =================================== */
.protocol-section {
    background: var(--beige);
    padding: 5rem 1.5rem;
}

.protocol-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.protocol-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.protocol-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.protocol-leaf-1 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    color: var(--primary-color);
    opacity: 0.8;
}

.protocol-leaf-1 i {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.protocol-text {
    width: 100%;
    max-width: 600px;
}

.protocol-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: left;
}

.protocol-intro {
    margin-bottom: 2rem;
}

.protocol-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.protocol-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.protocol-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.protocol-checklist li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.protocol-conclusion {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.protocol-text .cta-button {
    margin-top: 1rem;
}

/* ===================================
   PROBLEM/EMPATHY SECTION - NEW DESIGN
   =================================== */
.problem-section-new {
    background: var(--beige);
    padding: 4rem 1.5rem;
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.problem-text-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.problem-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.problem-title strong {
    font-weight: 700;
}

.problem-symptoms {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.problem-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.problem-intro strong {
    font-weight: 700;
}

.problem-personal {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.problem-personal strong {
    font-weight: 700;
}

.problem-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.problem-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.leaf-decoration-problem {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.8;
}

.leaf-decoration-problem i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.leaf-top {
    top: -20px;
    right: 30px;
    transform: rotate(15deg);
}

.problem-solution {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-divider {
    margin: 2rem auto;
    max-width: 800px;
}

.divider-line {
    border: none;
    height: 2px;
    background-color: var(--text-dark);
    margin: 0;
    opacity: 0.3;
}

.solution-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.solution-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.solution-message {
    background: var(--soft-bg);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.solution-message p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.solution-message p:last-child {
    margin-bottom: 0;
}

.solution-message strong {
    font-weight: 700;
}

.solution-cta-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* ===================================
   PROBLEM/EMPATHY SECTION - OLD
   =================================== */
.problem-section {
    background: var(--soft-bg);
    padding: var(--section-padding);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pain-item {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.pain-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pain-item .icon {
    font-size: 1.5rem;
}

.pain-item p {
    margin: 0;
    font-weight: 500;
}

.expert-quote {
    background: var(--primary-color);
    color: var(--white);
    border-left: none;
    padding: 2.5rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

.expert-quote p {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

.pattern-break {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    font-size: 1.15rem;
}

.pattern-break p {
    margin-bottom: 1rem;
}

/* ===================================
   SOCIAL PROOF & AUTHORITY SECTION
   =================================== */
.social-proof-section {
    background: var(--white);
    padding: var(--section-padding);
}

.testimonials-carousel {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 90%;
    max-width: 400px;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.root-causes {
    margin-top: 3rem;
    text-align: center;
}

.root-causes h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.cause-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cause-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Old target section styles removed - see lines 273+ for current styles */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.symptom-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.symptom-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.symptom-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mission-statement {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.mission-statement p {
    font-size: 1.2rem;
    margin: 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    background: var(--beige);
    padding: var(--section-padding);
}

.benefits-list {
    max-width: 900px;
    margin: 2rem auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.benefit-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-light);
}

.price-anchor {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.5rem;
}

.price-anchor strong {
    color: var(--primary-color);
    font-size: 2rem;
}

.benefits-section .cta-button {
    display: block;
    max-width: 400px;
    margin: 2rem auto;
}

/* ===================================
   DELIVERABLES SECTION
   =================================== */
.deliverables-section {
    background: var(--beige);
    padding: var(--section-padding);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.deliverable-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.deliverable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.deliverable-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.deliverable-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.deliverable-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.emotional-reinforcement {
    background: var(--dark-bg);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.emotional-reinforcement p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.emotional-reinforcement p:last-child {
    margin-bottom: 0;
}

/* ===================================
   METHOD SECTION
   =================================== */
.method-section {
    background: var(--dark-bg);
    padding: var(--section-padding);
    color: var(--white);
}

.phases-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.phase-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.phase-1 { border-top-color: #c17a5d; }
.phase-2 { border-top-color: #8b9d8a; }
.phase-3 { border-top-color: #7a9184; }
.phase-4 { border-top-color: #5d7461; }

.phase-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.phase-1 .phase-number { background: #c17a5d; }
.phase-2 .phase-number { background: #8b9d8a; }
.phase-3 .phase-number { background: #7a9184; }
.phase-4 .phase-number { background: #5d746b; }
.phase-4 .phase-number { background: #2ecc71; }

.phase-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.phase-card ul {
    list-style: none;
    padding: 0;
}

.phase-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.phase-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.results-visual {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.results-text {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.7;
}

.method-section .cta-button {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

.method-section .section-title {
    color: var(--white);
}

/* ===================================
   OFFER SECTION
   =================================== */
.offer-section {
    background: var(--beige);
    background: var(--soft-bg);
    padding: var(--section-padding);
}

.offer-box {
    background: var(--white);
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.offer-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.offer-details {
    text-align: left;
    margin: 2rem 0;
}

.offer-feature {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: var(--text-dark);
}

.offer-price {
    background: var(--soft-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.price-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--soft-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: left;
}

.seal-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.seal-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.seal-text p {
    color: var(--text-light);
    margin: 0;
}
beig
/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--white);
    padding: var(--section-padding);
}

.expert-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    align-items: center;
}

.expert-photo {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.expert-photo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expert-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.expert-bio p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===================================
   RESET MESSAGE SECTION
   =================================== */
.reset-message-section {
    background: var(--beige);
    padding: var(--section-padding);
}

.reset-message-box {
    position: relative;
    background: var(--soft-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reset-leaf-1,
.reset-leaf-2 {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.5;
}

.reset-leaf-1 {
    top: -15px;
    left: 20px;
}

.reset-leaf-1 i {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.reset-leaf-2 {
    bottom: -15px;
    right: 20px;
}

.reset-leaf-2 i {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.reset-message-intro {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.reset-message-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reset-message-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.reset-message-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reset-message-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reset-message-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dark);
}

.reset-message-list li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   BENEFITS CHECKLIST SECTION
   =================================== */
.benefits-checklist-section {
    background: var(--primary-color);
    padding: 5rem 1.5rem;
}

.benefits-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefits-intro {
    margin-bottom: 2.5rem;
}

.benefits-intro p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

.benefits-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem auto;
    max-width: 700px;
    text-align: left;
}

.benefits-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits-checklist li:last-child {
    border-bottom: none;
}

.benefits-checklist li i {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefits-cta {
    background: var(--white);
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    padding: 1.4rem 3rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.benefits-cta:hover {
    background: var(--beige);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================
   ALL-IN-ONE SECTION
   =================================== */
.all-in-one-section {
    background: var(--soft-bg);
    padding: 5rem 1.5rem;
}

.all-in-one-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.all-in-one-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.all-in-one-intro p {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.all-in-one-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.all-in-one-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.all-in-one-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.all-in-one-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.all-in-one-item i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.all-in-one-item span {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.all-in-one-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.all-in-one-footer .footer-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.all-in-one-footer .footer-values {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.all-in-one-footer .footer-values p {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   4 PHASES SECTION
   =================================== */
.phases-section {
    background: var(--white);
    padding: 4rem 1.5rem;
    overflow-x: hidden;
}

.phases-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phases-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.phase-badge {
    display: flex;
    justify-content: center;
}

.phase-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(93, 116, 97, 0.3);
}

.phase-content {
    background: var(--beige);
    padding: 2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.phase-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.phase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.phase-description {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.phase-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.4;
    margin: 0 auto;
}

.phase-item:last-child .phase-connector {
    display: none;
}

.phases-cta {
    text-align: center;
    margin-top: 3rem;
}

.phases-cta .cta-button {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    padding: 1.3rem 2.5rem;
}

/* Responsive adjustments for phases */
@media (max-width: 768px) {
    .phases-section {
        padding: 3rem 1rem;
    }
    
    .phase-number {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .phase-content {
        padding: 1.5rem 1.3rem;
    }
}

@media (max-width: 480px) {
    .phase-number {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .phase-content {
        padding: 1.3rem 1rem;
    }
    
    .phase-connector {
        height: 30px;
    }
}

/* ===================================
   MORE RESULTS SECTION
   =================================== */
.more-results-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    overflow: hidden;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

.more-results-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}

.results-carousel-track {
    display: flex;
    gap: 25px;
    animation: scroll-results 80s linear infinite;
    will-change: transform;
    width: fit-content;
}

.results-carousel-wrapper {
    cursor: grab;
    user-select: none;
}

.results-carousel-wrapper:active {
    cursor: grabbing;
}

.results-carousel-wrapper:hover .results-carousel-track {
    animation-play-state: paused;
}

@keyframes scroll-results {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.result-item {
    flex: 0 0 300px;
    height: 400px;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.result-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    background: #f5f5f5;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.results-benefits {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.results-benefits-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
}

.benefit-item i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    color: #4ade80;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.results-cta {
    text-align: center;
}

.results-button {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    padding: 1.4rem 3rem;
}

/* Responsive for results section */
@media (max-width: 768px) {
    .results-benefits-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .benefit-item {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .result-item {
        flex: 0 0 250px;
        height: 350px;
    }
    
    .results-carousel-track {
        gap: 20px;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--beige);
    padding: var(--section-padding);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-text-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 600px;
}

.about-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-leaf-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    color: var(--primary-color);
    opacity: 0.7;
}

.about-leaf-1 i {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.about-footer {
    margin-top: 3rem;
    text-align: center;
}

.about-mission {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-mission strong {
    font-weight: 500;
}

/* ===================beige=========
   FAQ SECTION
   =================================== */
.faq-section {
    background: var(--soft-bg);
    padding: var(--section-padding);
}

.faq-accordion {
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--beigeion);
}

.faq-question:hover {
    background: var(--soft-bg);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.15rem;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.support-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.support-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* ===================================
   IMAGE MODAL
   =================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #ccc;
    transform: scale(1.1);
}

.target-card-image img {
    cursor: pointer;
    transition: var(--transition);
}

.target-card-image img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-legal, .footer-contact {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.sticky-cta-mobile .cta-button {
    width: 100%;
    display: block;
    padding: 1rem;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    :root {
        --section-padding: 5rem 2rem;
    }

    .hero-image-wrapper {
        width: 380px;
        height: 380px;
        margin-bottom: 2.5rem;
    }

    .leaf-decoration i {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        letter-spacing: 0.35em;
    }

    .social-proof-badges {
        gap: 3rem;
    }

    .carousel-track {
        animation-duration: 50s;
    }

    .problem-content {
        flex-direction: row;
        align-items: center;
        gap: 0;
        justify-content: center;
    }

    .problem-text-box {
        max-width: 600px;
        padding: 3.5rem 3rem;
        margin-right: -100px;
        z-index: 2;
    }

    .problem-image-wrapper {
        max-width: 450px;
        flex: 0 0 450px;
        z-index: 1;
    }

    .target-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        padding: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .target-card {
        max-width: none;
        padding: 1rem;
    }

    .target-card-image {
        height: 250px;
    }

    .target-card-image img {
        max-height: 300px;
    }

    .protocol-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .protocol-image-wrapper {
        flex: 0 0 400px;
    }

    .protocol-text {
        flex: 1;
    }

    .about-content {
        flex-direction: row !important;
        gap: 3rem;
    }

    .about-text-box {
        flex: 1;
        max-width: none;
        order: 1;
    }

    .about-image-wrapper {
        flex: 0 0 350px;
        order: 2;
    }

    .reset-message-box {
        padding: 4rem 3rem;
    }

    .reset-leaf-1 i,
    .reset-leaf-2 i {
        width: 60px;
        height: 60px;
    }

    .testimonial-item {
        flex: 0 0 400px;
        height: 500px;
    }

    .testimonial-card {
        flex: 0 0 45%;
    }

    .expert-profile {
        grid-template-columns: 350px 1fr;
    }

    .sticky-cta-mobile {
        display: none !important;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: var(--beige);
    padding: var(--section-padding);
}

.faq-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* ===================================
   RESPONSIVE - TABLET LARGE (900px+)
   =================================== */
@media (min-width: 900px) {
    .target-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
        padding: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .target-card {
        max-width: none;
        padding: 1rem;
    }

    .target-card-image {
        height: 250px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 6rem 2rem;
    }

    .hero-image-wrapper {
        width: 420px;
        height: 420px;
        margin-bottom: 3rem;
    }

    .leaf-decoration i {
        width: 48px;
        height: 48px;
    }

    .hero-title {
        letter-spacing: 0.4em;
    }

    .social-proof-badges {
        gap: 4rem;
    }

    .carousel-track {
        animation-duration: 60s;
    }

    .testimonial-item {
        flex: 0 0 450px;
        height: 550px;
    }

    .target-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
        padding: 3rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .target-card {
        padding: 1.2rem;
        max-width: none;
    }

    .target-card-image {
        height: 300px;
    }

    .target-card-title {
        font-size: 1rem;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .protocol-content {
        flex-direction: row;
        gap: 5rem;
        align-items: center;
        justify-content: center;
    }

    .protocol-image-wrapper {
        flex: 0 0 500px;
    }

    .protocol-text {
        flex: 1;
        max-width: 600px;
    }

    .protocol-title {
        font-size: 2.2rem;
    }

    .problem-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 5rem;
    }

    .problem-text-box {
        max-width: 750px;
        padding: 4rem 3.5rem;
        margin-right: -150px;
        z-index: 2;
    }

    .problem-image-wrapper {
        flex: 0 0 550px;
        z-index: 1;
    }

    .problem-image-wrapper {
        max-width: 550px;
        flex-shrink: 0;
    }

    .leaf-decoration-problem i {
        width: 60px;
        height: 60px;
    }

    .badge {
        font-size: 1rem;
    }

    .badge i {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .testimonial-card {
        flex: 0 0 30%;
    }

    .about-content {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }

    .about-text-box {
        flex: 1;
        max-width: none;
        padding: 3rem;
        order: 1;
    }

    .about-name {
        text-align: left;
    }

    .about-text-box p {
        font-size: 1.1rem;
    }

    .about-image-wrapper {
        flex-shrink: 0;
        width: 400px;
        max-width: none;
        order: 2;
    }

    .about-leaf-1 i {
        width: 50px;
        height: 50px;
    }

    .symptoms-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .phases-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   RESPONSIVE - MOBILE ONLY
   =================================== */
@media (max-width: 767px) {
    .sticky-cta-mobile {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .testimonial-card {
        flex: 0 0 85%;
    }

    .guarantee-seal {
        flex-direction: column;
        text-align: center;
    }

    .offer-box {
        padding: 2rem 1.5rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    /* Fix icon sizes on mobile - Force ALL icons to be 24px */
    /* This ensures perfect consistency across all sections */
    .reset-message-list li i,
    .reset-message-list li i[data-lucide],
    .benefits-checklist li i,
    .benefits-checklist li i[data-lucide],
    .benefit-item i,
    .benefit-item i[data-lucide],
    .protocol-checklist li i,
    .protocol-checklist li i[data-lucide],
    .all-in-one-item i,
    .all-in-one-item i[data-lucide] {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        margin-top: 0 !important;
    }

    .reset-message-list li i svg,
    .reset-message-list li i[data-lucide] svg,
    .benefits-checklist li i svg,
    .benefits-checklist li i[data-lucide] svg,
    .benefit-item i svg,
    .benefit-item i[data-lucide] svg,
    .protocol-checklist li i svg,
    .protocol-checklist li i[data-lucide] svg,
    .all-in-one-item i svg,
    .all-in-one-item i[data-lucide] svg {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        stroke-width: 2 !important;
    }

    .social-proof-badges .badge i,
    .social-proof-badges .badge i[data-lucide],
    .social-proof-badges .badge i svg,
    .social-proof-badges .badge i[data-lucide] svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        stroke-width: 2 !important;
    }
    
    /* Force all list icons to be the same */
    ul li i[data-lucide],
    ul li i[data-lucide] svg {
        flex-shrink: 0 !important;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
