:root {
    --primary: #570406;
    /* Deep Burgundy */
    --primary-light: #7a1a1c;
    /* Lighter Burgundy for hover */
    --secondary: #F9F1F1;
    /* Very pale reddish-white */
    --accent: #C5A065;
    /* Classy Gold to match burgundy */
    --whatsapp: #25D366;
    /* WhatsApp Green */
    --whatsapp-dark: #128C7E;
    --text: #2D0203;
    /* Very dark reddish-black */
    --text-light: #664445;
    /* Muted warm text */
    --bg-gradient: linear-gradient(135deg, #xFFFFFF 0%, #FBEFEF 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(87, 4, 6, 0.1);
    --shadow: 0 8px 32px 0 rgba(87, 4, 6, 0.08);

    --radius: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background: var(--bg-gradient);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 600px;
    /* Mobile-focused Link-in-bio style */
    margin: 0 auto;
    padding: 2rem 0;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.glass-card-sm {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0 1rem;
}

.logo-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(87, 4, 6, 0.2);
    border: 4px solid white;
    background: white;
    /* Ensures transparent logos look good */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills the circle */
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hook Section */
.hook-section .pain-text {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hook-section .value-prop {
    background: rgba(87, 4, 6, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.hook-section .value-prop p span {
    color: var(--primary);
    font-weight: 700;
}

/* Services */
.services-list {
    display: grid;
    gap: 0.8rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-item:hover {
    transform: translateX(5px);
    background: white;
}

.service-item .icon {
    font-size: 1.2rem;
}

/* Visual Proof */
.comparison-container {
    text-align: center;
}

.comparison-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Testimonials Images */
.testimonials-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-img {
    width: 100%;
    border-radius: 8px;
    /* Slightly smaller radius for screenshots */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary large number */
    padding-bottom: 1rem;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.testimonial-card {
    border-left: 4px solid var(--accent);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Contact / Location */
.location-section {
    padding-bottom: 4rem;
}

.location-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.location-icon {
    color: var(--primary);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--whatsapp);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    /* added spacing for inserted buttons */
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: var(--whatsapp-dark);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(82, 183, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(82, 183, 136, 0);
    }
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}