* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1d;
  --muted: #5a5e67;
  --brand: #1f5c5f;
  --accent: #e3b76b;
  --soft: #f4f1ec;
  --panel: #ffffff;
  --shadow: rgba(26, 30, 35, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--brand);
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px 6vw;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--ink);
  background: #fff3df;
}

nav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  padding: 40px 6vw 60px 6vw;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 380px;
  min-height: 320px;
  background-color: #d9e2e2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero-media.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 56px 6vw;
}

.section.soft {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e0e5eb;
  box-shadow: 0 10px 24px var(--shadow);
}

.media.bg-strategy {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.media.bg-audit {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .img-frame {
  background-color: #e7ece7;
}

.card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.highlight {
  background: #fff8eb;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7ccd4;
  font-size: 14px;
}

footer {
  padding: 36px 6vw;
  background: #101315;
  color: #f2f3f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a {
  color: #f4d6a5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #3c2b12;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px var(--shadow);
  z-index: 30;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-box {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  background-color: #dfe6e9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero-image img {
  height: 320px;
}

.section-bg-ops {
  background-color: #2b3a41;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg-ops .highlight {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-left-color: #ffe1a8;
}

.bg-market {
  background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.bg-fulfillment {
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.bg-data {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

@media (max-width: 840px) {
  .sticky-cta {
    left: auto;
    right: 18px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
