* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f5f2ee;
}

a {
  color: #0b5a7a;
  text-decoration: none;
}

button,
.button-link {
  cursor: pointer;
  border: none;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  background: #0b5a7a;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11, 90, 122, 0.25);
}

.button-ghost {
  background: transparent;
  color: #0b5a7a;
  border: 1px solid #0b5a7a;
}

.wrapper {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #141414;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 16px;
  background: #e9d7c8;
  font-size: 0.8rem;
}

.hero {
  color: #fff;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 45px 0;
}

.section-dark {
  background: #141414;
  color: #f4f4f4;
}

.section-light {
  background: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #d7d0c7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(15, 15, 15, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.testimonial {
  border-left: 3px solid #0b5a7a;
  padding-left: 16px;
  margin: 16px 0;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.pricing-item span {
  font-weight: 700;
  color: #0b5a7a;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 34px rgba(15, 15, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bd;
  font-size: 1rem;
}

footer {
  background: #111;
  color: #e5e5e5;
  padding: 50px 0 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(15, 15, 15, 0.2);
  max-width: 340px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-showcase {
  background-image: url("https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.soft-panel {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 16px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

.notice {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
