:root {
    --color-primary: #9333EA;
    --color-primary-dark: #7E22CE;
    --color-primary-light: #F3E8FF;
    --color-action-green: #16A34A;
    --color-action-green-dark: #15803D;
    --color-bg-cream: #FFF9F2;
    /* Cream background from reference style */
    --color-text-main: #1F2937;
    --color-text-muted: #6B7280;
    --color-white: #FFFFFF;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Bold/Heavy as per ref */
    line-height: 1.2;
}

/* BUTTONS */
.cta-button,
.cta-button-small,
.btn-plan {
    display: inline-block;
    background-color: var(--color-action-green);
    /* Keeping GREEN */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 350px;
}

.cta-button:hover,
.btn-plan:hover {
    background-color: #BE123C;
    /* Hover Effect: Maybe switch to red? No, keep darker green to stay "Green" brand. */
    background-color: var(--color-action-green-dark);
    transform: translateY(-2px);
}

.cta-button-small {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}

.cta-button-small.outline {
    background-color: transparent;
    border: 2px solid #BE123C;
    /* Using Red outline for secondary CTA as in ref? No, stick to green. */
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.cta-button-small.outline:hover {
    background-color: var(--color-primary);
    color: white;
}

/* ANIMATION */
.pulse {
    animation: pulse 2s infinite;
}

/* ANIMATION - Green Pulse respecting 3D Shadow */
/* ANIMATION - Heartbeat Scale Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-button-extended {
    background-color: var(--color-action-green);
    /* Green Button */
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    width: auto;
    min-width: 280px;
    max-width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--color-action-green-dark);
    /* Darker Green Shadow */
    animation: pulse 2s infinite;
    /* Ensure pulse is applied */
}

/* Remove hover movement to satisfy "sem outros efeitos" */
.cta-button-extended:hover {
    /* Optional brightness bump? Or just keep it static. User said "sem outros efeitos". */
    /* background-color: #16a34a; */
}

.cta-button-extended:active {
    /* No active state movement */
    box-shadow: 0 4px 0 var(--color-action-green-dark);
    /* Maintain shadow */
    transform: none;
}

/* =========================================
   1. HERO SECTION (2 Columns)
   ========================================= */
.hero-section {
    padding: 1.5rem 0 3rem;
    background: white;
    /* Or slight off-white */
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    /* Mob: Image top or bottom? usually stacked. Ref has text left in desktop. */
    align-items: center;
    gap: 2rem;
}

@media (min-width: 900px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-text {
        width: 50%;
    }

    .hero-image {
        width: 45%;
    }
}

.hero-tag {
    display: inline-block;
    background: #DC2626;
    /* Reference has RED tags/headlines. User said "substituir vermelho por verde". Okay. */
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-primary);
}

h1 {
    font-size: 1.35rem;
    /* Reduced from 1.5rem */
    color: var(--color-text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    /* Center on mobile */
}

@media (min-width: 900px) {
    h1 {
        font-size: 1.8rem;
        /* Reduced from 2.2rem */
        text-align: left;
        /* Align left on desktop */
    }
}

.hl-box {
    background-color: var(--color-primary);
    color: white;
    padding: 0px 6px;
    transform: skew(-6deg);
    display: inline-block;
    border-radius: 4px;
    /* Slightly more rounded */
    max-width: 100%;
}

.hl-text {
    color: #581C87;
    font-weight: 900;
}

.text-highlight {
    color: #9333EA !important;
    /* Force purple color */
    font-weight: 700;
    /* Ensure bold */
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #B91C1C;
    /* Red in ref */
    color: #DC2626;
    /* Using a reddish/orange tone for these checks like ref? Or stick to purple? Ref has Orange/Yellow icons and Red text. let's use check color */
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #B91C1C;
    /* Red text like ref */
}

.hero-badges i {
    color: #F59E0B;
    /* Amber/Yellow check icon like ref */
    font-size: 1.1rem;
    font-weight: bold;
}

.hero-sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    /* Reduced bottom margin to fit badges */
}

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    max-width: 85%;
    margin: 0 auto;
    /* mask-image? clipping? Ref image is clean cut or frame. Standard img is fine. */
}

/* =========================================
   2. GALLERY SECTION
   ========================================= */
.gallery-section {
    padding: 4rem 0;
    text-align: center;
    background: white;
}

.gallery-section h2 {
    color: #9F1239;
    /* Ref color */
    color: var(--color-text-main);
    /* Or dark text */
    margin-bottom: 0.5rem;
    font-family: 'DM Serif Display', serif;
    /* Ref has serif headers sometimes? Sticking to Poppins */
}

