﻿:root {
    --primary: #3D2C40;      /* Deep Aubergine */
    --accent: #FF6A5C;       /* Vibrant Coral */
    --accent-hover: #e55a4d;
    --secondary: #2EB67D;    /* Mint/Teal */
    --bg-main: #F9F7F4;      /* Sand off-white */
    --text-dark: #1F1A24;
    --text-muted: #5C5560;
    --white: #ffffff;
    --border-rad: 16px;
    --blob-rad: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background-color: var(--bg-main); color: var(--text-dark); margin: 0; padding: 0; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; color: var(--primary); margin-top: 0; }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--secondary); }
.skip-link { position: absolute; top: -50px; left: 0; background: var(--accent); color: var(--white); padding: 10px 15px; z-index: 9999; font-weight: bold; transition: top 0.2s; }
.skip-link:focus { top: 0; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-rad); }

/* Header & Nav */
header { background: var(--white); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 1000; }
.logo-container { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--primary); }
.logo-container img { width: 45px; height: 45px; }
.nav-links { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; font-size: 2rem; color: var(--primary); cursor: pointer; }

/* Global Sections & Buttons */
section { padding: 90px 5%; }
.btn-primary { display: inline-block; background: var(--accent); color: var(--white); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 8px 25px rgba(255,106,92,0.3); transition: var(--transition); border: none; cursor: pointer; text-align: center; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,106,92,0.4); color: var(--white); background: var(--accent-hover); }

/* Hero Section */
.hero { display: flex; align-items: center; justify-content: space-between; gap: 50px; background: radial-gradient(circle at 10% 20%, #ffffff 0%, var(--bg-main) 100%); }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 35px; }
.hero-image { flex: 1; position: relative; }
.hero-image img { border-radius: var(--blob-rad); box-shadow: 0 20px 50px rgba(61,44,64,0.15); animation: morph 8s ease-in-out infinite; }

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Statistics */
.stats { display: flex; justify-content: space-around; background: var(--primary); color: var(--white); padding: 50px 5%; text-align: center; }
.stat-item h3 { color: var(--secondary); font-size: 3rem; margin-bottom: 5px; }
.stat-item p { text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; opacity: 0.9; }

/* Social Proof */
.social-proof { text-align: center; background: var(--white); border-bottom: 1px solid #eaeaea; }
.brand-icons { display: flex; justify-content: center; gap: 50px; margin: 40px 0; font-size: 2.8rem; color: #d1ced3; flex-wrap: wrap; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.review-card { background: var(--bg-main); padding: 35px; border-radius: var(--border-rad); text-align: left; position: relative; }
.review-card::before { content: "\201C"; font-family: 'Space Grotesk', sans-serif; font-size: 4rem; color: var(--secondary); opacity: 0.2; position: absolute; top: 10px; left: 20px; }

/* Features & Cards */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-list { list-style: none; padding: 0; }
.features-list li { padding-left: 35px; position: relative; margin-bottom: 20px; font-weight: 600; font-size: 1.05rem; }
.features-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--secondary); font-size: 1.2rem; top: 2px; }

.services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.s-card { background: var(--white); padding: 30px; border-radius: var(--border-rad); box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: var(--transition); border-top: 5px solid transparent; }
.s-card:hover { transform: translateY(-10px); border-top: 5px solid var(--accent); }
.s-card h3 { margin-top: 20px; }

/* Pricing */
.pricing { background: var(--primary); color: var(--white); text-align: center; }
.pricing h2 { color: var(--white); }
.pricing-cards { display: flex; justify-content: center; gap: 30px; margin-top: 60px; flex-wrap: wrap; align-items: center; }
.p-card { background: var(--white); color: var(--text-dark); padding: 40px 30px; border-radius: var(--border-rad); width: 320px; text-align: left; position: relative; box-sizing: border-box; }
.p-card.featured { transform: scale(1.08); border: 3px solid var(--accent); box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 2; padding: 50px 30px; }
.badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 6px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.price { font-size: 3rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: var(--primary); margin: 20px 0; }

/* Lead Form */
.form-section { background: var(--white); max-width: 800px; margin: -60px auto 60px; padding: 60px; border-radius: var(--border-rad); box-shadow: 0 25px 60px rgba(61,44,64,0.1); position: relative; z-index: 10; border-top: 6px solid var(--secondary); }
.lead-form { display: grid; gap: 20px; margin-top: 30px; }
.input-group { display: flex; gap: 20px; }
.input-group input { flex: 1; }
input, textarea { width: 100%; padding: 18px; border: 2px solid #eaeaea; border-radius: 10px; font-family: inherit; font-size: 1rem; box-sizing: border-box; background: var(--bg-main); transition: var(--transition); }
input:focus, textarea:focus { outline: none; border-color: var(--secondary); background: var(--white); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--text-muted); }
.checkbox-group input { width: auto; margin-top: 5px; transform: scale(1.2); }
button[type="submit"] { width: 100%; font-size: 1.1rem; }
button:disabled { opacity: 0.7; cursor: not-allowed; }

/* FAQ */
.faq-item { background: var(--white); margin-bottom: 20px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.faq-question { padding: 25px; cursor: pointer; font-weight: 700; font-family: 'Space Grotesk', sans-serif; background: var(--white); margin: 0; color: var(--primary); display: flex; justify-content: space-between; font-size: 1.1rem; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 600px; border-top: 1px solid #f0f0f0; margin-top: 10px; }

/* Trust Layer & Footer */
.trust-layer { background: #EAE6DF; padding: 50px 5%; text-align: center; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid #d1ced3; }
.trust-layer h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; }
.disclaimer-text { font-style: italic; margin-top: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
footer { background: var(--primary); color: rgba(255,255,255,0.6); padding: 40px 5%; text-align: center; font-size: 0.9rem; }
footer p { margin: 5px 0; }
footer a { color: rgba(255,255,255,0.9); margin: 0 12px; font-weight: 600; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -120px; left: 0; width: 100%; background: var(--primary); color: var(--white); padding: 25px 5%; box-shadow: 0 -10px 30px rgba(0,0,0,0.2); display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); box-sizing: border-box; }
.cookie-banner.show { bottom: 0; }
.cookie-btn { background: var(--secondary); color: var(--white); border: none; padding: 12px 25px; border-radius: 8px; cursor: pointer; font-weight: bold; }

/* Mobile Responsive */
@media (max-width: 900px) {
    .burger { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; align-items: center; padding: 0; max-height: 0; overflow: hidden; transition: var(--transition); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .nav-links.nav-active { padding: 30px 0; max-height: 400px; }
    .hero { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .stats { flex-direction: column; gap: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-cards { flex-direction: column; }
    .p-card.featured { transform: scale(1); }
    .input-group { flex-direction: column; gap: 20px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 20px; }
}