* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #2a6c84;
  --accent-2: #e3b15c;
  --panel: #ffffff;
  --soft: #eef2f1;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

header {
  padding: 28px 6vw 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid #d4d4d4;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  margin: 32px 6vw 0;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 60px 48px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1.1;
  gap: 16px;
}

.hero-card {
  flex: 0.9;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 22px;
  gap: 12px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: var(--accent-2);
  color: #1d1d1d;
}

.section {
  padding: 60px 6vw;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.section.asymmetric {
  align-items: flex-start;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.panel {
  background-color: var(--panel);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offset {
  margin-top: 32px;
}

.image-box {
  background-color: #e0e4e5;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
}

.image-box img {
  width: 100%;
  height: 100%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1.2;
  min-width: 260px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background-color: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background-color: var(--soft);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent-2);
  background-color: var(--panel);
  border-radius: 14px;
}

.selection-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.selection-row button {
  background-color: #1f2a35;
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  width: 100%;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  background-color: #fff;
}

.form-wrap button {
  align-self: flex-start;
}

.soft-section {
  background-color: var(--soft);
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer {
  padding: 40px 6vw 60px;
  background-color: #151a1f;
  color: #d4d4d4;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-links a {
  color: #d4d4d4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--accent-2);
  color: #1a1a1a;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.page-hero {
  padding: 40px 6vw 0;
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.page-hero .panel {
  flex: 1.1;
}

.page-hero .image-box {
  flex: 0.9;
  min-height: 260px;
}

.content-blocks {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #1c232a;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: var(--accent-2);
}

.cookie-actions .reject {
  background-color: #d0d0d0;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
