* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2328;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #0d4a42;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #0d4a42;
  outline-offset: 2px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 8vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2e2;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #7a6f65;
  max-width: 320px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f0ede9;
}

.nav a:hover {
  background-color: #d9edea;
}

main {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 60px 8vw;
}

.section.alt {
  background-color: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #8b5e34;
  font-weight: 600;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: #3b3f44;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #0d4a42;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #e3c7a1;
  color: #1f2328;
}

.btn:hover {
  background-color: #0b3b35;
}

.btn.secondary:hover {
  background-color: #d7b381;
}

.image-frame {
  background-color: #d6d1ca;
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d4a42;
}

.inline-cta {
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.form-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c2ba;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  background-color: #1f2328;
  color: #f6f4f1;
  padding: 40px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f2d8b5;
}

.footer .columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer .column {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d4ce;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0d4a42;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6vw;
  z-index: 20;
}

.sticky-cta .btn {
  background-color: #ffffff;
  color: #0d4a42;
}

.sticky-cta .btn:hover {
  background-color: #e9f2f0;
}

.sticky-cta .close-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 90px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background-color: #0d4a42;
  color: #ffffff;
  font-weight: 600;
}

.banner-btn.secondary {
  background-color: #d9d1c7;
  color: #1f2328;
}

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 320px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
}

.bg-workbench {
  background-image: url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
}

.bg-tirewall {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
}

.bg-detail {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
}

.hero-background .overlay {
  background-color: rgba(13, 74, 66, 0.8);
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  max-width: 420px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background-color: #f0ede9;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.table-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2ddd6;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-box {
  background-color: #fff7ec;
  border-left: 4px solid #d7b381;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    bottom: 140px;
  }
}
