﻿:root {
  --primary: #0a4a5c;
  --primary-light: #166a82;
  --accent: #d4af37;
  --accent-hover: #b8972e;
  --bg-color: #f4f7f6;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-dark); background-color: var(--bg-color); line-height: 1.6; overflow-x: hidden; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #000; padding: 8px; z-index: 1000; transition: top 0.2s; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; border-radius: 8px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Decorative blob */
.blob-bg { position: absolute; top: -10%; left: -10%; width: 400px; height: 400px; background: var(--accent); opacity: 0.1; filter: blur(50px); border-radius: 50%; z-index: -1; }

/* Header */
header { background: var(--text-light); box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { font-weight: 600; color: var(--text-dark); }
.nav-links a:hover { color: var(--accent); }
.burger { display: none; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: var(--primary); }

/* Hero */
.hero { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, #062b36 100%); color: var(--text-light); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 15px 30px; border-radius: 30px; font-weight: bold; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* Stats & Social Proof */
.stats { padding: 40px 0; background: #fff; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); }
.social-proof { padding: 60px 0; background: var(--bg-color); }
.partners { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 40px; font-size: 2rem; color: #95a5a6; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-left: 4px solid var(--accent); }

/* General Sections */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); }
.asymmetric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.text-right ul { list-style: none; margin-top: 20px; }
.text-right ul li { margin-bottom: 15px; position: relative; padding-left: 30px; }
.text-right ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); }
.service-card img { border-radius: 0; height: 200px; width: 100%; object-fit: cover; }
.service-content { padding: 25px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.pricing-card { background: #fff; padding: 40px 20px; border-radius: 12px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.pricing-card.popular { border: 2px solid var(--accent); transform: scale(1.05); position: relative; }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.price { font-size: 2.5rem; font-weight: bold; color: var(--primary); margin: 20px 0; }
.pricing-card ul { list-style: none; margin-bottom: 30px; }
.pricing-card ul li { margin-bottom: 10px; }

/* Form Section */
.form-section { background: var(--primary); color: #fff; padding: 80px 0; border-radius: 20px; margin: 40px 20px; }
.form-container { max-width: 600px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 15px; color: var(--text-dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); outline: none; }
.checkbox-group { display: flex; gap: 10px; align-items: start; font-size: 0.85rem; }

/* Trust Layer & Footer */
.trust-layer { background: #eef2f3; padding: 30px 0; border-top: 1px solid #ddd; font-size: 0.85rem; color: #555; }
.trust-layer h4 { color: var(--primary); margin-bottom: 15px; font-size: 1rem; }
.trust-layer p { margin-bottom: 8px; }
.disclaimer { font-style: italic; opacity: 0.8; margin-top: 15px; border-top: 1px dashed #ccc; padding-top: 10px; }
footer { background: var(--primary); color: #fff; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-grid h5 { font-size: 1.2rem; margin-bottom: 20px; color: var(--accent); }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #fff; opacity: 0.8; }
.footer-grid a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; opacity: 0.7; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); z-index: 1000; transition: bottom 0.5s ease; text-align: center; }
.cookie-banner.show { bottom: 0; }
.cookie-btns { margin-top: 15px; display: flex; justify-content: center; gap: 10px; }

/* FAQ */
.faq-item { background: #fff; margin-bottom: 10px; border-radius: 8px; overflow: hidden; cursor: pointer; }
.faq-question { padding: 20px; font-weight: bold; color: var(--primary); background: #f9f9f9; display: flex; justify-content: space-between; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 20px; max-height: 300px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid, .stats-grid, .reviews, .asymmetric-grid, .services-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .burger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
  .nav-links.active { display: flex; }
  .pricing-card.popular { transform: scale(1); }
  .hero h1 { font-size: 2.2rem; }
}
