:root {
    --primary: #059669; /* Emerald */
    --accent: #3b82f6; /* Blue */
    --bg-light: #f3f4f6;
    --bg-mint: #ecfdf5;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); color: var(--text-main); line-height: 1.6; background: var(--bg-light); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.center { text-align: center; }

h1, h2, h3, h4 { color: #111827; }

/* USP Marquee */
.usp-marquee { background: var(--primary); color: var(--white); overflow: hidden; white-space: nowrap; padding: 10px 0; font-size: 0.9rem; font-weight: 500; display: flex; }
.usp-marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 40px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Header */
.site-header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.brand-logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.desktop-nav ul { list-style: none; display: flex; gap: 30px; }
.desktop-nav a { font-weight: 500; color: var(--text-main); transition: color 0.3s; }
.desktop-nav a:hover { color: var(--primary); }
.mobile-menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-toggle span { display: block; width: 25px; height: 3px; background: var(--text-main); transition: 0.3s; }
.mobile-nav { display: none; background: var(--white); padding: 20px; position: absolute; width: 100%; box-shadow: var(--shadow); }
.mobile-nav.active { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }

/* Buttons */
.btn { display: inline-block; padding: 10px 24px; border-radius: 6px; font-weight: 600; text-align: center; transition: all 0.3s; cursor: pointer; border: none; font-family: var(--font); }
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover { background: #047857; border-color: #047857; color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); backdrop-filter: blur(5px); }
.btn-secondary:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 14px 32px; font-size: 1.1rem; }

/* Hero */
.hero-section { min-height: 80vh; background-size: cover; background-position: center; display: flex; align-items: center; color: var(--white); position: relative; }
.hero-content { max-width: 800px; padding: 50px 20px; text-align: center; margin: 0 auto; }
.trust-badge { display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.3); }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.25rem; opacity: 0.95; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats-section { background: var(--white); margin-top: -50px; position: relative; z-index: 10; padding: 30px 0; border-radius: 12px; box-shadow: var(--shadow); max-width: 1000px; margin-left: auto; margin-right: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-card h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; font-weight: 800; }
.stat-card p { font-weight: 500; color: var(--text-muted); }

/* Services */
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-main); margin-bottom: 10px; font-weight: 800; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.service-card img { width: 100%; height: 220px; object-fit: cover; border-bottom: 3px solid var(--primary); }
.service-content { padding: 25px; }
.service-content h3 { margin-bottom: 10px; color: var(--text-main); font-size: 1.3rem; }
.service-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.btn-link { color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.badge { position: absolute; top: 15px; right: 15px; background: var(--accent); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }

.service-detailed-card { display: flex; gap: 40px; margin-bottom: 60px; align-items: stretch; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.service-detailed-card.reverse { flex-direction: row-reverse; }
.service-img { flex: 1; min-width: 300px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-details { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.service-details h2 { font-size: 1.8rem; margin-bottom: 15px; }
.service-details ul { padding-left: 20px; margin-bottom: 25px; margin-top: 15px; }
.service-details li { margin-bottom: 10px; line-height: 1.6; color: var(--text-muted); }

/* Features */
.alt-bg { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.feature-card { text-align: center; padding: 20px; }
.feature-card .icon-wrapper { width: 80px; height: 80px; background: var(--bg-mint); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-card .icon-wrapper svg { width: 40px; height: 40px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--white); padding: 35px; border-radius: 12px; box-shadow: var(--shadow); border-top: 4px solid var(--primary); }
.stars { color: #f59e0b; font-size: 1.3rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }
.client-info { display: flex; align-items: center; gap: 15px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.1rem; }
.client-info h4 { margin-bottom: 2px; font-size: 1rem; }
.client-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Footer */
.site-footer { background: #111827; color: #9ca3af; padding: 70px 0 20px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-col h3 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; font-weight: 600; }
.footer-col.brand-col .brand-logo { color: var(--white); margin-bottom: 15px; display: inline-block; font-size: 2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.payment-icons { display: flex; gap: 20px; margin-top: 15px; align-items: center; filter: grayscale(100%) opacity(0.7); transition: 0.3s; }
.payment-icons:hover { filter: grayscale(0%) opacity(1); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 25px; text-align: center; font-size: 0.9rem; }

/* Cookie */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -10px 25px rgba(0,0,0,0.1); padding: 25px; z-index: 1000; display: none; border-top: 3px solid var(--primary); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 30px; font-weight: 500; }

/* Responsive */
@media (max-width: 992px) {
    .service-detailed-card, .service-detailed-card.reverse { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .header-cta, .desktop-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .stats-section { margin: 20px; width: auto; }
    .cookie-content { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-padding { padding: 50px 0; }
}