.section-desc {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-item img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
    width: 100%;
    height: 350px;
    /* Increased from 200px */
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item div {
    text-align: center;
    margin-top: 10px;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* =========================================
   3. SPLIT SECTION (Context)
   ========================================= */
.split-section {
    padding: 4rem 0;
    background-color: white;
}

.split-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .split-container {
        flex-direction: row;
    }

    .split-image {
        width: 50%;
    }

    .split-content {
        width: 50%;
    }
}

.split-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.split-content h3 {
    color: #B91C1C;
    /* Red in ref */
    color: var(--color-primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.check-list i {
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================
   4. BONUS SECTION
   ========================================= */
/* =========================================
   5. BONUS SECTION (Detailed)
   ========================================= */
.bonus-section {
    padding: 4rem 0;
    background: #F9FAFB;
    /* Light gray background */
}

.bonus-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bonus-header h2 {
    font-size: 2.2rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.bonus-sub {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 3rem;
    font-weight: 500;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: #F3E8FF;
    /* Light Purple */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.bonus-card h4 {
    font-size: 1.2rem;
    color: #1F2937;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.bonus-card p {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
    /* Pushes price to bottom */
}

.bonus-price-box {
    background: #F3F4F6;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 4px;
    display: block;
}

.bonus-price-old {
    text-decoration: line-through;
    color: #EF4444;
    /* Red for struck price */
    font-size: 0.9rem;
    margin-right: 8px;
}

.bonus-price-new {
    color: var(--color-action-green);
    /* Green for "FREE" */
    font-weight: 800;
    font-size: 1.1rem;
}

.bonus-footer-text {
    margin-top: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    background: #F3E8FF;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* =========================================
   5. SOCIAL PROOF (Vertical)
   ========================================= */
/* =========================================
   6. TESTIMONIALS (Refined - Quote Cards)
   ========================================= */
.testimonials-section {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    /* Top padding for quote icon */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease;
    margin-top: 20px;
    /* Space for the floating icon */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.quote-icon-circle {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    /* Palette color (Purple) */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(147, 51, 234, 0.3);
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 80px;
    /* Alignment */
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F3F4F6;
    padding-top: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F59E0B;
    /* Match quote icon */
}

.user-info strong {
    display: block;
    color: #1F2937;
    font-size: 1rem;
    font-weight: 700;
}

.user-info span {
    display: block;
    color: #6B7280;
    font-size: 0.8rem;
}

/* Rating Header Styles - Centered */
.testimonials-rating-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    width: 100%;
    /* Ensure full width for centering */
}

.testimonials-rating-header .stars {
    color: #F59E0B;
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testimonials-rating-header .rating-text {
    font-size: 1rem;
    color: #4B5563;
    font-weight: 500;
}

/* Testimonial Image Cards - New Style */
.testimonial-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
    /* Matching previous border style */
    transition: transform 0.3s ease;
    background: #000;
    /* Optional bg for better contrast if image has transparent parts */
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-image-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.testimonial-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the card area beautifully */
    display: block;
}

/* Special fix for truncated image */
.testimonial-image-card.fit-contain {
    background: #fff;
    /* White borders */
}

.testimonial-image-card.fit-contain img {
    object-fit: contain;
    /* Shows full image without crop */
}

/* Carousel Styles */
.testimonial-carousel {
    position: relative;
    max-width: 350px;
    /* Mobile default */
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    /* Space for shadow/hover */
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    will-change: transform;
    /* Optimize for hardware acceleration */
}

.testimonial-slide {
    min-width: 100%;
    /* Mobile: 1 per view */
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.testimonial-slide .testimonial-image-card {
    width: 100%;
    max-width: 350px;
    height: 500px;
    /* Fixed height for consistency */
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (min-width: 900px) {
    .testimonial-carousel {
        max-width: 1100px;
        /* Full width on desktop */
        padding: 20px 40px;
    }

    .testimonial-slide {
        min-width: 33.333%;
        /* 3 per view */
    }

    .prev-btn {
        left: 0px;
        /* Move buttons out slightly */
    }

    .next-btn {
        right: 0px;
    }
}

/* Ensures images fill the card area beautifully */
display: block;
}

/* Rating Header Styles */
.testimonials-rating-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonials-rating-header .stars {
    color: #F59E0B;
    /* Yellow/Amber stars */
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
}

.testimonials-rating-header .rating-text {
    font-size: 1rem;
    color: #4B5563;
    /* Dark gray text */
    font-weight: 500;
}




/* =========================================
   6. PLANS SECTION
   ========================================= */
.plans-section {
    padding: 4rem 0;
    background: var(--color-bg-cream);
}

.plans-title {
    text-align: center;
    color: #9F1239;
    /* Ref Title */
    color: #581C87;
    margin-bottom: 3rem;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 800px) {
    .plans-container {
        flex-direction: row;
        align-items: stretch;
    }
}

.plan-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    width: 300px;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    z-index: 10;
}

@media (max-width: 800px) {
    .plan-card.featured {
        transform: none;
    }
}

.badge-featured {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    /* Green Ref */
    color: white;
    text-align: center;
    padding: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    border-top-left-radius: 12px;
    /* Inner radius matching border - thickness */
    border-top-right-radius: 12px;
    text-transform: uppercase;
}

.plan-card h3 {
    text-align: center;
    margin-top: 10px;
    color: var(--color-text-main);
}

.price {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-action-green);
    /* Green price */
    margin: 1rem 0;
}

.currency {
    font-size: 2.25rem;
    vertical-align: top;
}

.cents {
    font-size: 2.25rem;
}

.plan-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    flex: 1;
}

.plan-features li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4B5563;
}

.plan-features i {
    color: var(--color-primary);
}

.btn-plan {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
}

.basic-btn {
    background: #A855F7;
}

/* Lighter green */
/* Green Pulsing Button */
.featured-btn {
    background-color: #16A34A;
    /* Green */
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 0 #14532D;
    /* Darker green 3D shadow */
    animation: pulse 2s infinite;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.featured-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #14532D;
}

/* =========================================
   7. BIO SECTION
   ========================================= */
/* =========================================
   7. BIO SECTION
   ========================================= */
.bio-section {
    padding: 5rem 0;
    background: white;
}

.bio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 900px) {
    .bio-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 4rem;
    }
}

.bio-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bio-img-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-stats-row {
    display: flex;
    gap: 1rem;
}

.bio-stat-card {
    background: #F9FAFB;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bio-stat-card strong {
    font-size: 1.25rem;
    color: var(--color-primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.bio-stat-card span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    display: block;
}

.bio-right-col {
    max-width: 600px;
    text-align: center;
}

@media (min-width: 900px) {
    .bio-right-col {
        text-align: left;
        padding-top: 1rem;
    }
}

.bio-right-col h3 {
    font-size: 2.2rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.bio-badge {
    display: inline-block;
    background: #E5E7EB;
    color: #374151;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-right-col p {
    margin-bottom: 1.2rem;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   FAQ & GUARANTEE
   ========================================= */
.faq-section {
    padding: 4rem 0;
    background: var(--color-bg-cream);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1F2937;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    outline: none;
    color: #374151;
}

.faq-item p {
    margin-top: 10px;
    color: #6B7280;
    font-size: 0.95rem;
}

.guarantee-section {
    padding: 3rem 0;
    background: white;
}

.guarantee-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px dashed #D1D5DB;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
}

.guarantee-icon {
    font-size: 4rem;
    color: #DC2626;
    /* Shield Red in Ref? User said replace red with green usually but shield sometimes is red. I'll make it Red for impact as per ref 'Red Shield'. */
}

.guarantee-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* FOOTER */
footer {
    background: #FFF9F2;
    /* Light footer */
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #E5E7EB;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom {
    margin: 10px 0;
}

.footer-bottom a {
    margin: 0 10px;
    color: #6B7280;
}

/* SOCIAL PROOF CSS from previous turn is fine, just ensure right color */
#social-proof-container {
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 10000;
}

.social-proof-popup {
    width: 240px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 10px 10px 14px;
    border-left: 3px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: var(--font-body);
    pointer-events: auto;
    margin-bottom: 10px;
    position: relative;
}

.sp-close {
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 1.2rem;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.sp-close:hover {
    color: #4B5563;
}

@media (max-width: 480px) {
    #social-proof-container {
        right: 0;
        left: auto;
        top: 20px;
        pointer-events: none;
    }

    .social-proof-popup {
        width: 240px;
        pointer-events: auto;
        margin-right: 5px;
    }
}

.social-proof-popup.visible {
    opacity: 1;
    transform: translateY(0);
}

.sp-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.85rem;
    line-height: 1.2;
}

.sp-detail {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.3;
}

.sp-meta {
    font-size: 0.7rem;
    color: #9CA3AF;
    margin-top: 2px;
}

/* =========================================
   4. FEATURES SECTION (Refined)
   ========================================= */
.features-section-refined {
    padding: 5rem 0;
    background-color: var(--color-bg-cream);
    /* Keeping consistent theme */
}

.features-section-refined h2 {
    text-align: center;
    color: var(--color-text-main);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary-light);
}

/* Feature Icon Styling */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Decorative little line */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* Extended CTA Styles */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align items for mobile */
}

@media (min-width: 900px) {
    .hero-cta-wrapper {
        align-items: flex-start;
        /* Left align on desktop if needed, or center? Reference looks centered on button content but aligned left on page. */
    }
}


.cta-main-text {
    font-size: 1.1rem;
    /* Reduced size */
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    white-space: nowrap;
    /* Force 1 line */
}

.cta-sub-text {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.95;
}

.cta-security-text {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: 500;
}

@media (min-width: 900px) {
    .cta-main-text {
        font-size: 1.3rem;
        /* Reduced size */
    }
}

/* Mobile Offer Warning */
.mobile-offer-warning {
    margin-top: 10px;
    text-align: center;
    font-size: 0.75rem;
    color: #4B5563;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
}

@media (min-width: 800px) {
    .mobile-offer-warning {
        display: none !important;
    }
}