@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Manrope:wght@700;800;900&family=Fira+Code&display=swap');

:root {
    /* Base Colors - The Canvas */
    --color-bg-body: #ffffff;
    --color-bg-card: #f8fafc;
    --color-bg-accent: #e2e8f0;
    --color-bg-input: #ffffff;
    --color-bg-light: #f8fafc; /* Added for section backgrounds */
    
    /* Text Colors - The Ink */
    --color-text-main: #334155;
    --color-text-muted: #64748b;
    --color-text-light: #aaa;
    --color-text-accent: #f97316;
    --color-text-inverted: #ffffff;

    /* Brand Colors - The Soul */
    --color-primary: #0ea5e9;
    --color-primary-hover: #0284c7; 
    --color-secondary: #f97316;
    --color-secondary-hover: #ea580c;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Typography - The Voice */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;

    /* Spacing & Layout - The Grid */
    --container-max: 1280px;
    --grid-gutter: 2rem;
    --section-spacing: 5rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Effects - The Polish */
    --shadow-soft: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --border-light: 1px solid #e2e8f0; /* Use color from palette */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Modern CSS Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* Responsive font size */
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
p { margin-bottom: 1rem; color: var(--color-text-muted);}
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-hover); text-decoration: underline; }
strong { font-weight: var(--fw-bold); color: var(--color-text-main); }
ul { list-style-position: inside; padding-left: 1rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }

/* --- Layout --- */
.container { width: 90%; max-width: var(--container-max); margin: 0 auto; }
.container-sm { width: 90%; max-width: 800px; margin: 0 auto; }
.container-header { width: 95%; max-width: 1440px; margin: 0 auto;}
.section { padding: var(--section-spacing) 0; }
.bg-light { background-color: var(--color-bg-light); }
.text-center { text-align: center; }
.grid-3-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--grid-gutter); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gutter); align-items: center; }
.split-layout.reverse { grid-template-columns: 1fr 1fr; }
.split-layout.reverse .split-content { grid-column: 2; }
.split-layout.reverse .split-image { grid-column: 1; }
@media(max-width: 900px) { 
    .split-layout { grid-template-columns: 1fr; }
    .split-layout.reverse .split-content, .split-layout.reverse .split-image { grid-column: 1; }
    .split-layout.reverse .split-image { grid-row: 1; }
}

/* --- Components --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}
.btn-primary { background-color: var(--color-primary); color: var(--color-text-inverted); }
.btn-primary:hover { background-color: var(--color-primary-hover); }
.btn-secondary { background-color: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background-color: var(--color-primary); color: var(--color-text-inverted); }
.btn-lg { font-size: 1.1rem; padding: 1rem 2.5rem; }

.card {
    background-color: var(--color-bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: var(--fw-medium); margin-bottom: 0.5rem; color: var(--color-text-main); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-bg-accent);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }
.form-group-checkbox { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group-checkbox input { width: auto; margin-top: 5px; }
.form-group-checkbox label { font-size: 0.9rem; color: var(--color-text-muted); }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-light);
    transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}
.container-header { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 1.8rem; color: var(--color-text-main); text-decoration: none; }
.main-nav ul { display: flex; list-style: none; gap: 2.5rem; }
.main-nav a { color: var(--color-text-muted); font-weight: var(--fw-medium); text-decoration: none; position: relative; padding: 0.5rem 0; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--color-primary); transition: width var(--transition-fast); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--color-text-main); }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }
.phone-link { color: var(--color-text-muted); font-weight: var(--fw-medium); }
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger-line { display: block; width: 25px; height: 3px; background-color: var(--color-text-main); margin: 5px 0; transition: all var(--transition-smooth); }

/* --- Mobile Navigation --- */
@media(max-width: 1024px) {
    .main-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background-color: var(--color-bg-body); box-shadow: -10px 0 30px -15px rgba(0,0,0,0.1); transition: right var(--transition-smooth); padding-top: 5rem; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 1rem; }
    .main-nav a { font-size: 1.2rem; }
    .header-actions .phone-link { display: none; }
    .mobile-nav-toggle { display: block; z-index: 1001; }
    body.nav-open .main-nav { right: 0; }
    body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(2) { opacity: 0; }
    body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* --- Hero Section --- */
.hero { min-height: calc(100vh - 80px); display: flex; align-items: center; background-color: var(--color-bg-light); }
.hero-content { max-width: 800px; }
.hero-headline { margin-bottom: 1rem; }
.hero-subheadline { font-size: 1.25rem; color: var(--color-text-muted); max-width: 600px; margin-bottom: 2rem; }
.hero-cta-group { display: flex; gap: 1rem; margin-bottom: 3rem; }
.trust-element p { font-weight: var(--fw-medium); margin-bottom: 1rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.trust-logos { display: flex; gap: 2rem; align-items: center; }
.trust-logos span { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--color-text-light); font-size: 1.2rem; filter: grayscale(100%); opacity: 0.7; }

