:root {
    /* Colors */
    --primary-color: #0056b3;
    /* Deep Trust Blue */
    --primary-dark: #003d82;
    --primary-light: #e3f2fd;

    --secondary-color: #28a745;
    /* Success Green */
    --secondary-hover: #218838;

    --accent-color: #ff9900;
    /* Attention Orange */
    --accent-light: #fff3cd;

    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #ffffff;

    --bg-body: #f7f9fc;
    --bg-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 60px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(40, 167, 69, 0.4);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
    /* Changed from 1.2 to 1.4 */
    margin-bottom: var(--spacing-sm);
}

h2.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: var(--radius-pill);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-large {
    width: 100%;
    max-width: 380px;
    font-size: 1.25rem;
    padding: 20px 40px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* --- Header --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

/* --- Hero Section --- */
.hero-section {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    /* Circle Decoration */
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-headline {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Social Proof Bar --- */
.social-proof-bar {
    background: var(--primary-dark);
    color: white;
    padding: 30px 0;
    margin-top: -20px;
    /* Slight overlap or snug fit */
}

.proof-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.proof-number,
.proof-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* --- Problem Section --- */
.problem-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: var(--spacing-lg);
}

.pain-item {
    background: var(--bg-body);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
    border-left: 4px solid #dc3545;
    /* Red for pain */
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.pain-icon {
    font-size: 2rem;
    line-height: 1;
}

.pain-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.pain-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* --- New Law Section (Concise & Persuasive) --- */
.new-law-section-concise {
    padding: var(--spacing-lg) 0;
    background: #fff0f0;
    /* Softer red for readability */
    border-bottom: 1px solid #ffcccc;
}

.law-header-concise {
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alert-icon-small {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    animation: pulse-alert 2s infinite;
}

.section-title .text-danger,
.law-subtitle .text-danger {
    color: #d32f2f;
    /* Stronger red for impact */
}

.law-subtitle {
    font-size: 1.2rem;
    /* Larger for readability */
    color: var(--text-dark);
    margin-top: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.law-content-concise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: stretch;
}

@media (max-width: 768px) {
    .law-content-concise {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }
}

/* Problem Box */
.law-problem-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid #ffcdd2;
    /* Red border */
    text-align: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.08);
    /* Fix framing: Vertical Center */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.problem-stat .stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1;
    margin-bottom: 5px;
}

.problem-stat .stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* List Styling */
.concise-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.concise-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 12px;
    background: #fafafa;
    border-radius: 8px;
}

/* Solution Box */
.law-solution-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    /* Blue shadow glow */
    border: 2px solid #e3f2fd;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Fill the grid cell */
    display: flex;
    flex-direction: column;
}

.law-solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.solution-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #0056b3;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.law-solution-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.law-cta-concise {
    margin-top: 25px;
    text-align: center;
}

.micro-copy {
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 700;
    margin-top: 10px;
}

.problem-hook {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* --- Solution Section --- */
.solution-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    /* Slight angle */
    padding-bottom: 120px;
    /* Compress for clip-path */
}

.lead-text {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    font-style: normal;
}

.feature-box h3 {
    color: var(--primary-color);
}

/* --- Steps Section --- */
.steps-section {
    padding: var(--spacing-xl) 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* --- Deliverables Section --- */
.deliverables-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-body);
}

.deliverables-box {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 40px 0;
    /* Removing top padding for accent */
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 50, 100, 0.1);
    /* Sophisticated shadow */
    border: none;
    /* Removed dashed border */
    position: relative;
    overflow: hidden;
}

.box-accent {
    width: 60px;
    height: 6px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    /* Reduced margin */
    border-radius: 0 0 10px 10px;
}

.deliverables-box .section-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
    /* Slightly smaller for balance */
}

.deliverables-box .section-title::after {
    display: none;
    /* Remove duplicate underline */
}

.deliverables-list {
    padding: 0 30px;
}

.deliverables-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.deliverables-list li div {
    flex: 1;
}

.deliverables-list li strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.deliverables-list li p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.check-icon {
    color: #2e7d32;
    font-size: 1.5rem;
    background: #e8f5e9;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Pricing Section --- */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--primary-dark) 80%);
    color: var(--text-dark);
}

.pricing-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.scarcity-banner {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: flash 2s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.pricing-card {
    background: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: center;
}

.card-header {
    background: #f8fbff;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.popular-tag {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    display: inline-block;
}

.price-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.card-body {
    padding: 30px;
}



.guarantee-badge {
    margin-top: 15px;
    /* Reduced from 20px to balance spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    /* Slightly smaller */
    color: var(--text-gray);
}

.guarantee-badge img {
    height: 40px;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-body);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-gray);
    margin: 15px 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- FAQ --- */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: background 0.2s;
}

.accordion-button:hover {
    background: #f9f9f9;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion-button.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    border-top: 1px solid #eee;
}

/* --- Footer --- */
.main-footer {
    background: #111;
    color: #888;
    padding: 60px 0 20px;
}

.footer-cta {
    background: #222;
    padding: 30px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 40px;
    width: 100%;
    max-width: 500px;
}

.footer-cta h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-section {
        padding-top: 40px;
    }

    .proof-items {
        gap: 10px;
    }

    .proof-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* --- Product Preview Carousel --- */
.preview-section {
    padding: var(--spacing-lg) 0;
    background: #f8f9fa;
}

.carousel-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    /* Center on desktop */
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.carousel-item {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: center;
    transition: transform 0.3s;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-item .caption {
    padding: 15px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0;
}

/* Mobile specific for carousel */
@media (max-width: 768px) {
    .carousel-wrapper {
        justify-content: flex-start;
        /* Left align for scroll on mobile */
    }

    .carousel-item {
        width: 80vw;
        /* Larger on mobile */
    }
}

/* --- Mobile Optimization Overhaul --- */
/* --- Push Notification Toast --- */
.toast-notification {
    position: fixed;
    top: -120px;
    /* Start hidden above */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 12px 16px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: top 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Enhanced spring effect */
    display: flex;
    align-items: center;
}

.toast-notification.show {
    top: 20px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

.toast-message p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for child elements if needed later */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}