* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1c1b1a;
  --muted: #5f5a55;
  --accent: #6b4f4f;
  --accent-2: #2d5a7a;
  --card: #ffffff;
  --soft: #efe6dd;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #111;
  color: #f7f7f7;
  padding: 10px 0;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  color: #f7f5f2;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1579960007909-08c02f5a100e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 24px;
  font-weight: 600;
}

.btn.alt {
  background: var(--accent-2);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.section {
  padding: 70px 0;
}

.offset-section {
  background: var(--soft);
  position: relative;
  padding: 80px 0;
}

.offset-card {
  background: var(--card);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  width: min(460px, 90%);
  margin-left: auto;
  transform: translateY(-40px);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #e3d9cf;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  flex: 1 1 240px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.card .image-wrap {
  background: #e4ded6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 260px;
  border: 1px solid #e6ded6;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #d9cfc4;
  border-radius: 10px;
  font-size: 16px;
}

.footer {
  background: #191816;
  color: #efe8e1;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto;
  width: min(380px, 92%);
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 360px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.bg-cloud {
  background-image: url("https://images.unsplash.com/photo-1616615699260-9848f5a7b56d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #10212c;
}

.bg-cloud-services {
  background-image: url("https://images.unsplash.com/photo-1633296453945-a919da903aab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #10212c;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1768938360602-493554189fe5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.light-panel {
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 16px;
  width: min(640px, 92%);
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.legal {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
}
