/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a2e;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f5a5f;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  background: #ffffff;
  border-bottom: 1px solid #e0ddd9;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1f2a2e;
}

.brand span {
  font-size: 13px;
  font-weight: 500;
  color: #5c6d70;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  background: #f2d36a;
  color: #483a10;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.hero {
  padding: 48px 0 24px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(22, 40, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8e0e0;
  min-height: 320px;
}

.inline-link {
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-spaced {
  margin-top: 16px;
}

.btn {
  background: #1f5a5f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f5a5f;
  color: #1f5a5f;
}

.section {
  padding: 36px 0;
}

.section-title {
  font-size: 22px;
  margin: 0 0 16px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 260px;
  box-shadow: 0 18px 30px rgba(22, 40, 45, 0.06);
}

.panel-accent {
  background: #f1f6f5;
}

.image-panel {
  flex: 1 1 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe6e5;
  min-height: 220px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 140px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 24px rgba(22, 40, 45, 0.06);
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f5a5f;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(22, 40, 45, 0.07);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d5;
  font-size: 14px;
  width: 100%;
  background: #ffffff;
}

.footer {
  margin-top: auto;
  background: #1f2a2e;
  color: #f6f4f1;
  padding: 24px 0 40px;
}

.footer a {
  color: #f1d58f;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.disclaimer {
  font-size: 13px;
  color: #d8dad8;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(22, 40, 45, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta.hidden {
  display: none;
}

.hidden {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(22, 40, 45, 0.18);
  max-width: 360px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.muted {
  color: #5c6d70;
  font-size: 14px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-col > div {
  flex: 1 1 280px;
}

.hero-note {
  background: #f2efe9;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
}

.image-caption {
  font-size: 13px;
  color: #5c6d70;
  margin-top: 8px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.highlight {
  background: #f1f6f5;
  border-left: 4px solid #1f5a5f;
  padding: 12px 16px;
  border-radius: 10px;
}

.bg-ledger {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(22, 40, 45, 0.72);
  padding: 32px;
  border-radius: 16px;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 24px rgba(22, 40, 45, 0.06);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
}
