@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f4f1ea;
  --surface: #fcfbf8;
  --surface-2: #e8ede7;
  --text: #212b27;
  --text-muted: #5d6a63;
  --accent: #7c9885;
  --accent-deep: #40614f;
  --dark: #22322b;
  --dark-text: #edf2ec;
  --border: #dbd6c9;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 3.8rem);
  --fs-h1: clamp(2.1rem, 4.2vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.88rem;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 56px;
  --space-xl: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 10px rgba(33, 43, 39, 0.06);
  --shadow-md: 0 14px 40px rgba(33, 43, 39, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}
main {
  flex: 1 0 auto;
}
img {
  display: block;
  max-width: 100%;
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 700; margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { color: var(--text-muted); }
.container {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
}
.section { padding: var(--space-xl) 0; }
.section-tight { padding: var(--space-lg) 0 var(--space-xl); }
.section-dark { background: var(--dark); color: var(--dark-text); }
.section-dark p { color: rgba(237, 242, 236, 0.72); }
.section-tint { background: var(--surface-2); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-deep);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: var(--space-sm);
}
.overline::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-deep);
}
.overline::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.overline-light { color: #bcd6c6; }
.overline-light::before { background: #bcd6c6; }
.meridian-rule {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
  height: 1px;
  background: var(--border);
  position: relative;
}
.meridian-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--accent);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo img { width: 50px; height: 50px; border-radius: 10px; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 1.05rem;
}
.ad-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--surface);
}
.main-nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-md);
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.main-nav a:hover { border-bottom-color: var(--accent); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 26, 22, 0.12) 30%, rgba(18, 26, 22, 0.72) 82%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: var(--space-xl) 0;
}
.hero-panel {
  max-width: 560px;
  background: rgba(20, 28, 24, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
}
.hero-panel h1 {
  color: #fff;
  font-size: var(--fs-display);
  margin-bottom: var(--space-sm);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.06rem;
  margin-bottom: var(--space-md);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-sm);
}
.coord-line {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 44px;
}
.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #33513f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent-deep); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost-light:hover { border-color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.chip i { color: var(--accent-deep); font-size: 1rem; }
.chip-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.chip-light i { color: #bcd6c6; }
.trust-strip {
  background: var(--dark);
  color: var(--dark-text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-item i {
  font-size: 1.5rem;
  color: #9dc0aa;
  margin-top: 2px;
}
.trust-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--dark-text);
}
.trust-item span {
  font-size: 0.82rem;
  color: rgba(237, 242, 236, 0.62);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-sm);
}
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.step-card h3 { margin-bottom: 8px; }
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.monitor-item {
  border-top: 2px solid rgba(157, 192, 170, 0.5);
  padding-top: var(--space-sm);
}
.monitor-item i {
  font-size: 1.7rem;
  color: #9dc0aa;
  display: block;
  margin-bottom: 10px;
}
.monitor-item strong {
  display: block;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.monitor-item span {
  font-size: 0.85rem;
  color: rgba(237, 242, 236, 0.62);
}
.spec-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: start;
}
.spec-media { position: relative; }
.spec-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.float-badge {
  position: absolute;
  bottom: 18px;
  left: -14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  color: var(--accent-deep);
}
.spec-list { margin: var(--space-md) 0; }
.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--space-sm);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.spec-row dt {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.spec-row dd { font-size: 0.92rem; color: var(--text-muted); }
.price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--accent-deep);
  display: block;
  line-height: 1;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}
.info-text p { margin-bottom: var(--space-sm); }
.coord-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-sm);
}
.info-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.num-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.num-card strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-deep);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.num-card span { font-size: 0.82rem; color: var(--text-muted); }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.section-head-row h2 { margin-bottom: 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.tag {
  background: var(--surface-2);
  color: var(--accent-deep);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card h3 { font-size: 1.12rem; }
.blog-card p { font-size: 0.9rem; }
.blog-card .btn { align-self: flex-start; margin-top: auto; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: auto;
}
.text-link:hover { text-decoration: underline; }
.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-lg);
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  padding: 12px 0;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-deep);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 14px; font-size: 0.94rem; }
.trial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.trial-seal {
  position: absolute;
  top: -26px;
  right: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--surface-2);
}
.trial-card h3 { font-size: 1.3rem; }
.tick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tick-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.tick-list i { color: var(--accent-deep); font-size: 1.1rem; margin-top: 2px; }
.trial-card .text-link { margin-top: 0; }
.cta-band { padding: var(--space-lg) 0; }
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.cta-sub { max-width: 460px; }
.page-head {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--surface-2);
}
.page-lead {
  max-width: 640px;
  font-size: 1.08rem;
  margin-top: var(--space-sm);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.about-text p { margin-bottom: var(--space-sm); }
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.principle-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
}
.principle-card i {
  font-size: 1.7rem;
  color: #9dc0aa;
  display: block;
  margin-bottom: 12px;
}
.principle-card h3 {
  color: var(--dark-text);
  margin-bottom: 8px;
}
.principle-card p { font-size: 0.9rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-info, .contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row i {
  font-size: 1.3rem;
  color: var(--accent-deep);
  margin-top: 3px;
}
.contact-row strong { display: block; font-size: 0.92rem; }
.contact-row span { font-size: 0.9rem; color: var(--text-muted); }
.callout {
  margin-top: var(--space-sm);
  background: var(--surface-2);
  border-left: 3px solid var(--accent-deep);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}
.callout p { font-size: 0.9rem; }
.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 0.85rem; font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  min-height: 44px;
  width: 100%;
  max-width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent-deep);
  outline-offset: 1px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-deep);
}
.consent a { color: var(--accent-deep); }
.thanks-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
  display: flex;
  justify-content: center;
}
.thanks-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 620px;
  width: 100%;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid var(--border);
}
.thanks-card h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.thanks-sub { font-size: 1.2rem; color: var(--text); }
.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  width: 100%;
  margin: var(--space-sm) 0;
}
.thanks-step {
  display: flex;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.thanks-step strong {
  font-family: var(--font-display);
  color: var(--accent-deep);
  font-size: 1.2rem;
}
.thanks-step span { font-size: 0.92rem; }
.thanks-note { font-size: 0.88rem; }
.legal-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: var(--space-xl) auto;
  padding: clamp(28px, 5vw, 60px);
}
.legal-content {
  word-break: break-word;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 6px; }
