:root {
  --ink: #17130f;
  --ink-soft: #312820;
  --paper: #fff7ec;
  --paper-deep: #f3e3cf;
  --copper: #bf6654;
  --copper-dark: #8d3f33;
  --ochre: #f0b13e;
  --moss: #2e5147;
  --moss-dark: #203b34;
  --line: rgba(23, 19, 15, 0.16);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 19, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(191, 102, 84, 0.08) 0 1px, transparent 1px 26px),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--paper);
  background: var(--copper-dark);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-shell,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 56px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.brand small {
  margin-top: -0.15rem;
  color: rgba(23, 19, 15, 0.72);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(191, 102, 84, 0.14);
}

.main-nav .nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--paper);
  background: var(--copper-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
}

.menu-toggle:hover {
  background: var(--copper-dark);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(23, 19, 15, 0.96) 0%, rgba(23, 19, 15, 0.84) 43%, rgba(23, 19, 15, 0.46) 100%),
    url("../img/hero-edda-web.webp");
  background-position: center;
  background-size: cover;
  border-bottom: 10px solid var(--ochre);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0 5rem;
}

.eyebrow,
.section-kicker,
.demo-type,
.price-label {
  margin: 0 0 0.75rem;
  color: var(--copper);
  font-weight: 800;
}

.hero .eyebrow {
  color: var(--ochre);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.legal-content h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.1rem;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(255, 247, 236, 0.9);
  font-size: 1.2rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  color: var(--paper);
  background: var(--copper);
  box-shadow: 10px 10px 0 rgba(240, 177, 62, 0.22);
}

.button-primary:hover {
  background: var(--copper-dark);
  box-shadow: 3px 3px 0 rgba(240, 177, 62, 0.32);
  transform: translate(5px, 5px);
}

.button-primary:active {
  box-shadow: 0 0 0 rgba(240, 177, 62, 0);
  transform: translate(8px, 8px);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 247, 236, 0.6);
  background: rgba(23, 19, 15, 0.3);
}

.button-secondary:hover {
  border-color: var(--ochre);
  background: rgba(240, 177, 62, 0.18);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--moss-dark);
}

.hero-facts {
  display: grid;
  grid: auto / repeat(3, minmax(0, 1fr));
  max-width: 870px;
  gap: 0.75rem;
  margin-top: 3rem;
}

.hero-facts p {
  position: relative;
  margin: 0;
  padding: 1rem 1.1rem 1rem 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 236, 0.12), rgba(255, 247, 236, 0.04));
  border: 1px solid rgba(255, 247, 236, 0.26);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero-facts p::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--ochre);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-top: 0.18rem;
  color: var(--paper);
  line-height: 1.2;
}

