﻿:root {
    --primary: #0A3641;
    --accent: #FF6B6B;
    --bg-light: #F4F1EA;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg-light); color: var(--text-main); margin: 0; padding: 0; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--primary); margin-top: 0; }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { opacity: 0.8; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: var(--white); padding: 8px; z-index: 1000; transition: top 0.2s; }
.skip-link:focus { top: 0; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Header */
header { background: var(--white); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 999; }
.logo-container { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.logo-container img { width: 40px; height: 40px; border-radius: 8px; }
.nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--primary); font-weight: 600; }
.nav-links a:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; }

/* Main Sections */
section { padding: 80px 5%; }
.hero { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%); }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-image { flex: 1; }
.btn-primary { display: inline-block; background: var(--accent); color: var(--white); padding: 15px 35px; border-radius: 30px; font-weight: 600; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(255,107,107,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(255,107,107,0.4); color: var(--white); }

/* Stats & Trust */
.stats { display: flex; justify-content: space-around; background: var(--primary); color: var(--white); padding: 40px 5%; text-align: center; }
.stat-item h3 { color: var(--accent); font-size: 2.5rem; margin-bottom: 5px; }
.social-proof { text-align: center; padding: 40px 5%; background: var(--white); }
.brand-icons { display: flex; justify-content: center; gap: 40px; margin: 30px 0; font-size: 2.5rem; color: #ccc; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--bg-light); padding: 30px; border-radius: 12px; border-left: 4px solid var(--accent); text-align: left; }

/* Features & Services */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.features-list { list-style: none; padding: 0; }
.features-list li { padding-left: 30px; position: relative; margin-bottom: 15px; font-weight: 500; }
.features-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent); }
.services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.s-card { background: var(--white); padding: 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); }
.s-card:hover { transform: translateY(-10px); }
.s-card img { margin-bottom: 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: 50px; flex-wrap: wrap; }
.p-card { background: var(--white); color: var(--text-main); padding: 40px; border-radius: 16px; width: 300px; text-align: left; position: relative; }
.p-card.featured { transform: scale(1.05); border: 2px solid var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.p-card h3 { color: var(--primary); }
.price { font-size: 2.5rem; font-weight: bold; color: var(--primary); margin: 20px 0; }

/* Lead Form Section */
.form-section { background: var(--white); max-width: 800px; margin: -50px auto 50px; padding: 50px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); position: relative; z-index: 10; }
.lead-form { display: grid; gap: 20px; }
.input-group { display: flex; gap: 20px; }
.input-group input { flex: 1; }
input, textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; box-sizing: border-box; background: var(--bg-light); }
input:focus, textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.checkbox-group input { width: auto; margin-top: 5px; }
button[type="submit"] { width: 100%; border: none; cursor: pointer; font-size: 1.1rem; }
button:disabled { opacity: 0.7; cursor: not-allowed; }

/* FAQ */
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; font-weight: bold; background: var(--white); margin: 0; color: var(--primary); display: flex; justify-content: space-between; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; border-top: 1px solid #eee; }

/* Trust Layer & Footer */
.trust-layer { background: #e8e4db; padding: 40px 5%; text-align: center; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid #ddd; }
.trust-layer h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 15px; }
.disclaimer-text { font-style: italic; margin-top: 15px; }
footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 40px 5%; text-align: center; font-size: 0.9rem; }
footer a { color: rgba(255,255,255,0.9); margin: 0 10px; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100px; left: 0; width: 100%; background: var(--white); padding: 20px 5%; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.4s; box-sizing: border-box; }
.cookie-banner.show { bottom: 0; }
.cookie-btn { background: var(--accent); color: var(--white); border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; }

/* Responsive */
@media (max-width: 768px) {
    .burger { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; align-items: center; padding: 20px 0; box-shadow: 0 10px 10px rgba(0,0,0,0.1); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: var(--transition); }
    .nav-links.nav-active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .hero { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .stats { flex-direction: column; gap: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .input-group { flex-direction: column; gap: 20px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
}