*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-base:     #ffffff;
  --text-dark:   #1e293b;
  --text-muted:  #475569;
  --brand-blue:  #0284c7;
  --brand-light: #e0f2fe;
  --cta-color:   #ea580c;
  --cta-hover:   #c2410c;
  --card-bg:     #ffffff;
  --border-color:#e2e8f0;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text-dark); overflow-x: hidden; line-height: 1.6; background-color: var(--bg-base); display: flex; flex-direction: column; min-height: 100vh; }
main { flex-grow: 1; }
.bg-animated { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(-45deg, #ffffff, #f8fafc, #f1f5f9, #e2e8f0); background-size: 400% 400%; animation: gradientBG 15s ease infinite; z-index: -2; }
@keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.bg-texture { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 24px 24px; z-index: -1; pointer-events: none; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }
.top-bar { background: #f1f5f9; color: #64748b; text-align: center; font-size: 0.75rem; padding: 8px 15px; position: relative; z-index: 101; border-bottom: 1px solid var(--border-color); }
header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); padding: 15px 5%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--brand-blue); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-blue); }
.nav-cta { background: var(--brand-light); color: var(--brand-blue) !important; padding: 10px 24px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--brand-blue); color: #fff !important; }
.hamburger { display: none; background: none; border: none; font-size: 2rem; color: var(--text-dark); cursor: pointer; }
.hero { position: relative; z-index: 1; padding: 60px 5% 80px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; max-width: 1300px; margin: 0 auto; min-height: 80vh; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-light); color: var(--brand-blue); font-size: 0.85rem; font-weight: 700; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-sub { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--text-muted); margin-bottom: 30px; }
.hero-bullets { list-style: none; margin-bottom: 35px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; margin-bottom: 12px; font-weight: 500; }
.hero-bullets i { color: var(--brand-blue); }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--cta-color); color: #fff; text-decoration: none; font-size: 1.1rem; font-weight: 700; padding: 16px 32px; border-radius: 50px; box-shadow: 0 10px 25px rgba(234, 88, 12, 0.25); transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); background: var(--cta-hover); box-shadow: 0 15px 35px rgba(234, 88, 12, 0.35); }
.hero-image-wrapper { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.hero-image { width: 100%; height: 550px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hero-image-wrapper:hover .hero-image { transform: scale(1.03); }
.trust-bar { padding: 30px 5%; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; background: #fff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-muted); }
.trust-item i { font-size: 1.4rem; color: var(--brand-blue); }
.services { padding: 100px 5%; max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--card-bg); border: 1px solid var(--border-color); padding: 40px 30px; border-radius: 16px; transition: all 0.3s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--brand-blue); }
.service-icon { width: 60px; height: 60px; background: var(--brand-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--brand-blue); font-size: 1.8rem; }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; }
.card-cta { color: var(--brand-blue); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.page-header { background: var(--brand-light); padding: 60px 5%; text-align: center; border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.content-container { max-width: 900px; margin: 60px auto; padding: 0 5%; background: #fff; padding-top: 40px; padding-bottom: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.content-container h2 { margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; }
.content-container p, .content-container ul { margin-bottom: 15px; color: var(--text-muted); }
.content-container ul { margin-left: 20px; }
.contact-form { display: grid; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; font-size: 0.95rem; }
.form-group input, .form-group textarea { padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px var(--brand-light); }
footer { background: #f8fafc; padding: 80px 5% 40px; border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 50px; max-width: 1300px; margin: 0 auto 50px; }
.footer-col h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.footer-col a, .footer-col p { color: var(--text-muted); text-decoration: none; margin-bottom: 12px; display: block; font-size: 0.95rem; }
.footer-col a:hover { color: var(--brand-blue); }
.disclaimer { border-top: 1px solid var(--border-color); padding-top: 40px; text-align: center; max-width: 1000px; margin: 0 auto; font-size: 0.8rem; color: #64748b; }
@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 30px; }
  .hero-bullets { display: inline-block; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { position: fixed; top: 73px; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 30px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease; }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