.hero-facts span {
  color: rgba(255, 247, 236, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.light {
  color: var(--paper);
}

.section-heading.light p {
  color: rgba(255, 247, 236, 0.78);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.legal-content h1 {
  font-size: 3rem;
}

.section-heading p,
.about-copy p,
.contact-copy p {
  color: rgba(23, 19, 15, 0.75);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.method-steps article,
.price-card,
.demo-card {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-card {
  min-height: 270px;
  padding: 1.15rem;
  background: rgba(255, 250, 242, 0.92);
  border-top: 7px solid var(--copper);
  box-shadow: 0 12px 34px rgba(23, 19, 15, 0.08);
}

.service-card:nth-child(2) {
  border-top-color: var(--moss);
}

.service-card:nth-child(3) {
  border-top-color: var(--ochre);
}

.service-card:nth-child(4) {
  border-top-color: var(--ink);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  font-weight: 800;
}

.service-card h3,
.method-steps h3,
.price-card h3,
.demo-card h3 {
  margin: 1rem 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-card p,
.method-steps p,
.price-card li,
.demo-card p {
  color: rgba(23, 19, 15, 0.72);
}

.service-strip {
  display: grid;
  grid: auto / minmax(0, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 1.1rem 1.4rem;
  max-width: 1040px;
  margin: 1.9rem auto 0;
  padding: 1.15rem 1.2rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(191, 102, 84, 0.09), rgba(240, 177, 62, 0.08)),
    rgba(255, 248, 238, 0.72);
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(23, 19, 15, 0.06);
}

.service-strip-intro {
  margin: 0;
  padding-top: 0.1rem;
  color: rgba(23, 19, 15, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
}

.service-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.78rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--ochre));
  flex: 0 0 auto;
}

.demo-section,
.pricing-section {
  background: var(--ink);
}

.demo-section {
  position: relative;
  border-top: 10px solid var(--moss);
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(240, 177, 62, 0.12) 0 1px, transparent 1px 30px),
    linear-gradient(90deg, rgba(191, 102, 84, 0.13), transparent 48%);
  pointer-events: none;
}

.demo-section .section-shell {
  position: relative;
}

.demo-grid {
  display: grid;
  grid: auto / repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  border-color: rgba(240, 177, 62, 0.7);
}

.demo-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.demo-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease;
}

.demo-card-link:hover img {
  transform: scale(1.025);
}

.demo-content {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem;
}

.demo-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.demo-content > span:not(.demo-type):not(.demo-cta) {
  color: rgba(23, 19, 15, 0.72);
}

.demo-type {
  margin: 0;
  color: var(--moss);
  font-weight: 800;
}

.demo-cta {
  width: fit-content;
  margin-top: 0.4rem;
  padding: 0.48rem 0.62rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.demo-card-link:hover .demo-cta {
  background: var(--copper-dark);
  transform: translateX(3px);
}

.method-section {
  background:
    linear-gradient(120deg, transparent 0 55%, rgba(46, 81, 71, 0.1) 55% 100%),
    var(--paper);
}

.method-layout {
  display: grid;
  grid: auto / minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.4rem;
  align-items: start;
}

.method-steps {
  display: grid;
  gap: 0.75rem;
}

.method-steps article {
  display: grid;
  grid: auto / 52px 1fr;
  gap: 0.55rem 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 10px 26px rgba(23, 19, 15, 0.05);
}

.method-steps span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--copper);
  border-radius: 4px;
  font-weight: 800;
}

.method-steps h3 {
  align-self: end;
  margin-top: 0;
  margin-bottom: 0;
}

.method-steps p {
  grid-column: 2;
  margin: 0;
  max-width: 58ch;
}

.pricing-section {
  border-top: 10px solid var(--copper);
}

.pricing-grid {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1.2rem;
  color: var(--paper);
  background: rgba(255, 247, 236, 0.08);
  border-color: rgba(255, 247, 236, 0.2);
}

.price-card.featured {
  background: var(--paper);
  color: var(--ink);
  border-top: 7px solid var(--ochre);
}

.price-card h3 {
  min-height: 54px;
  margin-top: 0;
}

.price-label {
  color: var(--ochre);
}

.price {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.price-card li {
  margin: 0.45rem 0;
  color: rgba(255, 247, 236, 0.78);
}

.price-card.featured li {
  color: rgba(23, 19, 15, 0.72);
}

.about-section {
  background: var(--paper-deep);
}

.about-layout {
  display: grid;
  grid: auto / 310px minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 247, 236, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(191, 102, 84, 0.82), rgba(23, 19, 15, 0.98) 44%, rgba(46, 81, 71, 0.92));
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 16px 16px 0 rgba(23, 19, 15, 0.08);
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-mark::before {
  inset: 18px;
  border: 1px solid rgba(255, 247, 236, 0.22);
  border-radius: 4px;
}

.about-mark::after {
  width: 120px;
  height: 420px;
  right: 18px;
  background: rgba(240, 177, 62, 0.78);
  transform: rotate(12deg) translateX(56px);
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: 178px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.about-copy {
  max-width: 720px;
}

.contact-section {
  background: var(--ochre);
}

.contact-layout {
  display: grid;
  grid: auto / minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.contact-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 247, 236, 0.74);
  border: 1px solid rgba(23, 19, 15, 0.18);
  border-radius: 6px;
}

.contact-email {
  margin-top: 1rem;
}

.contact-note p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  grid: auto / repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid rgba(23, 19, 15, 0.22);
  border-radius: 6px;
  box-shadow: 12px 12px 0 rgba(23, 19, 15, 0.16);
}

.field-group {
  display: grid;
  gap: 0.35rem;
}

.field-group.full,
.contact-form .full,
.prepared-message {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(23, 19, 15, 0.26);
  border-radius: 4px;
  padding: 0.75rem;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--moss-dark);
  font-weight: 800;
}

.prepared-message {
  min-height: 170px;
  margin-top: 0.2rem;
}

.site-footer {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(255, 247, 236, 0.05), transparent 110px),
    linear-gradient(135deg, rgba(191, 102, 84, 0.1) 0 1px, transparent 1px 28px),
    #17110f;
  border-top: 8px solid rgba(94, 133, 108, 0.88);
  padding: 2.9rem 0 1.15rem;
}

