/**
 * MantisSEO marketing home — non-technical / light variant (A/B).
 * Brand greens match mantis-home.css (#8fd33c family).
 */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body.mantiseo-static-front.mantiseo-home-variant-nontechnical {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #fefdf8;
  color: #18181b;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mantiseo-home.mantiseo-home--nontechnical {
  --green: #8fd33c;
  --green-dark: #6fb82e;
  --green-hover: #a3e052;
  --green-light: rgba(143, 211, 60, 0.22);
  --green-mid: #a3e052;
  --green-bg: rgba(143, 211, 60, 0.12);
  --green-border: rgba(143, 211, 60, 0.35);
  --feat-green: #3d6b1f;
  --cream: #fefdf8;
  --cream-2: #faf9f2;
  --cream-3: #f0ede0;
  --ink: #18181b;
  --ink-2: #3f3f46;
  --ink-3: #71717a;
  --ink-4: #a1a1aa;
  --white: #ffffff;
  --border: #e4e4e7;
  --border-2: #d4d4d8;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.mantiseo-home.mantiseo-home--nontechnical *,
.mantiseo-home.mantiseo-home--nontechnical *::before,
.mantiseo-home.mantiseo-home--nontechnical *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mantiseo-home.mantiseo-home--nontechnical nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mantiseo-home.mantiseo-home--nontechnical .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mantiseo-home.mantiseo-home--nontechnical .logo-img {
  height: auto;
  width: auto;
  display: block;
  max-width: 180px;
}

.mantiseo-home.mantiseo-home--nontechnical .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mantiseo-home.mantiseo-home--nontechnical .nav-link {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.mantiseo-home.mantiseo-home--nontechnical .nav-link:hover {
  color: var(--ink);
  background: var(--cream-3);
}

.mantiseo-home.mantiseo-home--nontechnical .nav-cta {
  background: var(--green);
  color: #111110;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.mantiseo-home.mantiseo-home--nontechnical .nav-cta:hover {
  background: var(--green-dark);
}

.mantiseo-home.mantiseo-home--nontechnical .hero {
  background: var(--cream);
  padding: 88px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mantiseo-home.mantiseo-home--nontechnical .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(143, 211, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--feat-green);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--green-border);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-badge .hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: mhnt-pulse 2s infinite;
}

@keyframes mhnt-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.mantiseo-home.mantiseo-home--nontechnical .hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}

.mantiseo-home.mantiseo-home--nontechnical .hero h1 em {
  font-style: italic;
  color: var(--green);
}

.mantiseo-home.mantiseo-home--nontechnical .hero-sub {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 615px;
  text-align: left;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-fine {
  font-size: 13px;
  color: var(--ink-4);
}

.mantiseo-home.mantiseo-home--nontechnical .hero-fine strong {
  color: var(--ink-3);
  font-weight: 600;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.mantiseo-home.mantiseo-home--nontechnical .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

.mantiseo-home.mantiseo-home--nontechnical .trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .feels {
  background: var(--white);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .inner {
  max-width: 940px;
  margin: 0 auto;
}

.mantiseo-home.mantiseo-home--nontechnical .section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--feat-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--sans);
}

.mantiseo-home.mantiseo-home--nontechnical .section-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.mantiseo-home.mantiseo-home--nontechnical .section-h2--faq {
  margin-bottom: 40px;
}

.mantiseo-home.mantiseo-home--nontechnical .section-sub {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 56px;
  font-weight: 400;
}

.mantiseo-home.mantiseo-home--nontechnical .section-sub--tight {
  margin-bottom: 40px;
}

.mantiseo-home.mantiseo-home--nontechnical .feels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mantiseo-home.mantiseo-home--nontechnical .feel-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.mantiseo-home.mantiseo-home--nontechnical .feel-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.mantiseo-home.mantiseo-home--nontechnical .feel-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(143, 211, 60, 0.45);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.mantiseo-home.mantiseo-home--nontechnical .feel-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mantiseo-home.mantiseo-home--nontechnical .feel-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.mantiseo-home.mantiseo-home--nontechnical .what {
  background: var(--cream-2);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mantiseo-home.mantiseo-home--nontechnical .what-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mantiseo-home.mantiseo-home--nontechnical .what-item {
  display: flex;
  gap: 16px;
}

.mantiseo-home.mantiseo-home--nontechnical .what-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .what-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--feat-green);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mantiseo-home.mantiseo-home--nontechnical .what-item h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.mantiseo-home.mantiseo-home--nontechnical .what-item p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.65;
}

