/* ==========================================================================
   Quantum Rack — Stylesheet
   Palette: graphite / navy base with a copper hardware accent.
   Type: Space Grotesk (display) + IBM Plex Sans (body) + IBM Plex Mono (data)
   ========================================================================== */

:root{
  /* base surfaces */
  --bg:        #12151c;
  --bg-alt:    #171b24;
  --surface:   #1d2230;
  --surface-2: #232a3a;
  --border:    #2a3040;
  --border-soft: #232838;

  /* text */
  --text:       #e9ebf1;
  --text-muted: #9aa2b4;
  --text-dim:   #6b7386;

  /* accents */
  --accent:      #c97b3d;
  --accent-soft: #e4a86b;
  --accent-dim:  rgba(201,123,61,0.14);
  --teal:        #5fa8ae;

  /* status */
  --online: #6fbf8b;
  --warn:   #d9a441;
  --off:    #c6685b;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --max: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: inherit; color: inherit; }

::selection{ background: var(--accent); color: #12151c; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section{ padding: 108px 0; border-top: 1px solid var(--border-soft); }
.section--alt{ background: var(--bg-alt); }
.section--tight{ padding: 80px 0; }

.section-head{ max-width: 640px; margin-bottom: 56px; }
.kicker{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-soft);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-head p{ color: var(--text-muted); font-size: 17px; max-width: 60ch; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--accent); color: #14110b; }
.btn-primary:hover{ background: var(--accent-soft); }
.btn-ghost{ border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover{ border-color: var(--accent-soft); color: var(--accent-soft); }
.btn-block{ width: 100%; justify-content: center; }
.btn[disabled]{ opacity: .55; cursor: not-allowed; }

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(18,21,28,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap{
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo{ display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; color: var(--text); }
.logo-mark{ width: 30px; height: 30px; flex: none; }
.logo b{ font-weight: 600; }
.logo span{ color: var(--accent-soft); }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{ font-size: 14.5px; color: var(--text-muted); transition: color .15s ease; position: relative; }
.nav-links a:hover{ color: var(--text); }
.nav-links a.is-active{ color: var(--text); }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.nav-toggle{
  display: none; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
  width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--text);
}
.nav-toggle svg{ width: 18px; height: 18px; }

/* ---------- hero ---------- */
.hero{ padding: 76px 0 100px; position: relative; overflow: clip; }
.hero::before{
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 620px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(201,123,61,0.12), transparent 70%);
  pointer-events: none;
}
.hero-grid{
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-muted);
  border: 1px solid var(--border); padding: 6px 12px; border-radius: 100px; margin-bottom: 26px;
}
.hero-eyebrow .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--online); box-shadow: 0 0 0 3px rgba(111,191,139,0.18); }
.hero h1{ font-size: clamp(36px, 5vw, 60px); max-width: 15ch; }
.hero h1 em{ font-style: normal; color: var(--accent-soft); }
.hero-sub{ margin-top: 22px; font-size: 18px; color: var(--text-muted); max-width: 46ch; }
.hero-cta{ margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note{ margin-top: 28px; font-size: 13.5px; color: var(--text-dim); }

.hero-panel{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: relative;
}
.hero-panel-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hero-panel-head span{ font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim); }
.hero-panel-head .live{ display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--online); font-family: var(--font-mono); }
.hero-panel-head .live i{ width: 6px; height: 6px; border-radius: 50%; background: var(--online); display: inline-block; animation: pulse 2s ease-in-out infinite; }

.hero-stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.hero-stat b{ display: block; font-family: var(--font-display); font-size: 30px; color: var(--text); }
.hero-stat span{ font-size: 13px; color: var(--text-muted); }

