:root {
    --bg-color: #F9F7F3;
    --text-color: #4A4A4A;
    --primary-color: #2A3B47;
    --accent-color: #D96C4A;
    --accent-hover: #c05c3c;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 500;
}
.logo img { height: 40px; }

.nav-menu {
    display: flex;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--accent-color); }

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Graphic Element */
.graphic-element {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 108, 74, 0.15) 0%, rgba(217, 108, 74, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-text { flex: 1; }
.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.hero-image { flex: 1; }
.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Random Section 1 */
.random-section {
    padding: 80px 0;
    background: var(--white);
}
.random-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Features Asymmetric */
.features { padding: 80px 0; }
.features-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.feature-image { flex: 1; }
.feature-image img {
    width: 100%;
    border-radius: var(--border-radius);
}
.feature-text { flex: 1; }
.feature-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.feature-text ul { list-style: none; }
.feature-text li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.accent-icon {
    color: var(--accent-color);
    margin-top: 5px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--white);
}
.pricing h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.price-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}
.price-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.price {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.price span { font-size: 1rem; color: var(--text-color); }
.price-card p { margin-bottom: 30px; min-height: 50px; }
.price-card.recommended {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}
.form-container {
    display: flex;
    gap: 50px;
    align-items: center;
}
.form-text { flex: 1; }
.form-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.lead-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-color);
}
.form-group { margin-bottom: 20px; }
.lead-form input, .lead-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}
.checkbox-group input { width: auto; margin-top: 5px; }
.btn-submit { width: 100%; }

/* Methodology */
.meth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.meth-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}
.meth-item h3 { color: var(--primary-color); margin-bottom: 15px; }

/* Pages: About, Services, FAQ, Contact */
.page-content { padding: 60px 0; min-height: 60vh;}
.page-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}
.page-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}
.content-text h2 { color: var(--primary-color); margin: 30px 0 15px; }

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.service-row.reverse { flex-direction: row-reverse; }
.service-row img {
    width: 50%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-desc { width: 50%; }
.service-desc h2 { color: var(--primary-color); margin-bottom: 15px; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 20px;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 15px; color: var(--text-color); }

.contact-grid {
    display: flex;
    gap: 50px;
}
.contact-info, .contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-info h2 { color: var(--primary-color); margin-bottom: 20px; }
.contact-info p { margin-bottom: 10px; }
.map-container { margin-top: 20px; border-radius: var(--border-radius); overflow: hidden; }

.legal-doc h3 { color: var(--primary-color); margin: 25px 0 10px; }

/* Trust Layer */
.trust-layer {
    background: #e8ecef;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
}
.trust-layer h3 { color: var(--primary-color); margin-bottom: 15px; }
.trust-layer a { color: var(--accent-color); }
.disclaimer { font-size: 0.8rem; margin-top: 15px; color: #666; font-style: italic; }

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-col { flex: 1; min-width: 250px; }
.footer-col h4 { margin-bottom: 20px; color: var(--accent-color); }
.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-legal { font-size: 0.75rem; color: #888; margin-top: 20px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .features-inner { flex-direction: column; }
    .pricing-grid, .meth-grid { grid-template-columns: 1fr; }
    .price-card.recommended { transform: scale(1); }
    .form-container, .contact-grid { flex-direction: column; }
    .service-row, .service-row.reverse { flex-direction: column; }
    .service-row img, .service-desc { width: 100%; }
}
@media (max-width: 768px) {
    .burger { display: block; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
    }
    .nav-menu.active { left: 0; }
    .cookie-content { flex-direction: column; text-align: center; }
}