:root {
  --ink: #1a1d21;
  --muted: #5a616b;
  --accent: #0b4f6c;
  --accent-soft: #e7f1f6;
  --panel: #f4f6f8;
  --sunset: #fef4e8;
  --line: #e2e6ea;
  --cta: #1f7a8c;
  --cta-2: #f4a259;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid rgba(31, 122, 140, 0.35);
  outline-offset: 2px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-center a {
  font-size: 0.95rem;
  color: var(--muted);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 50px 0 60px;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  background: #dfe5ea;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.hero-meta div {
  background: var(--panel);
  padding: 14px 18px;
  border-radius: 12px;
  min-width: 180px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  background: var(--cta);
  color: var(--white);
}

.button.secondary {
  background: var(--cta-2);
  color: var(--ink);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 50px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .image-block {
  flex: 1 1 320px;
  min-height: 280px;
  background: #dde4ea;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.surface {
  background: var(--panel);
}

.surface.sunset {
  background: var(--sunset);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 170px;
  background: #dfe4ea;
  display: flex;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  padding: 50px 0;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.form-image {
  min-height: 360px;
  background: #e3e8ee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.spaced-notice {
  margin-top: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.sticky-cta button {
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: none;
  z-index: 30;
}

.cookie-banner .cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  margin-bottom: 6px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 18px;
}

.bg-section {
  position: relative;
  color: var(--white);
  background-color: #243241;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.55);
}

.bg-section .container {
  position: relative;
  z-index: 1;
}

.bg-control-room {
  background-image: url(\"https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?w=1400&q=80\");
}

.bg-server-rack {
  background-image: url(\"https://images.unsplash.com/photo-1680992046615-065f58bcb4d8?w=1400&q=80\");
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
