* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d232a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #dfe6ee;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #1d232a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 24px;
  top: 20px;
  z-index: 99;
}

.site-header {
  padding: 24px 0 12px;
  position: relative;
  z-index: 3;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #6b6f76;
}

.brand strong {
  font-size: 24px;
}

.ad-label {
  font-size: 12px;
  color: #6b6f76;
  max-width: 260px;
  text-align: right;
}

.nav-toggle {
  background: #1d232a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  right: 0;
  top: 72px;
  background: #1d232a;
  color: #fff;
  padding: 20px;
  width: min(320px, 90%);
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-open .site-nav {
  display: flex;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 70px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
}

.hero-text p {
  font-size: 18px;
  color: #4a4f55;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(29, 35, 42, 0.15);
}

.hero-image {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  background: #ccd5df;
  position: relative;
  min-height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #1d232a;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #1d232a;
  border-radius: 999px;
  background: transparent;
  font-weight: 600;
}

.split-section {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 70px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .image-block {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #d4e1d9;
  min-height: 320px;
}

.split-section .content-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-band {
  background: #1d232a;
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.offset-band .container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.offset-band .overlay-card {
  background: #ffffff;
  color: #1d232a;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.cards-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 26px rgba(29, 35, 42, 0.08);
}

.service-card img {
  border-radius: 16px;
  width: 100%;
  height: 160px;
  background: #dde6ed;
}

.price-tag {
  font-weight: 700;
  color: #1d232a;
}

.asym-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.asym-item {
  flex: 1 1 260px;
  background: #fef9f4;
  border: 1px solid #e3d9cc;
  padding: 18px;
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1d232a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.cta-panel {
  background: #f0efe9;
  padding: 50px 0;
}

.cta-panel .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.form-section {
  padding: 70px 0;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(29, 35, 42, 0.12);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
  font-size: 14px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-size: 15px;
}

.form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.form-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-aside img {
  border-radius: 18px;
  height: 260px;
  width: 100%;
  background: #cfd9e2;
}

.form-note {
  background: #fef9f4;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e9d9c8;
}

.footer {
  background: #1d232a;
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer a {
  color: #fff;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.legal-note {
  font-size: 13px;
  color: #d0d3d7;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.sticky-cta .primary-btn {
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(29, 35, 42, 0.3);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  width: min(320px, 90%);
  box-shadow: 0 14px 26px rgba(29, 35, 42, 0.18);
  display: none;
  z-index: 6;
}

.cookie-banner p {
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #1d232a;
  color: #fff;
}

.cookie-reject {
  background: #f0efe9;
  color: #1d232a;
}

.page-hero {
  padding: 50px 0 30px;
}

.bg-office {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cityscape {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.info-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.info-block {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(29, 35, 42, 0.08);
}

.info-block img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #dfe6ee;
}

.legal-content {
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 40px 0 60px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(29, 35, 42, 0.1);
}

.contact-card h2 {
  margin-bottom: 10px;
}

.thanks-wrap {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .form-wrap {
    flex-direction: column;
  }

  .offset-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }
}
