/* Landing Page Styles - Brand Optimized */
:root {
    /* Brand Colors */
    --bg-luxury: #FBFBFC;
    --primary-accent: #1A1C1E;
    --body-text: #475569;
    --heading-text: #1A1C1E;
    --muted-slate: #94A3B8;
    --pure-white: #FFFFFF;
    --border-light: #E2E8F0;

    /* Shadows */
    --soft-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-base: 0.3s ease;
}

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--bg-luxury);
    color: var(--body-text);
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: var(--heading-text);
    font-weight: 900;
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 60px 2rem;
}

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

/* Typography Helpers */
.highlight {
    color: var(--primary-accent);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--bg-luxury);
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 251, 252, 0.92);
    /* Soft luxury off-white overlay */
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.logo-badge {
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    /* Limits width for horizontal logos */
}

.hero-logo {
    height: 120px;
    /* Elegant height for a hero logo */
    width: auto;
    object-fit: contain;
}

.logo-badge-icon {
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    /* Limits width for horizontal logos */
}

.logo-badge-text {
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    /* Limits width for horizontal log  os */
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        font-size: 1.15rem;
    }

    .hero-logo {
        height: 80px;
        /* Scale down for mobile */
    }
}

/* Buttons */
.cta-primary,
.cta-final {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-accent);
    color: var(--pure-white);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    /* pill-shaped */
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-primary:hover,
.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: var(--soft-shadow);
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-accent);
    padding: 1.15rem 2.85rem;
    border: 2px solid var(--border-light);
    border-radius: 9999px;
    /* pill-shaped */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--soft-shadow);
    background-color: var(--pure-white);
    border-color: var(--primary-accent);
}

/* Section Titles */
.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

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

.problem-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.intro-text.bold {
    font-weight: 900;
    color: var(--primary-accent);
    margin-top: 1.5rem;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.pain-point {
    background-color: var(--pure-white);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--soft-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.pain-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1;
}

.pain-point p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 968px) {
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pain-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pain-point {
        padding: 1.5rem;
        flex-direction: row;
        text-align: right;
        gap: 1.5rem;
    }
}

.problem-solution {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid var(--border-light);
}

.solution-text {
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pain-points {
        grid-template-columns: 1fr;
    }
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-luxury);
}

.solution-intro {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--soft-shadow);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-number {
    font-size: 2rem;
    color: var(--muted-slate);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tagline {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.6rem;
}

.cta-center {
    text-align: center;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    background-color: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.profile-pic {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--soft-shadow);
}

.value-props {
    margin: 3rem 0;
}

.value-prop {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-prop .icon {
    font-size: 2rem;
    line-height: 1;
}

.mission-statement {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-accent);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--soft-shadow);
}

.faq-question {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-luxury);
    text-align: center;
    padding-bottom: 160px;
}

.cta-headline {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--soft-shadow);
    text-align: right;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    color: var(--primary-accent);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--body-text);
    transition: all var(--transition-base);
    background-color: var(--bg-luxury);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    background-color: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(26, 28, 30, 0.05);
}

.contact-form button.cta-final {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.form-status {
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    min-height: 1.5rem;
}

.form-status.success {
    color: #10B981;
}

.form-status.error {
    color: #EF4444;
}

@media (max-width: 640px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Contact Divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-light);
}

.contact-divider span {
    color: var(--muted-slate);
    font-size: 0.9rem;
    font-weight: 500;
}

/* WhatsApp Button */
.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-color: #25D366;
    color: var(--pure-white);
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    background-color: #1fb855;
}

/* Footer */
.landing-footer {
    padding: 80px 2rem;
    background-color: var(--pure-white);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-img {
    height: 160px;
    /* Stamp variant is vertical/square-ish */
    margin-bottom: 2rem;
    object-fit: contain;
}

.footer-text {
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--muted-slate);
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

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

/* Section Image Utilities */
.section-image-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.section-image-content {
    flex: 1;
}

.section-image-container {
    flex: 1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: all var(--transition-base);
    max-height: 500px;
}

.section-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .section-image-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .section-image-container {
        width: 100%;
        max-height: 400px;
    }
}

/* Utility Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}