* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #0f766e;
  --accent-dark: #0b5c56;
  --cream: #f8f4ee;
  --sand: #efe8dd;
  --steel: #e6edf0;
  --shadow: 0 20px 50px rgba(19, 30, 45, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbfb;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  gap: 16px;
  background: #ffffff;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
}

.wrap {
  width: min(1120px, 86vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 60px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-card {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
}

.hero-card img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
  background-color: #dfe6ea;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-margin {
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #ffffff;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.offset-block {
  background: #ffffff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-image {
  flex: 1;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #dfe6ea;
}

.asym-image img {
  width: 100%;
  height: 100%;
}

.asym-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 180px;
  height: 140px;
  border-radius: 14px;
  background-color: #d6dbe0;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  font-size: 0.95rem;
  width: 100%;
}

.form-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-side img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  background-color: #dbe3e8;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight-band {
  background: var(--steel);
  padding: 50px 0;
}

.bg-highlight {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.highlight-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.highlight-inner img {
  width: 320px;
  height: 220px;
  border-radius: 18px;
  background-color: #dbe3e8;
}

.split-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: #111827;
  color: #f7f7f7;
  padding: 40px 8vw;
  margin-top: auto;
}

.footer a {
  color: #cfeeea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.legal {
  font-size: 0.85rem;
  color: #c7c7c7;
  margin-top: 18px;
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 360px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.banner-buttons {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 70px 0 50px;
  background: #f3f1ed;
}

.page-hero .wrap {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-hero img {
  width: 320px;
  height: 220px;
  border-radius: 18px;
  background-color: #dfe6ea;
}

.simple-section {
  padding: 60px 0;
}

.simple-section h2 {
  margin-bottom: 14px;
}

.note-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .hero-inner,
  .asym-row,
  .form-shell,
  .highlight-inner,
  .page-hero .wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
