/* FenceLead — outdoor / contractor palette (cedar + forest, not teal) */
:root {
  --bg: #0e120e;
  --bg-elevated: #141a14;
  --surface: #1a2218;
  --surface2: #243022;
  --surface3: #2c3a28;
  --border: #33402e;
  --border-soft: rgba(196, 149, 100, 0.22);
  --text: #f2ebe1;
  --muted: #9a9488;
  --muted2: #6e685c;
  --accent: #c49564;          /* cedar */
  --accent-bright: #dcb07a;
  --accent-dim: #8f6a42;
  --forest: #3d6b4a;
  --forest-bright: #4f855c;
  --forest-deep: #2a4a34;
  --warn: #e0a84a;
  --danger: #d96a5a;
  --ok: #5a9e6e;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 107, 74, 0.22), transparent 55%),
    radial-gradient(900px 500px at 95% 5%, rgba(196, 149, 100, 0.12), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.35rem; }
.wrap-narrow { max-width: 640px; margin: 0 auto; }

/* ——— Nav ——— */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 40;
  background: rgba(14, 18, 14, 0.88);
  backdrop-filter: blur(12px);
  margin: 0 -1.35rem; padding-left: 1.35rem; padding-right: 1.35rem;
}
.logo {
  font-weight: 760; font-size: 1.2rem; color: var(--text);
  letter-spacing: -0.03em; text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--text); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.15rem; align-items: center; font-size: 0.9rem; flex-wrap: wrap; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: linear-gradient(180deg, var(--forest-bright), var(--forest));
  color: #f7faf6;
  font-weight: 650;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(45, 90, 60, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover {
  background: linear-gradient(180deg, #5a9368, var(--forest-bright));
  text-decoration: none; color: #fff;
  transform: translateY(-1px);
}
.btn-cedar {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #1a120a;
  box-shadow: 0 8px 24px rgba(196, 149, 100, 0.28);
}
.btn-cedar:hover { background: linear-gradient(180deg, #e8c090, var(--accent-bright)); color: #1a120a; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: rgba(196, 149, 100, 0.06);
  transform: none;
}
.btn-sm { padding: 0.42rem 0.9rem; font-size: 0.84rem; box-shadow: none; }

/* ——— Hero ——— */
.hero { padding: 3.25rem 0 2rem; }
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}
.hero h1, .hero-split h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  font-weight: 750;
}
.hero .sub, .hero-split .sub {
  color: var(--muted); font-size: 1.08rem; max-width: 34rem; margin: 0 0 1.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(196, 149, 100, 0.12);
  color: var(--accent-bright);
  border: 1px solid var(--border-soft);
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.badge-forest {
  background: rgba(61, 107, 74, 0.18);
  color: #9dcca8;
  border-color: rgba(61, 107, 74, 0.4);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.price-note { color: var(--muted); font-size: 0.85rem; margin-top: 0.9rem; }
.micro { color: var(--muted2); font-size: 0.82rem; margin-top: 0.85rem; max-width: 32rem; }

/* Form preview mock (static, marketing only) */
.preview-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.preview-frame::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(196,149,100,0.45), transparent 40%, rgba(61,107,74,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.preview-chrome {
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0.85rem; padding: 0 0.15rem;
}
.preview-chrome .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
}
.preview-chrome .dot:nth-child(1) { background: #c07060; }
.preview-chrome .dot:nth-child(2) { background: #c4a050; }
.preview-chrome .dot:nth-child(3) { background: #5a9e6e; }
.preview-chrome .url {
  margin-left: 0.5rem; flex: 1;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.25rem 0.6rem;
  font-size: 0.7rem; color: var(--muted); font-family: ui-monospace, monospace;
}
.preview-label {
  position: absolute; top: 0.65rem; right: 0.85rem;
  font-size: 0.68rem; font-weight: 650; color: var(--accent);
  background: rgba(14,18,14,0.85); border: 1px solid var(--border-soft);
  padding: 0.15rem 0.5rem; border-radius: 999px; z-index: 2;
}

/* Static mock form inside preview (not interactive) */
.fl-mock {
  font-family: var(--font);
  background: #fff;
  color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5ddd0;
  pointer-events: none;
  user-select: none;
}
.fl-mock .fl-header {
  background: linear-gradient(135deg, #2a4a34, #3d6b4a);
  color: #fff;
  padding: 1rem 1.15rem;
}
.fl-mock .fl-header h2 { margin: 0; font-size: 1.05rem; }
.fl-mock .fl-header p { margin: 0.2rem 0 0; font-size: 0.78rem; opacity: 0.9; }
.fl-mock .fl-body { padding: 1.1rem 1.15rem 1.25rem; }
.fl-mock .fl-steps { display: flex; gap: 0.35rem; margin-bottom: 0.9rem; }
.fl-mock .fl-step-dot { height: 4px; flex: 1; border-radius: 2px; background: #e8e0d4; }
.fl-mock .fl-step-dot.active { background: #c49564; }
.fl-mock .fl-field { margin-bottom: 0.7rem; }
.fl-mock .fl-field label {
  display: block; font-size: 0.68rem; font-weight: 650;
  color: #6b6358; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.fl-mock .fake-input {
  width: 100%; padding: 0.5rem 0.65rem;
  border: 1px solid #d4cbc0; border-radius: 8px;
  font-size: 0.88rem; background: #faf8f5; color: #3a3530;
}
.fl-mock .fl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.fl-mock .fake-btn {
  width: 100%; margin-top: 0.35rem;
  background: #2a4a34; color: #fff; border: none;
  padding: 0.7rem; border-radius: 8px; font-weight: 650; font-size: 0.92rem;
  text-align: center;
}

/* ——— Sections ——— */
.section { padding: 2.75rem 0; }
.section-head { margin-bottom: 1.5rem; max-width: 36rem; }
.section-head h2 {
  margin: 0 0 0.5rem; font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.025em; font-weight: 720;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1rem; }
.section-alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -1.35rem; padding-left: 1.35rem; padding-right: 1.35rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: rgba(196, 149, 100, 0.35); }
.card h3 { margin: 0 0 0.45rem; font-size: 1.02rem; font-weight: 680; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.card .icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61, 107, 74, 0.2); color: #9dcca8;
  font-size: 1rem; font-weight: 700; margin-bottom: 0.85rem;
  border: 1px solid rgba(61, 107, 74, 0.35);
}
.card .icon.cedar {
  background: rgba(196, 149, 100, 0.15); color: var(--accent-bright);
  border-color: var(--border-soft);
}

/* How it works steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest-deep); color: var(--accent-bright);
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-soft);
}
.step h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Compare / vs table */
.compare {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); font-size: 0.9rem;
}
.compare th, .compare td {
  text-align: left; padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.compare th {
  background: var(--surface2); color: var(--muted);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 650;
}
.compare tr:last-child td { border-bottom: none; }
.compare td:first-child { color: var(--muted); width: 32%; }
.compare .yes { color: var(--ok); font-weight: 650; }
.compare .no { color: var(--muted2); }
.compare .highlight { color: var(--accent-bright); font-weight: 650; }

/* Pricing */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}
.pricing {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.pricing::after {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(196,149,100,0.15), transparent 65%);
  pointer-events: none;
}
.pricing .amount {
  font-size: 3.25rem; font-weight: 760; letter-spacing: -0.04em;
  line-height: 1; margin: 0.35rem 0;
}
.pricing .amount small { font-size: 1rem; font-weight: 550; color: var(--muted); }
.pricing .list { color: var(--muted); text-decoration: line-through; margin: 0.15rem 0 1rem; font-size: 0.95rem; }
.pricing ul {
  list-style: none; padding: 0; margin: 1.15rem 0 1.5rem; text-align: left;
}
.pricing li {
  padding: 0.4rem 0; color: var(--muted); font-size: 0.95rem;
  border-bottom: 1px solid rgba(51, 64, 46, 0.55);
  display: flex; gap: 0.55rem; align-items: flex-start;
}
.pricing li:last-child { border-bottom: none; }
.pricing li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-aside {
  display: flex; flex-direction: column; gap: 1rem;
}
.pricing-aside .card { flex: 1; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.65rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
}
.faq details[open] { border-color: rgba(196, 149, 100, 0.35); }
.faq summary {
  cursor: pointer; font-weight: 650; font-size: 0.98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0.75rem 0 0.15rem; color: var(--muted); font-size: 0.92rem;
}

/* Embed snippet block */
.snippet-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.snippet {
  background: #0a0d0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  overflow-x: auto;
  font-size: 0.8rem;
  color: #b8c9aa;
  white-space: pre-wrap;
  word-break: break-all;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  line-height: 1.55;
  margin: 0.85rem 0 0;
}
.snippet .cmt { color: #6e685c; }
.snippet .tag { color: var(--accent-bright); }
.snippet .attr { color: #9dcca8; }

/* Final CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(160deg, var(--forest-deep), #1a281c 60%, var(--surface));
  border: 1px solid rgba(61, 107, 74, 0.45);
  border-radius: var(--radius-lg);
  margin: 2.5rem 0 3rem;
}
.cta-band h2 { margin: 0 0 0.5rem; font-size: 1.55rem; letter-spacing: -0.02em; }
.cta-band p { margin: 0 auto 1.35rem; color: var(--muted); max-width: 28rem; }

.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent-bright); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-top: 0.65rem; }
.fineprint { color: var(--muted2); font-size: 0.75rem; margin-top: 0.85rem; max-width: 40rem; }

/* ——— Widget form (live embed — keep class names) ——— */
.fl-widget {
  font-family: var(--font);
  background: #fff;
  color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #e5ddd0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  max-width: 420px;
  width: 100%;
  overflow: hidden;
}
.fl-widget * { box-sizing: border-box; }
.fl-header {
  background: linear-gradient(135deg, #2a4a34, #3d6b4a);
  color: #fff;
  padding: 1rem 1.25rem;
}
.fl-header h2 { margin: 0; font-size: 1.1rem; }
.fl-header p { margin: 0.25rem 0 0; font-size: 0.8rem; opacity: 0.9; }
.fl-body { padding: 1.25rem; }
.fl-field { margin-bottom: 0.85rem; }
.fl-field label {
  display: block; font-size: 0.75rem; font-weight: 650;
  color: #6b6358; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.fl-field input, .fl-field select, .fl-field textarea {
  width: 100%; padding: 0.55rem 0.7rem;
  border: 1px solid #d4cbc0; border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; background: #faf8f5; color: #1a1a1a;
}
.fl-field input:focus, .fl-field select:focus, .fl-field textarea:focus {
  outline: none; border-color: #c49564; box-shadow: 0 0 0 3px rgba(196,149,100,0.22);
  background: #fff;
}
.fl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.fl-submit {
  width: 100%; background: #2a4a34; color: #fff; border: none;
  padding: 0.75rem; border-radius: 8px; font-weight: 650; font-size: 1rem;
  cursor: pointer; margin-top: 0.25rem;
}
.fl-submit:hover { background: #3d6b4a; }
.fl-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.fl-success { text-align: center; padding: 2rem 1.25rem; }
.fl-success h3 { margin: 0 0 0.5rem; color: #2a4a34; }
.fl-success p { margin: 0; color: #6b6358; font-size: 0.9rem; }
.fl-error { color: #b53a2e; font-size: 0.85rem; margin-top: 0.5rem; }
.fl-steps { display: flex; gap: 0.35rem; margin-bottom: 1rem; }
.fl-step-dot {
  height: 4px; flex: 1; border-radius: 2px; background: #e8e0d4;
}
.fl-step-dot.active { background: #c49564; }
.fl-nav { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.fl-nav button {
  flex: 1; padding: 0.65rem; border-radius: 8px; font-weight: 650;
  cursor: pointer; font-size: 0.9rem; border: 1px solid #d4cbc0; background: #faf8f5;
}
.fl-nav .fl-next { background: #2a4a34; color: #fff; border-color: #2a4a34; }

/* Demo page */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
  align-items: start;
}
.demo-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.demo-note h3 { margin-top: 0; }
.demo-note code {
  background: var(--surface2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.demo-note ol { color: var(--muted); padding-left: 1.2rem; font-size: 0.95rem; }
.demo-note ol li { margin-bottom: 0.35rem; }

/* Dashboard */
.dash-header {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem; padding: 1.5rem 0 1rem;
}
.dash-header h1 { margin: 0; font-size: 1.5rem; letter-spacing: -0.02em; }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
table.leads {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
}
table.leads th, table.leads td {
  text-align: left; padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}
table.leads th {
  color: var(--muted); font-weight: 650; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--surface2);
}
table.leads tr:last-child td { border-bottom: none; }
table.leads tr:hover td { background: rgba(196, 149, 100, 0.05); }
.empty { padding: 2.5rem; text-align: center; color: var(--muted); }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 650;
  padding: 0.15rem 0.5rem; border-radius: 999px;
  background: rgba(61, 107, 74, 0.2); color: #9dcca8;
}
.pill-new { background: rgba(196, 149, 100, 0.18); color: var(--accent-bright); }
.muted { color: var(--muted); }
.alert {
  background: rgba(224, 168, 74, 0.1);
  border: 1px solid rgba(224, 168, 74, 0.35);
  color: var(--warn);
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 1rem 0;
}
.alert-info {
  background: rgba(61, 107, 74, 0.12);
  border-color: rgba(61, 107, 74, 0.35);
  color: #9dcca8;
}

/* Apply / waitlist form */
.apply-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 540px;
  margin-bottom: 1.5rem;
}
.apply-card h3 { margin: 0 0 0.75rem; }
.apply-card ol { color: var(--muted); padding-left: 1.2rem; font-size: 0.95rem; margin: 0 0 1rem; }
.apply-card ol li { margin-bottom: 0.4rem; }
.form-stack .fl-field { margin-bottom: 0.9rem; }
.form-stack label {
  display: block; font-size: 0.78rem; font-weight: 650;
  color: var(--muted); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.form-stack input, .form-stack select, .form-stack textarea {
  width: 100%; padding: 0.6rem 0.75rem;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit;
  background: var(--bg); color: var(--text);
}
.form-stack input:focus, .form-stack select:focus, .form-stack textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 149, 100, 0.18);
}
.form-stack textarea { min-height: 90px; resize: vertical; }

/* Stat strip (honest — no fake counts) */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  padding: 1rem 0 0; margin-top: 0.5rem;
  border-top: 1px solid transparent;
}
.trust-item { font-size: 0.82rem; color: var(--muted); }
.trust-item strong { display: block; color: var(--text); font-size: 0.92rem; font-weight: 680; margin-bottom: 0.1rem; }

@media (max-width: 860px) {
  .hero-split, .pricing-wrap, .demo-layout, .grid-3, .steps, .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav { position: static; margin: 0; padding-left: 0; padding-right: 0; }
  .section-alt { margin: 0; padding-left: 0; padding-right: 0; }
}
@media (max-width: 720px) {
  .fl-row, .fl-mock .fl-row { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
