* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0f4c81;
  --primary-dark: #0a3661;
  --accent: #f2a71b;
  --dark: #12181f;
  --light-bg: #f5f7fa;
  --text: #2b2f33;
  --white: #ffffff;
  --radius: 10px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  font-size: 15px;
}
.btn--primary { background: var(--accent); color: var(--dark); }
.btn--primary:hover { background: #d9910f; }
.btn--outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--small { padding: 8px 18px; font-size: 14px; }
.btn--full { width: 100%; text-align: center; }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.logo span { color: var(--primary); }
.nav ul { display: flex; gap: 28px; }
.nav a { font-weight: 500; color: var(--text); transition: color .2s; }
.nav a:hover { color: var(--primary); }
.header__cta { display: inline-block; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span { width: 26px; height: 3px; background: var(--dark); border-radius: 2px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 90px 0 70px;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__text { flex: 1 1 480px; }
.hero__text h1 { font-size: 42px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero__text p { font-size: 17px; opacity: .9; margin-bottom: 30px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image {
  flex: 1 1 380px;
  min-height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.hero__badge {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
}

/* Strip */
.strip { background: var(--dark); color: var(--white); padding: 18px 0; }
.strip__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* Sections */
.section { padding: 80px 0; }
.section--alt { background: var(--light-bg); }
.section__title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; color: var(--dark); }
.section__subtitle { text-align: center; max-width: 620px; margin: 0 auto 50px; color: #55606b; }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #eef0f2;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.card__icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; color: var(--dark); font-size: 19px; }
.card p { color: #5b6570; font-size: 14.5px; }

/* About */
.about { display: flex; gap: 50px; flex-wrap: wrap; align-items: center; }
.about__text { flex: 1 1 480px; }
.about__text p { color: #4d5762; margin-bottom: 20px; }
.about__list li { margin-bottom: 10px; padding-left: 24px; position: relative; color: #34404b; }
.about__list li::before { content: '✔'; position: absolute; left: 0; color: var(--accent); }
.about__stats { flex: 1 1 300px; display: flex; gap: 20px; justify-content: space-around; }
.stat { text-align: center; }
.stat span { display: block; font-size: 32px; font-weight: 700; color: var(--primary); }
.stat p { font-size: 14px; color: #5b6570; margin-top: 4px; }

/* Pricing */
.price-card {
  background: var(--white);
  border: 1px solid #eef0f2;
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform .2s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured { border: 2px solid var(--accent); position: relative; }
.price-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.price-card .price { font-size: 30px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.price-card ul { margin-bottom: 24px; }
.price-card li { padding: 6px 0; color: #4d5762; font-size: 14.5px; border-bottom: 1px solid #f2f3f5; }

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #eef0f2;
}
.testimonial p { font-style: italic; color: #3d4750; margin-bottom: 16px; }
.testimonial span { font-weight: 600; color: var(--primary); font-size: 14px; }

/* Contact */
.contact { display: flex; gap: 50px; flex-wrap: wrap; }
.contact__info { flex: 1 1 380px; }
.contact__info p { color: #4d5762; margin-bottom: 24px; }
.contact__list li { margin-bottom: 12px; color: #34404b; font-size: 15px; }
.contact__list a { color: var(--primary); font-weight: 600; }
.social { display: flex; gap: 14px; margin-top: 24px; }
.social a {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.social a:hover { background: var(--primary-dark); }

.contact__form {
  flex: 1 1 380px;
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--radius);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--dark); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-note { margin-top: 14px; font-size: 14px; color: var(--primary); text-align: center; min-height: 18px; }

/* Footer */
.footer { background: var(--dark); color: #cfd6dc; padding: 50px 0 0; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #26303a;
}
.footer__brand .logo { color: var(--white); margin-bottom: 10px; }
.footer__brand p { font-size: 14px; margin-bottom: 6px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: flex-start; }
.footer__links a { font-size: 14px; color: #cfd6dc; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { text-align: center; padding: 20px 0; font-size: 13px; color: #8891998; }

/* Legal */
.legal__content { max-width: 780px; margin: 0 auto; }
.legal__content h1 { font-size: 30px; margin-bottom: 10px; color: var(--dark); }
.legal__content h2 { font-size: 20px; margin: 26px 0 10px; color: var(--primary); }
.legal__content p, .legal__content li { color: #4d5762; margin-bottom: 8px; font-size: 15px; }
.legal__content ul { padding-left: 20px; list-style: disc; }

/* Responsive */
@media (max-width: 860px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero__text h1 { font-size: 34px; }
}

@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; padding: 20px; gap: 16px; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .grid--3 { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; text-align: center; }
  .about, .contact { flex-direction: column; }
}