* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #0b3d63;
  --primary-dark: #072943;
  --accent: #c9a24b;
  --accent-dark: #a9822f;
  --text: #2b2f33;
  --text-light: #6b7280;
  --bg-light: #f6f7f9;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11,61,99,0.12);
  font-family: 'Poppins', Arial, sans-serif;
}
body { color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; cursor: pointer; border: none; transition: all .25s ease; }
.btn--primary { background: var(--accent); color: var(--primary-dark); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--primary); }
.btn--small { padding: 10px 18px; font-size: 14px; }

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(11,61,99,0.97); backdrop-filter: blur(6px); transition: background .3s; }
.header__container { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo { font-size: 20px; font-weight: 700; color: var(--white); }
.logo span { color: var(--accent); }
.nav__list { display: flex; gap: 28px; }
.nav__list a { color: var(--white); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__list a:hover { color: var(--accent); }
.header__phone { background: var(--accent); color: var(--primary-dark); }
.header__phone:hover { background: var(--accent-dark); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; }

.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 160px 0 90px; color: var(--white); }
.hero__container { display: flex; align-items: center; gap: 40px; }
.hero__content { flex: 1.2; }
.hero__badge { display: inline-block; background: rgba(201,162,75,0.18); color: var(--accent); padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.hero h1 { font-size: 42px; font-weight: 700; line-height: 1.25; margin-bottom: 18px; }
.hero p { font-size: 17px; color: #dbe6ef; max-width: 540px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 26px; color: var(--accent); }
.hero__stats span { font-size: 13px; color: #cbd8e4; }
.hero__image { flex: 1; min-height: 340px; border-radius: var(--radius); background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=800&q=80') center/cover no-repeat; box-shadow: var(--shadow); }

.section-title { font-size: 32px; font-weight: 700; text-align: center; color: var(--primary); margin-bottom: 10px; }
.section-title--left { text-align: left; }
.section-subtitle { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 50px; }

.services { padding: 90px 0; background: var(--bg-light); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: var(--white); padding: 32px 26px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .25s; }
.service-card:hover { transform: translateY(-6px); }
.service-card__icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 19px; }
.service-card p { color: var(--text-light); font-size: 15px; }

.about { padding: 90px 0; }
.about__container { display: flex; align-items: center; gap: 50px; }
.about__image { flex: 1; min-height: 380px; border-radius: var(--radius); background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=700&q=80') center/cover no-repeat; box-shadow: var(--shadow); }
.about__content { flex: 1.1; }
.about__content p { color: var(--text-light); margin-bottom: 20px; }
.about__list { margin-bottom: 26px; }
.about__list li { margin-bottom: 10px; font-weight: 500; }

.testimonials { padding: 90px 0; background: var(--bg-light); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-card p { font-style: italic; color: var(--text); margin-bottom: 16px; }
.testimonial-card__author { font-weight: 600; color: var(--primary); }

.faq { padding: 90px 0; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item__question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 17px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__answer p { padding-bottom: 18px; color: var(--text-light); }
.faq-item.active .faq-item__answer { max-height: 200px; }

.contact { padding: 90px 0; background: var(--primary); color: var(--white); }
.contact__container { display: flex; gap: 50px; }
.contact__form-wrap { flex: 1.2; }
.contact .section-title--left { color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.form-row { display: flex; gap: 16px; }
.contact-form input, .contact-form textarea { padding: 14px; border-radius: var(--radius); border: none; font-family: inherit; font-size: 15px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.checkbox a { color: var(--accent); text-decoration: underline; }
.form-success { display: none; color: var(--accent); font-weight: 600; margin-top: 6px; }
.form-success.show { display: block; }
.contact__info { flex: 1; }
.contact__info h3 { margin-bottom: 20px; }
.contact__info ul { margin-bottom: 20px; }
.contact__info li { margin-bottom: 12px; }
.contact__info a { color: var(--accent); }
.contact__map { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.contact__social { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__social a { background: rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 30px; font-size: 13px; }
.contact__social a:hover { background: var(--accent); color: var(--primary-dark); }

.footer { background: var(--primary-dark); color: #cbd8e4; padding: 70px 0 0; }
.footer__container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 50px; }
.footer__col h4 { color: var(--white); margin-bottom: 18px; font-size: 16px; }
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col p { font-size: 14px; margin-top: 12px; }
.logo--footer { margin-bottom: 6px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { background: rgba(255,255,255,0.1); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; }
.footer__social a:hover { background: var(--accent); color: var(--primary-dark); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer__bottom a { color: var(--accent); }

.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--primary-dark); color: var(--white); padding: 18px 24px; display: none; align-items: center; justify-content: space-between; gap: 20px; z-index: 2000; flex-wrap: wrap; }
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }

.legal { padding: 150px 0 80px; max-width: 860px; margin: 0 auto; }
.legal h1 { color: var(--primary); margin-bottom: 20px; font-size: 34px; }
.legal h2 { color: var(--primary); margin: 28px 0 10px; font-size: 20px; }
.legal p { color: var(--text-light); margin-bottom: 6px; }

@media (max-width: 900px) {
  .services__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__container { grid-template-columns: repeat(2, 1fr); }
  .hero__container, .about__container, .contact__container { flex-direction: column; }
  .hero__image, .about__image { width: 100%; }
}

@media (max-width: 680px) {
  .nav { position: fixed; top: 72px; left: 0; width: 100%; background: var(--primary-dark); flex-direction: column; padding: 20px; transform: translateY(-150%); transition: transform .3s ease; }
  .nav.open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 18px; }
  .nav__toggle { display: flex; }
  .header__phone { display: none; }
  .services__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .form-row { flex-direction: column; }
}