.footer-inner {
  display: grid;
  grid: auto / minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: 3rem;
  padding: 0 0 1.7rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.15rem 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand img {
  width: 58px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-footer p {
  margin: 0;
}

.footer-columns {
  display: grid;
  grid: auto / minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.5rem 2.2rem;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-label {
  margin: 0;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-block nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.75rem;
  align-items: center;
}

.footer-block a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  color: rgba(255, 247, 236, 0.88);
  background: rgba(255, 247, 236, 0.06);
  border: 1px solid rgba(255, 247, 236, 0.11);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-block a:hover {
  color: var(--paper);
  background: rgba(191, 102, 84, 0.24);
  border-color: rgba(240, 177, 62, 0.46);
  transform: translateY(-1px);
}

.footer-block-contact {
  gap: 0.55rem;
}

.footer-contact,
.footer-domain {
  width: fit-content;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-weight: 800;
}

.footer-domain {
  color: rgba(255, 247, 236, 0.7);
  font-weight: 700;
}

.footer-contact:hover,
.footer-domain:hover {
  background: transparent;
  border-color: transparent;
  color: var(--ochre);
}

.footer-territory {
  max-width: 29ch;
  color: rgba(255, 247, 236, 0.72);
  line-height: 1.45;
}

.footer-note {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 247, 236, 0.16);
  color: rgba(255, 247, 236, 0.68);
  font-size: 0.92rem;
}

.footer-note p {
  margin: 0;
}

.legal-page {
  background: var(--paper);
}

.legal-nav {
  display: flex;
}

.legal-main {
  padding: 4rem 0;
}

.legal-content {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-content .button {
  margin-top: 1.4rem;
}

@media (max-width: 1040px) {
  .hero {
    min-height: 700px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 3.35rem;
  }

  .service-grid,
  .pricing-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
  }

  .demo-grid {
    grid: auto / 1fr;
  }

  .demo-card {
    display: block;
  }

  .demo-card-link {
    display: grid;
    grid: auto / minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .demo-card img {
    height: 100%;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open,
  .legal-nav {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  .legal-nav {
    position: static;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .hero {
    min-height: 660px;
    background-position: 62% center;
  }

  .hero-inner {
    padding: 4.2rem 0;
  }

  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .legal-content h1 {
    font-size: 2.45rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-facts,
  .method-layout,
  .about-layout,
  .contact-layout {
    grid: auto / 1fr;
  }

  .about-mark {
    min-height: 210px;
  }

  .about-mark img {
    width: 126px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-shell,
  .footer-inner,
  .footer-note,
  .hero-inner,
  .legal-content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding: 2.4rem 0 2rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.78rem;
    line-height: 1.04;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 1.3rem;
  }

  .hero-facts {
    grid: auto / 1fr;
    margin-top: 1.5rem;
    gap: 0.45rem;
  }

  .hero-facts p {
    padding: 0.7rem 0.55rem 0.7rem 0.7rem;
  }

  .hero-facts span {
    font-size: 0.72rem;
  }

  .hero-facts strong {
    font-size: 0.84rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .legal-content h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .pricing-grid,
  .contact-form {
    grid: auto / 1fr;
  }

  .service-strip {
    grid: auto / 1fr;
  }

  .service-strip-intro {
    font-size: 0.94rem;
  }

  .service-strip-list {
    gap: 0.55rem;
  }

  .service-strip span {
    min-width: 0;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .demo-card {
    display: block;
  }

  .demo-card-link {
    display: block;
  }

  .demo-card img {
    height: auto;
  }

  .method-steps article {
    grid: auto / 1fr;
  }

  .method-steps p {
    grid-column: auto;
  }

  .contact-form {
    box-shadow: 8px 8px 0 rgba(23, 19, 15, 0.16);
  }

  .footer-inner {
    display: grid;
    grid: auto / 1fr;
  }

  .footer-columns {
    grid: auto / 1fr;
    gap: 1.4rem;
  }

  .footer-block nav {
    gap: 0.6rem;
  }

  .footer-block a,
  .footer-contact,
  .footer-domain {
    justify-content: flex-start;
  }

  .footer-note {
    gap: 0.45rem;
  }

  .legal-content {
    padding: 1.2rem;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding: 1.6rem 0 1.3rem;
  }

  .hero h1 {
    font-size: 1.58rem;
    line-height: 1.02;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-facts {
    display: none;
  }

  .button {
    min-height: 44px;
    padding: 0.7rem 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
