﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
    --bg-main: #FAFAFA;
    --text-main: #2D3748;
    --text-muted: #718096;
    --primary: #E27D60; /* Terracotta */
    --secondary: #41B3A3; /* Sage/Teal */
    --accent: #E8A87C; /* Sand */
    --dark: #1A202C;
    --white: #FFFFFF;
    --shadow-soft: 0 15px 35px rgba(45, 55, 72, 0.08);
    --border-radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; color: var(--dark); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); }

/* Unique Background Element */
.bg-blobs {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
    background: radial-gradient(circle at 80% 10%, rgba(226, 125, 96, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(65, 179, 163, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: rgba(250,250,250,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.03); }
.logo { display: flex; align-items: center; gap: 0.8rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--dark); letter-spacing: -0.5px; }
.logo img { width: 35px; height: 35px; }
nav ul { display: flex; gap: 2.5rem; }
nav a { font-weight: 500; font-size: 1.05rem; }
nav a:hover { color: var(--primary); }
.nav-cta { background: var(--dark); color: var(--white); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.95rem; }
.nav-cta:hover { background: var(--primary); color: var(--white); }

/* Hero Section */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 6rem 5% 4rem; max-width: 1200px; margin: 0 auto; }
.hero h1 { font-size: clamp(3rem, 7vw, 5rem); line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: clamp(1.1rem, 2.5vw, 1.3rem); color: var(--text-muted); max-width: 700px; margin-bottom: 3rem; }
.hero-img-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; width: 100%; height: 500px; }
.hero-img-grid img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-soft); }
.hero-img-grid img:nth-child(2) { border-radius: 50% 24px 24px 24px; }

/* Random Section - Workspace Analysis */
.analysis-section { padding: 6rem 5%; background: var(--white); margin: 4rem 5%; border-radius: 40px; box-shadow: var(--shadow-soft); text-align: center; }
.analysis-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 3rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { padding: 3rem 2rem; background: var(--bg-main); border-radius: var(--border-radius); transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.02); }
.card:hover { transform: translateY(-10px); }
.card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.card p { color: var(--text-muted); }

/* Features (Asymmetrical) */
.features { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.features-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 2rem; line-height: 1.1; }
.features-list li { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.icon-box { background: rgba(226, 125, 96, 0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 16px; flex-shrink: 0; }
.icon-box i { color: var(--primary); font-size: 1.5rem; }
.features-list h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.features-list p { color: var(--text-muted); font-size: 0.95rem; }
.features-image { position: relative; }
.features-image::before { content: ''; position: absolute; width: 100%; height: 100%; background: var(--accent); top: -20px; right: -20px; border-radius: var(--border-radius); z-index: -1; }

/* About Section */
.about { padding: 8rem 5%; background: var(--dark); color: var(--white); text-align: center; }
.about-inner { max-width: 800px; margin: 0 auto; }
.about h2 { font-size: 3rem; color: var(--white); margin-bottom: 2rem; }
.about p { font-size: 1.2rem; color: #A0AEC0; margin-bottom: 1.5rem; }

/* Lead Form Section */
.contact-section { padding: 6rem 5%; max-width: 900px; margin: 0 auto; }
.form-container { background: var(--white); padding: 4rem; border-radius: 30px; box-shadow: var(--shadow-soft); border-top: 6px solid var(--secondary); }
.form-container h2 { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; }
.form-container > p { text-align: center; color: var(--text-muted); margin-bottom: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark); font-size: 0.95rem; }
.form-group input { width: 100%; padding: 1.2rem; border: 2px solid #EDF2F7; border-radius: 12px; font-family: 'Outfit', sans-serif; font-size: 1rem; transition: all 0.3s; background: #F7FAFC; }
.form-group input:focus { outline: none; border-color: var(--secondary); background: var(--white); }
.checkbox-group { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.checkbox-group input { margin-top: 0.3rem; transform: scale(1.2); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-muted); }
.submit-btn { width: 100%; background: var(--dark); color: var(--white); border: none; padding: 1.2rem; font-size: 1.1rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; border-radius: 12px; cursor: pointer; transition: transform 0.2s, background 0.3s; }
.submit-btn:hover { background: var(--secondary); transform: translateY(-2px); }
.success-msg { display: none; text-align: center; padding: 2rem; }
.success-msg i { font-size: 4rem; color: var(--secondary); margin-bottom: 1rem; }

/* FAQ */
.faq { padding: 4rem 5% 8rem; max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 3rem; margin-bottom: 3rem; }
details { background: var(--white); border-radius: 16px; margin-bottom: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid #EDF2F7; }
summary { padding: 1.5rem; font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark); list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); line-height: 1.7; }

/* Legal Pages Standard Layout */
.legal-main { padding: 6rem 5%; max-width: 900px; margin: 0 auto; }
.legal-card { background: var(--white); padding: 4rem; border-radius: 30px; box-shadow: var(--shadow-soft); }
.legal-card h1 { font-size: 2.8rem; margin-bottom: 2rem; border-bottom: 2px solid #EDF2F7; padding-bottom: 1rem; }
.legal-card h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.legal-card p, .legal-card ul { margin-bottom: 1.2rem; color: var(--text-muted); }
.legal-card ul { padding-left: 2rem; list-style-type: disc; }
.map-container { width: 100%; height: 350px; border-radius: var(--border-radius); overflow: hidden; margin-top: 2rem; }

/* Footer */
footer { background: var(--white); border-top: 1px solid #EDF2F7; padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-col h3 { color: var(--dark); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 0.8rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #EDF2F7; font-size: 0.9rem; color: var(--text-muted); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 650px; background: var(--dark); color: var(--white); box-shadow: var(--shadow-soft); padding: 1.5rem 2rem; border-radius: 20px; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cookie-text p { font-size: 0.9rem; color: #E2E8F0; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btn { background: var(--secondary); color: var(--white); border: none; padding: 0.8rem 1.8rem; border-radius: 10px; cursor: pointer; font-weight: 600; white-space: nowrap; transition: background 0.3s; }
.cookie-btn:hover { background: #319789; }

/* Responsive */
@media (max-width: 992px) {
    .features { grid-template-columns: 1fr; }
    .features-image { order: -1; }
    .hero-img-grid { height: 350px; }
}
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .legal-card, .form-container { padding: 2rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
