:root {
  --bg: #f5f1e8;
  --surface: #fffdf7;
  --surface-strong: #1c2730;
  --text: #17222a;
  --muted: #607180;
  --line: rgba(23, 34, 42, 0.12);
  --accent: #b46a31;
  --accent-dark: #7e4318;
  --success: #1f6b54;
  --shadow: 0 24px 60px rgba(20, 31, 38, 0.12);
  --radius-lg: 28px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 106, 49, 0.16), transparent 28%),
    linear-gradient(180deg, #f4efe5 0%, #f7f4ed 48%, #f8f5ef 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 237, 0.86);
  border-bottom: 1px solid rgba(23, 34, 42, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.brand-logo {
  width: 188px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  width: 188px;
  margin-left: 0;
}

.brand-copy span {
  display: block;
  width: 100%;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(23, 34, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 14px;
}

.hero,
.page-hero {
  padding: 68px 0 36px;
}

.hero-grid,
.page-hero-shell,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  max-width: 10ch;
}

.page-hero h1,
.section-heading h2,
.cta-box h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(180, 106, 49, 0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.footer-links,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #d38b4d);
  color: #fff;
  box-shadow: 0 18px 32px rgba(180, 106, 49, 0.24);
}

.button-secondary {
  border-color: rgba(23, 34, 42, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.hero-points,
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li,
.check-list li {
  padding-left: 18px;
  position: relative;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(15, 30, 45, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.98), transparent 32%),
    linear-gradient(165deg, #fcfaf7 0%, #f3f5f7 62%, #ebf0f4 100%);
}

.product-stage-small {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.98), transparent 32%),
    linear-gradient(165deg, #fcfaf7 0%, #f4f2ee 62%, #ece7df 100%);
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.02);
  filter: drop-shadow(0 26px 38px rgba(31, 51, 64, 0.12));
}

.visual-card-large {
  position: absolute;
  inset: 0 80px 110px 0;
}

.visual-card-small {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 52%;
  height: 220px;
}

.visual-badge,
.page-side-note,
.contact-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(28, 39, 48, 0.92);
  color: #f4eee5;
  box-shadow: var(--shadow);
}

.visual-badge {
  position: absolute;
  left: 24px;
  bottom: 0;
  max-width: 280px;
}

.visual-badge span,
.page-side-note p,
.contact-note p {
  color: rgba(244, 238, 229, 0.74);
}

.section {
  padding: 38px 0 32px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(23, 34, 42, 0.06);
  border-bottom: 1px solid rgba(23, 34, 42, 0.06);
}

.section-heading {
  margin-bottom: 28px;
}

.feature-grid,
.metrics-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.process-card,
.table-shell,
.contact-form,
.contact-copy,
.faq-list details {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 34, 42, 0.08);
  box-shadow: 0 14px 40px rgba(20, 31, 38, 0.06);
}

.feature-card,
.metric-card,
.process-card,
.contact-copy {
  padding: 24px;
}

.feature-card h3,
.metric-card h3,
.process-card h2,
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 34, 42, 0.08);
}

.timeline-item span,
.process-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(180, 106, 49, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.cta-section {
  padding-bottom: 64px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px;
  border-radius: 32px;
  color: #f4eee5;
  background: linear-gradient(135deg, #1e2f3b, #304a59);
  box-shadow: var(--shadow);
}

.page-main {
  min-height: calc(100vh - 164px);
}

.filter-bar label,
.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 8px;
}

.filter-bar input,
.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(23, 34, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.table-shell,
.contact-form {
  padding: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 34, 42, 0.08);
  text-align: left;
}

.pricing-table th {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 107, 84, 0.12);
  color: var(--success);
  font-weight: 700;
}

.table-note,
.form-status {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.info-stack {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.info-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 34, 42, 0.08);
}

.info-card strong {
  display: block;
  margin-bottom: 6px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  padding: 0;
  flex: 0 0 auto;
}

.checkbox-row span {
  display: block;
  flex: 1 1 auto;
}

.contact-form fieldset {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 34, 42, 0.1);
}

.contact-form legend {
  padding: 0 8px;
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(23, 34, 42, 0.08);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid,
  .page-hero-shell,
  .contact-grid,
  .metrics-grid,
  .process-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .cta-box,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    gap: 4px;
  }

  .brand-logo {
    width: 138px;
  }

  .brand-copy {
    width: 138px;
  }

  .brand-copy span {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 34, 42, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 2px;
  }

  .hero,
  .page-hero {
    padding-top: 36px;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .cta-box h2 {
    max-width: none;
  }

  .hero-visual {
    min-height: 400px;
  }

  .visual-card-large {
    inset: 0 28px 102px 0;
  }

  .visual-card-small {
    width: 58%;
    height: 170px;
  }

  .product-stage {
    padding: 18px;
  }

  .product-photo {
    transform: scale(1);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 34, 42, 0.08);
  }

  .pricing-table td {
    border-bottom: 0;
    padding: 5px 0;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}
