* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #14171a;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 6vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2,
.brand p {
  margin: 0;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #6a6f75;
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0e2e6;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(20, 23, 26, 0.08);
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: #444b52;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: #1d3c57;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #e9eef2;
  color: #1d3c57;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  background: #d8dfe6;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.floating-note {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 13px;
}

.asym-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.asym-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(20, 23, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-card img {
  border-radius: 18px;
  width: 100%;
  height: 180px;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-text {
  flex: 1 1 320px;
  padding: 30px;
  background: #1d3c57;
  color: #fff;
  border-radius: 26px;
}

.offset-text h2,
.offset-text p {
  margin: 0 0 16px;
}

.offset-media {
  flex: 1 1 260px;
  background: #dfe7ef;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
}

.offset-media img {
  width: 100%;
  height: 100%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  align-items: center;
}

.service-item img {
  width: 180px;
  height: 130px;
  border-radius: 16px;
  background: #e2e6ea;
}

.service-info {
  flex: 1 1 240px;
}

.price-tag {
  font-weight: 700;
  color: #1d3c57;
  font-size: 18px;
}

.form-area {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
}

.service-select {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  padding: 12px 14px;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-fields {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  font-size: 14px;
}

.info-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1 1 200px;
  padding: 18px;
  background: #f0f2f5;
  border-radius: 18px;
}

.info-box h3 {
  margin-top: 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #faefe2;
  color: #1d3c57;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(20, 23, 26, 0.18);
  font-weight: 600;
  border: 1px solid #e7d7c0;
}

.page-footer {
  background: #0f1b24;
  color: #f8f8f8;
  padding: 44px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.disclaimer {
  font-size: 13px;
  color: #cbd3da;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(20, 23, 26, 0.16);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #dfe3e8;
  background: #1d3c57;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #fff;
  color: #1d3c57;
}

.section-title {
  font-size: 26px;
  margin: 0 0 10px;
}

.highlight {
  background: #fdf6ed;
  padding: 6px 10px;
  border-radius: 12px;
  display: inline-block;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.panel img {
  border-radius: 16px;
  width: 100%;
  height: 200px;
  background: #e6ecf1;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}

.muted {
  color: #5a6168;
}

.inline-link {
  text-decoration: underline;
}

.service-toggle {
  background: none;
  border: none;
  color: #1d3c57;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
}

.service-details {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  color: #49525a;
}

.service-details.active {
  display: block;
}

.page-header {
  margin: 40px 0 0;
}

.page-header h1 {
  margin: 0;
  font-size: 34px;
}

.simple-section {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}

.simple-section h2 {
  margin-top: 0;
}

.note-box {
  background: #f0f7ff;
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 100px;
  }
}
