@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
    --primary: #0f172a;
    --accent: #85c32f;
    --accent-hover: #74ae29;
    --accent-dark: #6ca024;
    --accent-soft: #f0fdf4;
    --success: #85c32f;
    --bg-light: #ffffff;
    --bg-muted: #f8fafc;
    --text-main: #334155;
    --text-heading: #0f172a;
    --border-color: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.4;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Compact & Mobile Ready */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-heading);
    line-height: 1.1;
    font-weight: 900;
}

h1 { font-size: clamp(2rem, 8vw, 3.5rem); letter-spacing: -0.02em; margin-bottom: 12px; }
h2 { font-size: clamp(1.6rem, 6vw, 2.5rem); letter-spacing: -0.015em; margin-bottom: 16px; }

.highlight { color: var(--accent); }

.subheadline {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 24px;
    font-weight: 500;
    max-width: 550px;
}

/* Compact Sections */
section {
    padding: 40px 0;
}

/* Header Compact */
.navbar {
    padding: 8px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container img { height: 36px; width: auto; }

/* Buttons Compact & Mobile Optimized */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.btn-primary { background-color: var(--accent); color: white; box-shadow: 0 4px 0px var(--accent-dark); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0px var(--accent-dark); }
.btn-xl { padding: 18px 32px; border-radius: 8px; width: 100%; }

/* Mobile Sticky Bar */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
    z-index: 2000;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .sticky-cta-mobile { display: block; }
    body { padding-bottom: 70px; } /* Space for sticky bar */
}

/* Hero Section Compact */
.hero { background: #ffffff; padding: 30px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    border: 1px solid #dcfce7;
    text-transform: uppercase;
}

.hero-image-wrapper { position: relative; padding: 10px; }
.hero-image-wrapper img { width: 100%; height: auto; border-radius: 12px; box-shadow: 15px 15px 0px #f8fafc; border: 1px solid var(--border-color); }

.floating-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.floating-badge .icon { width: 32px; height: 32px; background: var(--accent); border-radius: 99px; display: grid; place-items: center; color: white; }

/* Compact Testimonials */
.testimonials-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.testimonial-bar {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.test-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.test-stars { color: var(--accent); font-size: 0.75rem; }
.test-meta strong { font-weight: 800; color: var(--text-heading); font-size: 0.8rem; }
.test-snippet { font-size: 0.75rem; color: var(--text-main); font-style: italic; line-height: 1.3; opacity: 0.9; }

/* Final CTA Compact */
.final-cta {
    background: var(--primary);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.final-cta h2 { color: white; margin-bottom: 12px; font-size: clamp(1.6rem, 5vw, 2.5rem); }
.final-cta p { font-size: 1rem; margin-bottom: 24px; opacity: 0.9; max-width: 500px; margin-inline: auto; font-weight: 500; }

.cta-trust-items { display: flex; justify-content: center; gap: 16px; font-size: 0.8rem; font-weight: 800; color: #94a3b8; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.cta-trust-items span { display: flex; align-items: center; gap: 4px; }
.cta-trust-items span::before { content: '✓'; color: var(--accent); }

/* Footer Compact */
footer { padding: 30px 0; background: #0f172a; color: white; text-align: center; }

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(133, 195, 47, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(133, 195, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(133, 195, 47, 0); }
}
.pulse { animation: pulse 2.5s infinite; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-image-wrapper { max-width: 450px; margin: 0 auto; order: -1; } /* Image first on mobile hero */
    .hero-image-wrapper img { box-shadow: 10px 10px 0px #f8fafc; }
    .testimonials-compact-grid { grid-template-columns: 1fr; gap: 12px; }
    h1 { font-size: 2.2rem; }
    section { padding: 30px 0; }
}