.legal-content h2 {
  font-size: 1.35rem;
  margin: var(--space-md) 0 10px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}
.legal-content h3 { font-size: 1.1rem; margin: var(--space-sm) 0 8px; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul {
  margin: 0 0 12px 20px;
  color: var(--text-muted);
}
.legal-content li { margin-bottom: 6px; }
.legal-updated {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.article-body img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: var(--space-sm) 0 var(--space-md);
}
.article-body h3 { margin: var(--space-md) 0 10px; }
.article-body p { margin-bottom: 14px; }
.article-body ul { margin: 0 0 14px 22px; color: var(--text-muted); }
.article-body li { margin-bottom: 8px; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal.open {
  visibility: visible;
  opacity: 1;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 22, 0.6);
}
.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 44px);
  transform: translateY(14px);
  transition: transform 0.25s;
}
.modal.open .modal-box { transform: translateY(0); }
.modal-box.wide { max-width: 880px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
.modal-title { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 6px 0 10px; }
.modal-sub { font-size: 0.94rem; margin-bottom: var(--space-sm); }
body.modal-open { overflow: hidden; }
.site-footer {
  margin-top: auto;
  background: var(--dark);
  color: var(--dark-text);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .logo { color: var(--dark-text); }
.footer-blurb {
  margin-top: var(--space-sm);
  font-size: 0.92rem;
  color: rgba(237, 242, 236, 0.66);
  max-width: 380px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(237, 242, 236, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-nav a:hover { color: #fff; }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(237, 242, 236, 0.72);
}
.footer-contacts strong { color: var(--dark-text); font-size: 1rem; }
.footer-legal { padding-top: var(--space-md); }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.legal-links a {
  color: rgba(237, 242, 236, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover { color: #fff; }
.disclaimer {
  font-size: 0.84rem;
  color: rgba(237, 242, 236, 0.55);
  margin-bottom: var(--space-sm);
}
.copyright { font-size: 0.9rem; color: rgba(237, 242, 236, 0.7); }
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent-deep);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: var(--shadow-md);
  z-index: 90;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid, .blog-grid, .journal-grid { grid-template-columns: 1fr 1fr; }
  .monitor-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid, .info-grid, .faq-grid, .about-cols, .contact-grid { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav a { padding: 12px 0; }
  .nav-open .main-nav { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .ad-badge { display: none; }
  .steps-grid, .blog-grid, .journal-grid, .monitor-grid, .trust-grid, .principle-grid, .footer-grid, .info-numbers { grid-template-columns: 1fr; }
  .hero-content { justify-content: center; }
  .section { padding: var(--space-lg) 0; }
  .section-head-row {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .section-head-row > div {
    min-width: 0;
    max-width: 100%;
  }
  .section-head-row .btn {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }
  .disclaimer { font-size: 0.85rem; }
  .footer-contacts span, .footer-nav a { font-size: 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.blog-card {
  overflow: hidden;
}
.blog-media {
  margin: calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) 0;
  border-radius: 0;
}
.section-final-accent {
  background: var(--accent-deep);
}
.section-final-accent h2 {
  color: #fff;
}
.section-final-accent p {
  color: rgba(255, 255, 255, 0.82);
}
.section-final-accent .btn-primary {
  background: var(--surface);
  color: var(--accent-deep);
}
.section-final-accent .btn-primary:hover {
  background: #fff;
}
.section-final-tint {
  background: var(--surface-2);
}
.page-head-plain {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.step-card {
  overflow: hidden;
}
.step-media {
  margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-sm);
  border-radius: 0;
}
[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}
[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}
@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-content > *,
  .steps-grid > *,
  .spec-grid > *,
  .info-grid > *,
  .blog-grid > *,
  .faq-grid > *,
  .about-cols > *,
  .contact-grid > *,
  .monitor-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .ad-badge,
  .logo-name,
  .footer-contacts,
  .footer-nav {
    word-break: break-all;
  }
  .logo {
    min-width: 0;
  }
  .logo-name {
    flex: 1;
  }
  .site-header .logo,
  .footer-brand .logo {
    flex-direction: column;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .spec-media {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .float-badge {
    position: static;
    max-width: 100%;
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .container,
  .header-inner,
  .meridian-rule {
    width: min(1160px, 100% - 24px);
  }
  .hero-panel,
  .modal-box,
  .legal-wrap,
  .thanks-card,
  .contact-info,
  .contact-form-wrap {
    padding: 16px;
  }
  .btn-block,
  .order-form .btn {
    width: 100%;
    max-width: 100%;
  }
  .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  h1 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.7rem); }
}