/* Modern typography loaded from Google Fonts: Outfit */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --ink: #0f172a;
  --muted: #60708b;
  --line: #e5e7eb;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --green: #16a34a;
  --green-soft: #ecfdf5;
  --footer: #111827;
  --radius: 24px;
  --shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

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

.nav-shell {
  width: min(1120px, calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  color: #111827;
}

.brand-mark {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #43516a;
  font-size: 15px;
  font-weight: 600;
}

.nav-links .login {
  color: var(--blue);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #4f46e5 0%, #7928ca 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(121, 40, 202, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(121, 40, 202, 0.35);
}

.button.small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  animation: float-hero 20s infinite alternate ease-in-out;
  opacity: 0.6;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle, rgba(121, 40, 202, 0.15) 0%, rgba(121, 40, 202, 0) 70%);
  top: -100px;
  left: -200px;
}

.hero::after {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0) 70%);
  bottom: -200px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes float-hero {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.05); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid #bdd5ff;
  border-radius: 999px;
  background: #f4f8ff;
  color: #1455ee;
  font-size: 14px;
  font-weight: 800;
}

.shield,
.search-icon,
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.shield {
  color: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l7 3v5c0 4.4-2.8 8.4-7 10-4.2-1.6-7-5.6-7-10V6l7-3zm-1 11.2l5-5-1.4-1.4-3.6 3.6-1.6-1.6L8 11.2l3 3z'/%3E%3C/svg%3E");
}

h1,
h2 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  max-width: 580px;
  margin: 18px 0 30px;
  font-size: 44px;
  font-weight: 800;
}

h1 span {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  color: transparent;
  background: linear-gradient(
    270deg,
    #ff007f,
    #7928ca,
    #4f46e5,
    #0ea5e9,
    #ff007f
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: fluid-gradient 6s ease infinite;
  filter: drop-shadow(0 4px 12px rgba(121, 40, 202, 0.3));
}

h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff007f, #0ea5e9);
  transform-origin: right;
  animation: modern-underline 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes fluid-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes modern-underline {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  40% {
    transform: scaleX(1);
    transform-origin: left;
  }
  40.1% {
    transform: scaleX(1);
    transform-origin: right;
  }
  80%, 100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-5px);
}

.search-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.search-box {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #42526c;
  font-size: 14px;
  white-space: nowrap;
}

.search-icon,
.icon.search {
  color: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 3a7.5 7.5 0 015.95 12.06l4.25 4.24-1.4 1.4-4.24-4.25A7.5 7.5 0 1110.5 3zm0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11z'/%3E%3C/svg%3E");
}

.status-pill {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #16823b;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.product-body {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 16px;
  padding: 16px;
}

.profiles h3,
.response-panel h3 {
  margin-bottom: 11px;
  font-size: 16px;
}

.profile-card,
.email-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fafb;
}

.profile-card + .email-card,
.email-card + .profile-card {
  margin-top: 10px;
}

.profile-card strong,
.email-card strong {
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 1.05;
}

.profile-card p,
.email-card p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.2;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.avatar.blue {
  background: #dbeafe;
}

.avatar.green {
  background: #dcfce7;
}

