﻿:root {
  --primary: #020617;
  --secondary: #EAB308;
  --accent: #3B82F6;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --success: #10B981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--text-dark); background-color: var(--bg-light); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }

.skip-link { position: absolute; top: -50px; left: 0; background: var(--secondary); color: var(--primary); padding: 12px 20px; z-index: 1000; font-weight: bold; transition: top 0.3s; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; }

header { background: var(--white); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 50; }
.logo { font-size: 28px; font-weight: 900; font-family: 'Playfair Display', serif; color: var(--primary); display: flex; align-items: center; gap: 12px; }
.logo img { width: 36px; height: 36px; }
nav ul { display: flex; gap: 30px; list-style: none; }
nav ul li a { font-weight: 500; transition: color 0.3s; font-size: 1.1rem; }
nav ul li a:hover { color: var(--accent); }

.hero { background: linear-gradient(135deg, #020617 0%, #1E293B 100%); color: var(--white); padding: 140px 5%; text-align: center; }
.hero h1 { color: var(--white); font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; }
.hero p { font-size: 1.35rem; color: #CBD5E1; max-width: 850px; margin: 0 auto 40px; font-weight: 300; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 45px; background: var(--accent); color: var(--white); font-weight: 600; font-size: 1.15rem; border-radius: 6px; transition: all 0.3s ease; border: none; cursor: pointer; text-align: center; }
.btn:hover { background: #2563EB; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

section { padding: 100px 5%; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 60px; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); text-align: left; border-bottom: 4px solid transparent; transition: all 0.3s ease; }
.card:hover { transform: translateY(-10px); border-bottom-color: var(--secondary); }
.card i { font-size: 3.5rem; color: var(--accent); margin-bottom: 25px; display: block; }
.card h3 { font-size: 1.8rem; margin-bottom: 15px; }

.features-asymmetric { display: flex; align-items: center; justify-content: space-between; gap: 60px; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.06); margin-bottom: 50px; }
.feat-img { flex: 1; min-height: 600px; width: 100%; object-fit: cover; }
.feat-text { flex: 1; padding: 60px; }
.feat-text h2 { font-size: 2.8rem; margin-bottom: 20px; }
.feat-text p { font-size: 1.2rem; margin-bottom: 25px; color: var(--text-muted); }
.feat-text ul { list-style: none; margin-top: 30px; }
.feat-text ul li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; font-size: 1.15rem; }
.feat-text ul li i { color: var(--secondary); font-size: 1.5rem; margin-top: 2px; }

.form-wrapper { background: var(--bg-alt); }
.form-section { background: var(--primary); color: var(--white); border-radius: 16px; padding: 70px; max-width: 900px; margin: 0 auto; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.form-section h2 { color: var(--white); text-align: center; margin-bottom: 20px; font-size: 2.8rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.lead-form input { width: 100%; padding: 18px; border: 1px solid #334155; border-radius: 6px; background: #1E293B; color: var(--white); font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.lead-form input:focus { outline: none; border-color: var(--accent); }
.full-width { grid-column: span 2; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #94A3B8; }
.checkbox-group input { width: 20px; height: 20px; margin-top: 2px; cursor: pointer; }
.checkbox-group a { color: var(--secondary); text-decoration: underline; }

.success-message { display: none; text-align: center; padding: 50px; background: #1E293B; border-radius: 12px; border: 2px solid var(--success); }
.success-message i { font-size: 5rem; color: var(--success); margin-bottom: 25px; }

details { background: var(--white); margin-bottom: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); overflow: hidden; }
summary { padding: 25px; font-weight: 600; font-size: 1.2rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--accent); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
.details-content { padding: 0 25px 25px; color: var(--text-muted); font-size: 1.1rem; }

footer { background: #020617; color: #94A3B8; padding: 80px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-bottom: 60px; }
.footer-links h4 { color: var(--white); margin-bottom: 25px; font-size: 1.3rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a:hover { color: var(--secondary); }
.footer-legal { border-top: 1px solid #1E293B; padding-top: 40px; text-align: center; font-size: 0.9rem; line-height: 1.8; }

#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 25px 5%; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; z-index: 1000; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
#cookie-banner.show { transform: translateY(0); }
.legal-content { max-width: 1000px; margin: 0 auto; background: var(--white); padding: 60px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-radius: 12px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; font-size: 1.8rem; }
.legal-content p, .legal-content ul { margin-bottom: 25px; font-size: 1.1rem; }
.legal-content ul { padding-left: 25px; }

@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .features-asymmetric { flex-direction: column; }
  .feat-img { min-height: 400px; }
}
@media (max-width: 768px) {
  header { flex-direction: column; gap: 20px; }
  .lead-form { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  #cookie-banner { flex-direction: column; gap: 20px; text-align: center; }
  .section-title { font-size: 2.2rem; }
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.fa-spinner { animation: spin 1s linear infinite; margin-right: 10px; }
