/* ── Hero ── */
.hero {
  width: 100%;
  padding-bottom: 6rem;
  padding-top: 2rem;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(238, 221, 209, 0.7);
  color: var(--brand-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
}
.hero-badge i { font-size: 0.875rem; }
.hero-title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
}
.hero-title .accent { color: var(--brand-brown); }
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 460px;
  line-height: 1.625;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}
.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover { background: var(--brand-blue-hover); }
.btn-secondary {
  background: var(--brand-lightBrown);
  color: var(--brand-brown);
  font-size: 15px;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary:hover { background: var(--brand-lightBrown-hover); }
.hero-note {
  font-size: 13px;
  color: var(--brand-brown);
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-bottom: 0.25rem;
  border-bottom-width: 1px;
  border-color: rgba(141, 66, 26, 0.3);
}

/* ── Product Image ── */
.hero-product {
  display: none;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}
.hero-product img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0px 2px rgba(0, 0, 0, 0.1));
}

/* ── Features ── */
.features {
  width: 100%;
  background: var(--white);
  padding: 2rem 0;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-50);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card:not(.feature-card--highlight) {
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

/* ── Mobile: all cards appear highlighted ── */
@media (max-width: 767px) {
  .feature-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgb(0 0 0 / 0.06);
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.375rem;
    background: var(--brand-brown);
  }
}
.feature-card--highlight {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.06);
}
.feature-card--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background: var(--brand-brown);
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(238, 221, 209, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon i { color: var(--brand-brown); font-size: 1.5rem; }
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.625;
}

/* ── Steps ── */
.steps {
  width: 100%;
  background: var(--brand-bg);
  padding: 4rem 0;
}
.steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.steps-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  margin-bottom: 5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  justify-items: center;
}
.steps-line {
  display: none;
  position: absolute;
  top: 24px;
  left: 12%;
  width: 76%;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #8c4a26;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.625;
}
.steps-checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 5rem;
}
.steps-checks-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.steps-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.steps-check i { color: var(--brand-brown); font-size: 1.25rem; }

/* ── Pricing ── */
.pricing {
  width: 100%;
  background: var(--brand-bg);
  padding-bottom: 7rem;
}
.pricing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
}
.pricing-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #8c4a26;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pricing-comparison {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.pricing-col {
  flex: 1;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.pricing-col-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.pricing-full-price {
  font-size: 2.625rem;
  font-weight: 300;
  color: var(--gray-300);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-divider {
  width: 1px;
  background: var(--gray-100);
  align-self: stretch;
  flex-shrink: 0;
}
.pricing-discounted-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-brown);
  letter-spacing: -0.025em;
  line-height: 1;
}
.pricing-discount-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.pricing-code-badge {
  display: inline-flex;
  align-items: center;
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.pricing-vat-note {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-400);
}
.pricing-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 350px;
  line-height: 1.625;
}
.pricing-desc strong {
  color: var(--brand-darkText);
  font-weight: 600;
}
.pricing-cta {
  width: 100%;
  max-width: 320px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-align: center;
}
.pricing-cta:hover { transform: scale(1.02); }

/* ── Responsive: md (768px+) ── */
@media (min-width: 768px) {
  .hero-title { font-size: 54px; line-height: 1.05; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .features { padding: 4rem 0; }
  
  /* Feature cards — dynamic hover bar (desktop only) */
  .feature-card { position: relative; overflow: hidden; }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0.375rem;
    background: var(--brand-brown);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .feature-card--highlight::before { opacity: 1; }
  .feature-card { transition: transform 0.3s ease; }
  .feature-card--highlight { transform: scale(1.025); }
  .feature-card:hover { transform: scale(1.025); }
  .features-grid:has(.feature-card:not(.feature-card--highlight):hover) .feature-card--highlight { transform: scale(1); }
  .feature-card:hover::before { opacity: 1; }
  .features-grid:has(.feature-card:not(.feature-card--highlight):hover) .feature-card--highlight::before { opacity: 0; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-line { display: block; }
  .steps-title { font-size: 34px; }
  .steps-checks-list { flex-direction: row; gap: 3rem; }
  .pricing-title { font-size: 34px; }
}

/* ── Responsive: lg (1024px+) ── */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-product { display: flex; }
}
