* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1d1f;
  --muted: #4d555b;
  --paper: #f5f3ef;
  --accent: #2d6a73;
  --accent-dark: #18464c;
  --sand: #e8e1d6;
  --stone: #d3d8d9;
  --highlight: #f0c36a;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--ink);
  color: #f7f5f0;
  padding: 10px 24px;
  font-size: 14px;
  text-align: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 8px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  gap: 24px;
  padding: 40px 24px 70px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--sand);
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent-dark);
  color: #fff;
}

.hero-visual {
  flex: 1 1 320px;
  background: #dfe7e8;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.floating-note {
  position: absolute;
  bottom: -32px;
  right: 12%;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.section {
  padding: 70px 24px;
}

.section.alt {
  background: #fff;
}

.section.bg-insight {
  background: linear-gradient(rgba(245, 243, 239, 0.9), rgba(245, 243, 239, 0.9)),
    url("https://images.unsplash.com/photo-1448932223592-d1fc686e76ea?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-operations {
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1 1 280px;
  background: #d8dcdc;
  border-radius: 22px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4e1db;
}

.card-image {
  background: #e7e5df;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.story-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--stone);
  padding: 26px;
  border-radius: 20px;
}

.process-flow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e6e2dc;
}

.process-step span {
  display: inline-block;
  background: var(--highlight);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 8px;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border-left: 6px solid var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #ebe6de;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4d0c8;
  font-family: inherit;
}

.form-hint {
  color: var(--muted);
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.footer {
  background: #101213;
  color: #f4f2ee;
  padding: 40px 24px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer small {
  color: #c7c3bc;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  padding: 18px;
  max-width: 340px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-hero {
  padding: 50px 24px;
  background: #fff;
}

.page-hero h1 {
  font-size: 36px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e6e2dc;
}

.bg-soft-1 { background: #dfe4e4; }
.bg-soft-2 { background: #e7e2da; }
.bg-soft-3 { background: #e5e8e8; }
.bg-soft-4 { background: #ece4dd; }
.bg-soft-5 { background: #e6e0d7; }
.bg-soft-6 { background: #dee4e1; }
.bg-soft-7 { background: #e3e8e8; }

.service-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e6e2dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.service-row span {
  color: var(--muted);
}

.note-box {
  background: var(--stone);
  padding: 18px;
  border-radius: 14px;
}

.hidden {
  display: none;
}