.hero-feed{ border-top: 1px solid var(--border); padding-top: 18px; }
.hero-feed-row{ display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 13.5px; }
.hero-feed-row .loc{ display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.hero-feed-row .loc i{ width: 5px; height: 5px; border-radius: 50%; background: var(--online); }
.hero-feed-row .ping{ font-family: var(--font-mono); color: var(--text-dim); }

@keyframes pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

/* ---------- trust bar ---------- */
.trust{ padding: 40px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.trust .wrap{ display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-label{ font-size: 13px; color: var(--text-dim); font-family: var(--font-mono); flex: none; }
.trust-marks{ display: flex; gap: 38px; flex-wrap: wrap; align-items: center; }
.trust-marks span{ font-family: var(--font-display); font-size: 17px; color: var(--text-dim); letter-spacing: 0.01em; }

/* ---------- stat strip (about) ---------- */
.about-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.about-copy p{ color: var(--text-muted); font-size: 17px; max-width: 52ch; }
.about-copy p + p{ margin-top: 16px; }
.stat-strip{ border-top: 1px solid var(--border); }
.stat-row{ display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--border); gap: 20px; }
.stat-row .label{ color: var(--text-muted); font-size: 15px; }
.stat-row .value{ font-family: var(--font-display); font-size: 28px; color: var(--text); text-align: right; }
.stat-row .value small{ font-family: var(--font-mono); font-size: 14px; color: var(--accent-soft); margin-left: 6px; }

/* ---------- services (editorial rows) ---------- */
.service-row{
  display: grid; grid-template-columns: 0.55fr 1fr; gap: 56px;
  padding: 52px 0; border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.service-row:first-child{ padding-top: 0; }
.service-row:last-child{ border-bottom: none; }
.service-num{ font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.service-icon{ width: 44px; height: 44px; color: var(--accent-soft); margin-bottom: 18px; }
.service-title{ font-size: 25px; margin-bottom: 6px; }
.service-tag{ font-size: 13.5px; color: var(--teal); font-family: var(--font-mono); }
.service-body p{ color: var(--text-muted); font-size: 16px; max-width: 62ch; }
.service-list{ margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.service-list li{ font-size: 14.5px; color: var(--text-muted); padding-left: 18px; position: relative; }
.service-list li::before{ content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1px; background: var(--accent-soft); }

/* ---------- network / live servers ---------- */
.network-toolbar{ display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.network-filters{ display: flex; gap: 10px; flex-wrap: wrap; }
.field-inline{ position: relative; }
.field-inline input[type="search"]{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px 10px 34px; color: var(--text); width: 220px; font-size: 14px;
}
.field-inline svg{ position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--text-dim); }
select.filter-select{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 30px 10px 12px; color: var(--text-muted); font-size: 14px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7386'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

.table-wrap{ overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
table.server-table{ width: 100%; border-collapse: collapse; min-width: 760px; }
.server-table thead th{
  text-align: left; font-family: var(--font-mono); font-size: 12px; color: var(--text-dim);
  padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--surface); font-weight: 400;
  white-space: nowrap;
}
.server-table tbody td{ padding: 13px 16px; border-bottom: 1px solid var(--border-soft); font-size: 14px; color: var(--text); white-space: nowrap; }
.server-table tbody tr:last-child td{ border-bottom: none; }
.server-table tbody tr:hover{ background: var(--surface); }
.server-table .mono{ font-family: var(--font-mono); color: var(--text-muted); font-size: 13px; }
.status-pill{ display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-family: var(--font-mono); }
.status-pill i{ width: 6px; height: 6px; border-radius: 50%; }
.status-pill.online i{ background: var(--online); }
.status-pill.online{ color: var(--online); }
.status-pill.maintenance i{ background: var(--warn); }
.status-pill.maintenance{ color: var(--warn); }
.status-pill.high-load i{ background: var(--off); }
.status-pill.high-load{ color: var(--off); }

.network-footer{ display: flex; align-items: center; justify-content: space-between; margin-top: 22px; flex-wrap: wrap; gap: 16px; }
.network-count{ font-size: 13.5px; color: var(--text-dim); }
.network-more{ text-align: center; margin-top: 30px; }

.pagination{ display: flex; align-items: center; gap: 6px; }
.pagination button{
  width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--surface); color: var(--text-muted); font-size: 13px; font-family: var(--font-mono);
}
.pagination button.is-active{ border-color: var(--accent-soft); color: var(--accent-soft); }
.pagination button:hover:not(.is-active):not([disabled]){ border-color: var(--text-dim); color: var(--text); }
.pagination button[disabled]{ opacity: .4; cursor: not-allowed; }

/* ---------- spec sheet (why us) ---------- */
.spec-sheet{ border-top: 1px solid var(--border); max-width: 880px; }
.spec-row{ display: grid; grid-template-columns: 280px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.spec-row dt{ font-family: var(--font-display); font-size: 17px; color: var(--text); }
.spec-row dd{ margin: 0; color: var(--text-muted); font-size: 15.5px; max-width: 58ch; }

/* ---------- process ---------- */
.process-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.process-step{ background: var(--bg-alt); padding: 30px 26px; }
.process-tag{ font-family: var(--font-mono); font-size: 12px; color: var(--accent-soft); margin-bottom: 16px; }
.process-step h3{ font-size: 18px; margin-bottom: 10px; }
.process-step p{ font-size: 14.5px; color: var(--text-muted); }

/* ---------- testimonials ---------- */
.quote-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.quote-card blockquote{ margin: 0; font-size: 16px; color: var(--text); line-height: 1.55; }
.quote-by{ display: flex; flex-direction: column; gap: 2px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.quote-by b{ font-size: 14px; font-weight: 500; }
.quote-by span{ font-size: 13px; color: var(--text-dim); }

/* ---------- pricing ---------- */
.pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.plan-card.is-featured{ border-color: var(--accent); position: relative; }
.plan-flag{ position: absolute; top: -13px; left: 32px; background: var(--accent); color: #14110b; font-size: 12px; font-family: var(--font-mono); padding: 4px 10px; border-radius: 100px; }
.plan-name{ font-family: var(--font-display); font-size: 20px; margin-bottom: 6px; }
.plan-desc{ font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.plan-price{ font-family: var(--font-display); font-size: 38px; color: var(--text); margin-bottom: 4px; }
.plan-price span{ font-family: var(--font-body); font-size: 14px; color: var(--text-dim); font-weight: 400; }
.plan-period{ font-size: 13px; color: var(--text-dim); margin-bottom: 26px; }
.plan-features{ display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan-features li{ font-size: 14.5px; color: var(--text-muted); padding-left: 22px; position: relative; }
.plan-features li::before{ content: "+"; position: absolute; left: 0; color: var(--accent-soft); font-family: var(--font-mono); }

/* ---------- contact ---------- */
.contact-grid{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-info-block{ margin-bottom: 30px; }
.contact-info-block h3{ font-size: 15px; color: var(--text-dim); font-family: var(--font-mono); margin-bottom: 10px; font-weight: 400; }
.contact-info-block p, .contact-info-block a{ font-size: 16px; color: var(--text); }
.contact-info-block a:hover{ color: var(--accent-soft); }
.contact-info-block address{ font-style: normal; color: var(--text); line-height: 1.7; }

.map-frame{ border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-top: 8px; }
.map-frame iframe{ width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13.5px; color: var(--text-muted); }
.field input, .field select, .field textarea{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-size: 15px; width: 100%;
}
.field select{
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7386'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--accent-soft); }
.field-hint{ font-size: 12.5px; color: var(--text-dim); }
.hp-field{ position: absolute; left: -9999px; opacity: 0; }

.form-msg{ display: none; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 18px; }
.form-msg.is-visible{ display: block; }
.form-msg.success{ background: rgba(111,191,139,0.12); color: var(--online); border: 1px solid rgba(111,191,139,0.3); }
.form-msg.error{ background: rgba(198,104,91,0.12); color: var(--off); border: 1px solid rgba(198,104,91,0.3); }

.form-actions{ display: flex; align-items: center; gap: 16px; margin-top: 6px; grid-column: 1 / -1; }
.form-actions .field-hint{ margin: 0; }

/* ---------- CTA band ---------- */
.cta-band{ padding: 84px 0; text-align: left; }
.cta-band-inner{
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(201,123,61,0.08), transparent 60%);
}
.cta-band h2{ font-size: clamp(24px, 3vw, 32px); max-width: 20ch; }
.cta-band p{ color: var(--text-muted); margin-top: 10px; max-width: 48ch; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer{ border-top: 1px solid var(--border-soft); padding: 72px 0 32px; background: var(--bg-alt); }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-about p{ color: var(--text-muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.footer-col h4{ font-size: 13.5px; color: var(--text-dim); font-family: var(--font-mono); font-weight: 400; margin-bottom: 16px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: 14.5px; color: var(--text-muted); }
.footer-col a:hover{ color: var(--accent-soft); }
.footer-social{ display: flex; gap: 12px; margin-top: 18px; }
.footer-social a{
  width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.footer-social a:hover{ border-color: var(--accent-soft); color: var(--accent-soft); }
.footer-social svg{ width: 15px; height: 15px; }
.footer-bottom{ display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p{ font-size: 13px; color: var(--text-dim); }
.footer-legal{ display: flex; gap: 22px; }
.footer-legal a{ font-size: 13px; color: var(--text-dim); }
.footer-legal a:hover{ color: var(--text-muted); }

/* ---------- page header (servers.html) ---------- */
.page-header{ padding: 56px 0 40px; }
.page-header .kicker{ margin-bottom: 14px; }
.page-header h1{ font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-header p{ color: var(--text-muted); font-size: 17px; max-width: 60ch; }
.page-stats{ display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap; }
.page-stat b{ display: block; font-family: var(--font-display); font-size: 26px; }
.page-stat span{ font-size: 13px; color: var(--text-muted); }
.breadcrumb{ font-size: 13.5px; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumb a{ color: var(--text-muted); }
.breadcrumb a:hover{ color: var(--accent-soft); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .service-row{ grid-template-columns: 1fr; gap: 20px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .quote-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .spec-row{ grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 760px){
  .nav-links{
    position: fixed; inset: 76px 0 auto 0; background: var(--bg);
    flex-direction: column; align-items: flex-start; gap: 0;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
    padding: 8px var(--gutter) 20px;
  }
  .nav-links.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a{ padding: 13px 0; width: 100%; border-bottom: 1px solid var(--border-soft); }
  .header-actions .btn-primary{ display: none; }
  .nav-toggle{ display: flex; }
  .section{ padding: 76px 0; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .cta-band-inner{ flex-direction: column; align-items: flex-start; }
  .service-list{ grid-template-columns: 1fr; }
  .network-toolbar{ flex-direction: column; align-items: stretch; }
  .network-filters{ flex-direction: column; }
  .field-inline input[type="search"]{ width: 100%; }
  .trust .wrap{ flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 560px){
  .hero-stats{ grid-template-columns: 1fr 1fr; }
  .process-grid{ grid-template-columns: 1fr; }
}
