* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 18px 0;
  background: #f6f4f1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #e7ded6;
}

.hero {
  display: flex;
  align-items: stretch;
  background: #10273d;
  color: #f7f4ef;
  min-height: 70vh;
}

.hero-visual {
  flex: 1.1;
  background-color: #1a3246;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 0.9;
  padding: 64px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0;
  line-height: 1.1;
}

.hero-content p {
  margin: 0;
  font-size: 18px;
}

.cta-button {
  align-self: flex-start;
  padding: 12px 22px;
  background: #f1c27d;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1b1b1b;
  color: #f6f4f1;
  font-size: 14px;
}

.section {
  padding: 64px 0;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #10273d;
  color: #f7f4ef;
}

.section-alt {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.section-alt.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1 1 320px;
}

.section-visual {
  flex: 1 1 320px;
}

.img-frame {
  background: #e3dad2;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.story-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 240px;
  padding: 24px;
  border-radius: 18px;
  background: #f0ebe6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card .img-frame {
  height: 180px;
}

.trust-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: #e7ded6;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.pricing-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .img-frame {
  height: 150px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 340px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7c0;
  font-size: 14px;
  font-family: inherit;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: #10273d;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #4b4b4b;
}

.footer {
  padding: 40px 0 60px;
  background: #0e1b26;
  color: #f7f4ef;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  color: #d5cfc9;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  width: min(360px, 88vw);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #10273d;
  color: #f7f4ef;
}

.cookie-reject {
  background: #e7ded6;
}

.page-hero {
  padding: 56px 0;
  background: #e7ded6;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
}

.policy-section {
  padding: 26px 0;
  border-bottom: 1px solid #e3dad2;
}
