* {
  box-sizing: border-box;
}

:root {
  --ink: #1d232b;
  --muted: #5a6775;
  --accent: #2a6fdb;
  --accent-dark: #1c4f9c;
  --sand: #f3f0ea;
  --slate: #e6ebf2;
  --night: #0f1a24;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(15, 26, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  background: var(--night);
  color: var(--white);
  padding: 6px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 30px 0 70px;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-image {
  flex: 1;
}

.media-block {
  border-radius: 22px;
  overflow: hidden;
  background: var(--slate);
  box-shadow: var(--shadow);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
}

.offset-section {
  margin: 0 auto;
  padding: 60px 0;
}

.offset-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-grid .card {
  flex: 1;
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
}

.bg-invest {
  background-color: var(--night);
  color: var(--white);
  padding: 70px 0;
  position: relative;
}

.bg-invest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.bg-invest .container {
  position: relative;
  z-index: 1;
}

.cards-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.statement {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--slate);
  padding: 18px;
  border-radius: 16px;
}

.timeline-index {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.form-section {
  background: var(--sand);
  padding: 70px 0;
}

.form-wrap {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.form-card {
  flex: 1;
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd2dc;
  font-family: inherit;
  font-size: 1rem;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: var(--night);
  color: var(--white);
  padding: 40px 0;
}

.footer a {
  color: var(--white);
}

.footer-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-note {
  font-size: 0.85rem;
  color: #c7d0da;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  font-size: 2.1rem;
  margin: 28px 0 12px;
}

.simple-section {
  padding: 50px 0;
}

.simple-section p {
  color: var(--muted);
}

.contact-card {
  background: var(--slate);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero,
  .offset-grid,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