.mantiseo-home.mantiseo-home--nontechnical .what-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.mantiseo-home.mantiseo-home--nontechnical .wv-heading {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .wv-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--feat-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-text {
  flex: 1;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-desc {
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.5;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-label-muted {
  color: var(--ink-3);
}

.mantiseo-home.mantiseo-home--nontechnical .wv-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mantiseo-home.mantiseo-home--nontechnical .wv-x svg {
  width: 10px;
  height: 10px;
  stroke: #dc2626;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.mantiseo-home.mantiseo-home--nontechnical .compare {
  background: var(--white);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mantiseo-home.mantiseo-home--nontechnical .compare-col {
  border-radius: 16px;
  padding: 32px;
}

.mantiseo-home.mantiseo-home--nontechnical .compare-col.before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.mantiseo-home.mantiseo-home--nontechnical .compare-col.after {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
}

.mantiseo-home.mantiseo-home--nontechnical .compare-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.mantiseo-home.mantiseo-home--nontechnical .before .compare-tag {
  color: #dc2626;
}

.mantiseo-home.mantiseo-home--nontechnical .after .compare-tag {
  color: var(--feat-green);
}

.mantiseo-home.mantiseo-home--nontechnical .compare-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mantiseo-home.mantiseo-home--nontechnical .before h3 {
  color: #7f1d1d;
}

.mantiseo-home.mantiseo-home--nontechnical .after h3 {
  color: var(--feat-green);
}

.mantiseo-home.mantiseo-home--nontechnical .compare-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mantiseo-home.mantiseo-home--nontechnical .ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.mantiseo-home.mantiseo-home--nontechnical .before .ci {
  color: #7f1d1d;
}

.mantiseo-home.mantiseo-home--nontechnical .after .ci {
  color: var(--feat-green);
}

.mantiseo-home.mantiseo-home--nontechnical .ci-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.mantiseo-home.mantiseo-home--nontechnical .before .ci-dot {
  background: #ef4444;
}

.mantiseo-home.mantiseo-home--nontechnical .after .ci-dot {
  background: var(--green);
}

.mantiseo-home.mantiseo-home--nontechnical .deal {
  background: var(--ink);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.mantiseo-home.mantiseo-home--nontechnical .deal::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(143, 211, 60, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--sans);
}

.mantiseo-home.mantiseo-home--nontechnical .deal-inner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-inner h2 em {
  font-style: italic;
  color: var(--green-mid);
}

.mantiseo-home.mantiseo-home--nontechnical .deal-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-pill {
  background: var(--green);
  color: #111110;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-copy strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 615px;
  text-align: left;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-perk {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-fine {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.6;
}

.mantiseo-home.mantiseo-home--nontechnical .who {
  background: var(--cream);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mantiseo-home.mantiseo-home--nontechnical .who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.mantiseo-home.mantiseo-home--nontechnical .who-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.mantiseo-home.mantiseo-home--nontechnical .who-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.mantiseo-home.mantiseo-home--nontechnical .who-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mantiseo-home.mantiseo-home--nontechnical .who-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.mantiseo-home.mantiseo-home--nontechnical .faq {
  background: var(--white);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.mantiseo-home.mantiseo-home--nontechnical .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.mantiseo-home.mantiseo-home--nontechnical .faq-item {
  padding: 26px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
  cursor: default;
}

.mantiseo-home.mantiseo-home--nontechnical .faq-item:last-child {
  border-bottom: none;
}

.mantiseo-home.mantiseo-home--nontechnical .faq-item:hover {
  background: var(--cream);
}

.mantiseo-home.mantiseo-home--nontechnical .faq-q {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.35;
}

.mantiseo-home.mantiseo-home--nontechnical .faq-a {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.75;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-cta {
  background: var(--green-bg);
  border-top: 1px solid var(--green-border);
  padding: 80px 32px;
  text-align: center;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-cta h2 em {
  font-style: italic;
  color: var(--green);
}

.mantiseo-home.mantiseo-home--nontechnical .footer-cta > p {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 32px;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-form {
  display: inline-flex;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow);
  max-width: 100%;
  text-align: left;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-fine {
  font-size: 13px;
  color: var(--ink-4);
  margin-top: 12px;
}

.mantiseo-home.mantiseo-home--nontechnical footer.nt-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

.mantiseo-home.mantiseo-home--nontechnical footer.nt-footer .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mantiseo-home.mantiseo-home--nontechnical footer.nt-footer .footer-logo {
  height: auto;
  width: auto;
  display: block;
  max-width: 180px;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-nav a {
  font-size: 13px;
  color: var(--ink-4);
  text-decoration: none;
  transition: color 0.15s;
}

.mantiseo-home.mantiseo-home--nontechnical .footer-nav a:hover {
  color: var(--ink);
}

.mantiseo-home.mantiseo-home--nontechnical .footer-cr {
  font-size: 13px;
  color: var(--ink-4);
}

.mantiseo-home.mantiseo-home--nontechnical .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mantiseo-home.mantiseo-home--nontechnical .reveal.in {
  opacity: 1;
  transform: none;
}

/* Gravity Forms */
.mantiseo-home.mantiseo-home--nontechnical .gform_footer,
.mantiseo-home.mantiseo-home--nontechnical .gform_page_footer {
  margin-block-start: 0 !important;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform {
  --gf-color-primary: #8fd33c;
  --gf-color-primary-rgb: 143, 211, 60;
  --gf-color-primary-contrast: #111110;
  --gf-color-primary-contrast-rgb: 17, 17, 16;
  --gf-color-primary-darker: #6fb82e;
  --gf-color-in-ctrl-primary: #8fd33c;
  --gf-color-in-ctrl-primary-rgb: 143, 211, 60;
  --gf-color-in-ctrl-primary-contrast: #111110;
  --gf-color-in-ctrl-primary-contrast-rgb: 17, 17, 16;
  --gf-color-in-ctrl-primary-darker: #6fb82e;
  --gf-ctrl-btn-bg-color-primary: #8fd33c;
  --gf-ctrl-btn-bg-color-hover-primary: #a3e052;
  --gf-ctrl-btn-bg-color-focus-primary: #8fd33c;
  --gf-ctrl-btn-color-primary: #111110;
  --gf-ctrl-btn-border-color-primary: transparent;
  --gf-ctrl-btn-shadow: none;
  --gf-ctrl-btn-shadow-hover: none;
  --gf-ctrl-btn-shadow-focus: none;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper {
  margin: 0;
  max-width: none;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_heading,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_title,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_description,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_heading,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_title,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_description,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_heading,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_title,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_description {
  margin: 0;
  padding: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform form,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_body,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_body {
  flex: 1 1 160px;
  min-width: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_footer,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_body {
  flex: 1 1 160px;
  min-width: 0;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gfield_label,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gfield_label {
  color: var(--ink-3);
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .ginput_container input:not([type="checkbox"]):not([type="radio"]),
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .ginput_container textarea,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .ginput_container input:not([type="checkbox"]):not([type="radio"]),
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .ginput_container textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 9px 12px;
  width: 100%;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .ginput_container input::placeholder,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .ginput_container input::placeholder {
  color: var(--ink-4);
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gfield_label {
  color: rgba(255, 255, 255, 0.55);
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .ginput_container input:not([type="checkbox"]):not([type="radio"]),
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .ginput_container textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--white);
  padding: 9px 14px;
  width: 100%;
}

.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .ginput_container input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper button[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper .gform_button,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper .gform-theme-button,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper button[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper .gform_button,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper .gform-theme-button,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper button[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper .gform_button,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper .gform-theme-button {
  background-color: #8fd33c !important;
  background-image: none !important;
  color: #111110 !important;
  border: none !important;
  box-shadow: none !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 11px 20px !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background-color 0.15s;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper input[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper button[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper .gform_button:hover,
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform .gform_wrapper .gform-theme-button:hover,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper input[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper button[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper .gform_button:hover,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform .gform_wrapper .gform-theme-button:hover,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper input[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper button[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper .gform_button:hover,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform .gform_wrapper .gform-theme-button:hover {
  background-color: #a3e052 !important;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform button[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform button[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform input[type="submit"],
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform button[type="submit"] {
  background-color: #8fd33c !important;
  color: #111110 !important;
}

.mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform input[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform input[type="submit"]:hover,
.mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform input[type="submit"]:hover {
  background-color: #a3e052 !important;
}

/* GeneratePress: full-bleed static front */
body.mantiseo-static-front #page,
body.mantiseo-static-front .site-content,
body.mantiseo-static-front .content-area,
body.mantiseo-static-front .site-main {
  max-width: none !important;
  width: 100%;
  padding: 0;
  margin: 0;
}

body.mantiseo-static-front .inside-article {
  padding: 0;
  margin: 0;
}

@media (max-width: 700px) {
  .mantiseo-home.mantiseo-home--nontechnical .feels-grid,
  .mantiseo-home.mantiseo-home--nontechnical .what-grid,
  .mantiseo-home.mantiseo-home--nontechnical .compare-grid,
  .mantiseo-home.mantiseo-home--nontechnical .who-grid {
    grid-template-columns: 1fr;
  }

  .mantiseo-home.mantiseo-home--nontechnical nav {
    padding: 0 16px;
  }

  .mantiseo-home.mantiseo-home--nontechnical .nav-link {
    display: none;
  }

  .mantiseo-home.mantiseo-home--nontechnical footer.nt-footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .mantiseo-home.mantiseo-home--nontechnical .hero-form,
  .mantiseo-home.mantiseo-home--nontechnical .deal-form {
    flex-direction: column;
  }

  .mantiseo-home.mantiseo-home--nontechnical .hero-form.mantiseo-home__gform form,
  .mantiseo-home.mantiseo-home--nontechnical .deal-form.mantiseo-home__gform form,
  .mantiseo-home.mantiseo-home--nontechnical .footer-form.mantiseo-home__gform form {
    flex-direction: column;
  }

  .mantiseo-home.mantiseo-home--nontechnical .deal-box {
    flex-direction: column;
    text-align: center;
  }

  .mantiseo-home.mantiseo-home--nontechnical .hero {
    padding: 64px 20px 56px;
  }
}