/* --- Specific Sections --- */
.value-proposition .card-icon { font-size: 2rem; color: var(--color-primary); margin-bottom: 1rem; }
.process-steps .step { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.step-number { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: white; display: grid; place-items: center; font-weight: var(--fw-bold); font-family: var(--font-display); }
.split-image { background: var(--color-bg-accent); border-radius: var(--radius-lg); display: grid; place-items: center; min-height: 300px; color: var(--color-text-muted); }

/* Testimonials */
.testimonial-carousel { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--grid-gutter); }
.testimonial-card .quote { font-size: 1.1rem; color: var(--color-text-main); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.avatar-circle { width: 50px; height: 50px; border-radius: 50%; background: var(--color-primary); color: white; display: grid; place-items: center; font-weight: var(--fw-bold); font-size: 1.2rem; }
.author span { font-size: 0.9rem; color: var(--color-text-muted); }

/* Trust Badges */
.trust-badge-bar { background: var(--color-bg-body); padding: 2rem 0; }
.badge-container { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; gap: 2rem; }
.badge { font-family: var(--font-body); color: var(--color-text-muted); font-weight: var(--fw-medium); text-align: center; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--grid-gutter); margin-top: 3rem; }
.pricing-card { text-align: center; }
.pricing-card.featured { border: 2px solid var(--color-primary); transform: scale(1.05); position: relative; overflow: hidden; }
.featured-badge { position: absolute; top: 15px; right: -40px; background: var(--color-secondary); color: white; padding: 5px 40px; transform: rotate(45deg); font-size: 0.8rem; font-weight: bold; }
.pricing-card .price { font-size: 2.5rem; font-weight: var(--fw-bold); color: var(--color-text-main); margin: 1rem 0; }
.pricing-card .price span { font-size: 1.5rem; }
.pricing-card .description { color: var(--color-text-muted); margin-bottom: 2rem; }
.pricing-card ul { list-style: none; text-align: left; padding: 0; margin-bottom: 2rem; }
.pricing-card li { padding-left: 1.5rem; position: relative; }
.pricing-card li::before { content: '✓'; color: var(--color-success); position: absolute; left: 0; }

/* FAQ */
.faq-accordion details { border-bottom: var(--border-light); padding: 1.5rem 0; }
.faq-accordion summary { font-weight: var(--fw-medium); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform var(--transition-fast); }
.faq-accordion details[open] summary::after { transform: rotate(45deg); }
.faq-content { padding-top: 1rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--grid-gutter); }
.team-member { text-align: center; }
.team-member .avatar-circle { margin: 0 auto 1.5rem auto; width: 100px; height: 100px; font-size: 2.5rem; }
.team-member .role { color: var(--color-primary); font-weight: var(--fw-medium); margin-bottom: 1rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.gallery-item { background: var(--color-bg-accent); border-radius: var(--radius-md); height: 250px; display: grid; place-items: center; color: var(--color-text-muted); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--grid-gutter); }
.info-block { margin-bottom: 2rem; }
.info-block h4 { color: var(--color-text-main); }
@media(max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }


/* --- Footer --- */
.site-footer { background-color: var(--color-text-main); color: var(--color-text-inverted); padding: 4rem 0 2rem 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--grid-gutter); margin-bottom: 3rem; }
.footer-col h4 { color: var(--color-text-inverted); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-col p { color: var(--color-bg-accent); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: var(--color-bg-accent); }
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: var(--color-bg-accent); margin: 0; }
.footer-bottom .disclaimer { font-size: 0.8rem; margin-top: 1rem; opacity: 0.7; }

/* --- JS-related classes --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth); }
.fade-in-up { opacity: 1; transform: translateY(0); }

#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px -10px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: bottom var(--transition-smooth);
}
#cookie-banner.show { bottom: 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
@media(max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
}

/* THEME OVERRIDE: modern-dark */

            :root {
                --color-primary: #ffd700;
                --color-secondary: #ffffff;
                --color-accent: #ffeb3b;
                --color-bg-body: #1a1a1a;
                --color-bg-light: #2d2d2d;
                --color-text-body: #e0e0e0;
                --font-heading: 'Playfair Display', serif;
                --font-body: 'Lato', sans-serif;
                --border-radius-sm: 0px;
                --border-radius-lg: 0px;
                --shadow-card: 0 10px 20px rgba(0,0,0,0.5);
            }
            body { color: var(--color-text-body); }
            h1, h2, h3 { color: #fff; }
            .card { background: #333; border-left: 4px solid var(--color-primary); }
            .btn-primary { background: var(--color-primary); color: #000; font-weight: bold; text-transform: uppercase; }
        