.tag {
  margin-left: auto;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.blue-tag {
  background: #eef2ff;
  color: var(--blue);
}

.green-tag {
  background: var(--green);
  color: #fff;
}

.soft-green {
  background: var(--green-soft);
  color: var(--green);
}

.email-card {
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.email-card p {
  color: #16823b;
  font-weight: 600;
}

.response-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-metric,
.progress-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.mini-metric {
  padding: 13px 11px;
}

.mini-metric strong,
.stats-grid strong {
  display: block;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.mini-metric span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
}

.green-text {
  color: var(--green) !important;
}

.blue-text {
  color: var(--blue) !important;
}

.progress-card {
  margin-top: 12px;
  padding: 13px 12px;
}

.progress-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
  font-size: 13px;
}

.progress-card b {
  color: var(--blue);
}

.bar {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}

.bar + .bar {
  margin-top: 7px;
}

.bar i {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.bar.pale i {
  width: 78%;
  background: #d1fae5;
}

.bar.bluebar i {
  width: 56%;
  background: #dbeafe;
}

.split-section {
  padding: 84px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.split-grid h2 {
  max-width: 560px;
}

.split-grid p {
  margin-top: 24px;
  max-width: 640px;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.line-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 84px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.04);
}

.line-card p {
  margin-top: 6px;
  font-size: 16px;
}

.icon.mail {
  color: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16a2 2 0 012 2v10a2 2 0 01-2 2H4a2 2 0 01-2-2V7a2 2 0 012-2zm0 3.2V17h16V8.2l-8 5.2-8-5.2zm1.6-1.2l6.4 4.2L18.4 7H5.6z'/%3E%3C/svg%3E");
}

.icon.clock {
  color: var(--green);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 110 20 10 10 0 010-20zm0 2a8 8 0 100 16 8 8 0 000-16zm1 4v4.15l3.2 1.9-1 1.72L11 13.25V8h2z'/%3E%3C/svg%3E");
}

.icon.send {
  color: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 3.2l-7 18a1 1 0 01-1.86.02l-3.1-7.1-7.08-3.06a1 1 0 01.02-1.86l18-7a.8.8 0 011.02 1.02zM6 10.2l4.7 2.03L16.8 6.1 6 10.2zm6 3.1l2 4.7 4.1-10.78L12 13.3z'/%3E%3C/svg%3E");
}

.icon.inbox {
  color: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 4h13.2l3.4 7v7a2 2 0 01-2 2H4a2 2 0 01-2-2v-7l3.4-7zm1.2 2L4.2 11H9l1.4 2h3.2l1.4-2h4.8l-2.4-5H6.6zM4 13v5h16v-5h-3.9l-1.4 2H9.3l-1.4-2H4z'/%3E%3C/svg%3E");
}

.section {
  padding: 104px 0;
  background: #fff;
}

.section.muted {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading p {
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.steps article,
.wide-list article,
.use-grid article,
.stats-grid article,
.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.feature-card {
  min-height: 238px;
  padding: 26px;
}

.feature-card .icon,
.feature-card > i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 20px;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  margin-top: 12px;
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 238px;
  padding: 22px;
}

.steps span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 22px;
}

.steps h3,
.steps p {
  margin-top: 12px;
}

.steps p {
  font-size: 15px;
}

.wide-list {
  display: grid;
  gap: 18px;
}

.wide-list article {
  min-height: 124px;
  padding: 30px 34px;
}

.wide-list p {
  margin-top: 16px;
}

.left-title {
  margin-bottom: 46px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.use-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0 20px 20px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.use-grid img {
  width: calc(100% + 40px);
  height: 120px;
  margin: 0 -20px 0;
  display: block;
  object-fit: cover;
}

.use-grid i {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin: -20px 0 16px;
  border-radius: 10px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.use-grid h3 {
  font-size: 18px;
}

.use-grid p {
  margin-top: 10px;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid article {
  padding: 32px;
  min-height: 170px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.stats-grid strong {
  font-size: 58px;
}

.stats-grid p {
  margin-top: 12px;
}

.control-section .container {
  max-width: 1040px;
}

.control-section h2,
.control-section p {
  max-width: 920px;
}

.control-section p {
  margin-top: 24px;
}

.control-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.control-list span {
  display: block;
  padding: 22px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.comparison {
  background: #fff;
}

.comparison-grid {
  display: grid;
  gap: 18px;
}

.comparison-grid article {
  min-height: 200px;
  padding: 36px;
  background: #f8fafc;
}

.comparison-grid p {
  margin-top: 22px;
}

.cta-section {
  padding: 72px 0 0;
  background: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 48px;
  border-radius: 24px 24px 0 0;
  background: #edf5ff;
  text-align: left;
}

.cta-box h2 {
  max-width: 640px;
  margin: 0;
  font-size: 34px;
}

.cta-box p {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 17px;
}

.button.wide {
  min-height: 46px;
  border-radius: 14px;
  font-size: 16px;
}

.cta-box span {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 70px 0 34px;
  background: var(--footer);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.8fr;
  gap: 68px;
}

.footer-brand {
  color: #fff;
  font-size: 26px;
}

.footer p {
  max-width: 780px;
  margin-top: 28px;
  color: #d1d5db;
}

.footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 12px;
  color: #d1d5db;
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9ca3af;
  font-size: 17px;
}

@media (max-width: 1040px) {
  .container,
  .nav-shell {
    width: min(100% - 40px, 860px);
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .feature-grid,
  .steps,
  .use-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .nav-shell {
    height: 78px;
  }

  .nav-shell .button {
    display: none;
  }

  .hero {
    padding: 64px 0 48px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .search-row,
  .metric-row {
    flex-direction: column;
    display: flex;
  }

  .hero-actions .button,
  .search-box,
  .status-pill {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 13px;
  }

  .product-card {
    max-width: 100%;
  }

  .search-box {
    height: auto;
    min-height: 40px;
    white-space: normal;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .email-card {
    min-width: 0;
  }

  .profile-card > div,
  .email-card > div {
    min-width: 0;
  }

  .tag {
    padding: 7px 9px;
    font-size: 11px;
  }

  .profile-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .email-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-card .tag,
  .email-card .tag {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
    max-width: 100%;
  }

  .email-card .tag {
    grid-column: 1;
  }

  .section,
  .split-section {
    padding: 72px 0;
  }

  .feature-grid,
  .steps,
  .use-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .steps article,
  .wide-list article,
  .use-grid article,
  .stats-grid article,
  .comparison-grid article {
    min-height: auto;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 24px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}





/* Reworked Framer-like trust/control sections */
.serious-section {
  padding-top: 118px;
  padding-bottom: 104px;
}

.serious-heading {
  max-width: 920px;
  margin-bottom: 64px;
}

.serious-heading h2 {
  font-size: 56px;
}

.serious-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.serious-card {
  grid-column: span 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.serious-card-wide {
  grid-column: span 3;
  min-height: 150px;
}

.serious-card:hover {
  transform: translateY(-4px);
  border-color: #cfe0ff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

.serious-card i,
.comparison-grid i {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 10px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 16px;
}

.serious-card:nth-child(2) i,
.serious-card:nth-child(4) i {
  background: #ecfdf5;
  color: var(--green);
}

.serious-card h3 {
  font-size: 18px;
}

.serious-card p {
  max-width: 430px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid #bdd5ff;
  border-radius: 999px;
  background: #f4f8ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.control-section {
  background: #fff;
}

.control-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.control-copy h2 {
  font-size: 50px;
}

.control-copy p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 20px;
}

.control-panel {
  padding: 18px;
  border: 1px solid #d9e4f7;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.control-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: #40506a;
  font-weight: 800;
}

.control-panel-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
}

.control-panel-header strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.control-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.control-checklist span {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.control-checklist span:first-child {
  grid-column: 1 / -1;
}

.control-checklist i {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 17px;
}

.control-checklist span:nth-child(2n) i {
  background: #ecfdf5;
  color: var(--green);
}

.comparison {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.comparison-shell .section-heading {
  max-width: 900px;
}

.comparison-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.comparison-grid article {
  min-height: 258px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.045);
}

.comparison-grid h3 {
  font-size: 24px;
}

.comparison-grid p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.45;
}

.comparison-grid article:nth-child(2) i {
  background: #ecfdf5;
  color: var(--green);
}

@media (max-width: 1040px) {
  .serious-heading h2 {
    font-size: 44px;
  }

  .serious-card,
  .serious-card-wide {
    grid-column: span 3;
  }

  .control-layout {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .serious-section {
    padding-top: 74px;
    padding-bottom: 72px;
  }

  .serious-heading h2,
  .control-copy h2 {
    font-size: 34px;
  }

  .serious-grid {
    grid-template-columns: 1fr;
  }

  .serious-card,
  .serious-card-wide {
    grid-column: 1;
    min-height: auto;
    padding: 26px;
  }

  .serious-card i,
  .comparison-grid i {
    margin-bottom: 24px;
  }

  .control-panel {
    padding: 12px;
    border-radius: 22px;
  }

  .control-checklist {
    grid-template-columns: 1fr;
  }

  .control-checklist span,
  .control-checklist span:first-child {
    grid-column: 1;
    min-height: auto;
  }

  .comparison-grid article {
    padding: 26px;
  }
}
