* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1b1f;
  --muted: #5b616b;
  --accent: #2f5bea;
  --accent-2: #0f9d8b;
  --sand: #f5f2ec;
  --fog: #edf1f6;
  --night: #0f1320;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  background: #ffffff;
  border-bottom: 1px solid #e6e8ec;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding: 40px 8vw 70px;
  background: var(--fog);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 55%;
  height: 60%;
  background: #ffffff;
  opacity: 0.7;
  transform: skewY(-3deg);
  z-index: 0;
}

.hero-text {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d7dbe1;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-visual .img-frame {
  width: min(440px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: #c8d1df;
  box-shadow: 0 20px 60px rgba(15, 19, 32, 0.18);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.asym-row .panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(26, 27, 31, 0.08);
}

.asym-row .panel.offset {
  transform: translateY(-24px);
  background: var(--sand);
}

.img-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #ccd7cf;
  flex: 1 1 280px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background: var(--night);
  color: #ffffff;
  position: relative;
}

.highlight .asym-row {
  align-items: stretch;
}

.highlight .panel {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 19, 32, 0.08);
}

.service-card .img-frame {
  height: 160px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-card {
  flex: 1 1 260px;
  background: var(--fog);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(26, 27, 31, 0.12);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border: 1px solid #d6dbe2;
  border-radius: 12px;
  font-size: 0.95rem;
  background: #ffffff;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(15, 19, 32, 0.2);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer {
  padding: 50px 8vw;
  background: #0d111c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #c9cfdb;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(26, 27, 31, 0.18);
  padding: 18px 20px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 50px 8vw 30px;
  background: var(--sand);
}

.about-hero {
  background: linear-gradient(120deg, rgba(245, 242, 236, 0.9), rgba(237, 241, 246, 0.9)),
    url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80") center/cover no-repeat;
}

.services-hero {
  background: linear-gradient(110deg, rgba(237, 241, 246, 0.9), rgba(255, 255, 255, 0.95)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80") center/cover no-repeat;
}

.contact-hero {
  background: linear-gradient(120deg, rgba(245, 242, 236, 0.95), rgba(245, 242, 236, 0.7)),
    url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80") center/cover no-repeat;
}

.content {
  padding: 40px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--fog);
  padding: 20px;
  border-radius: 16px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
