﻿:root {
  --blue: #004ea7;
  --blue-dark: #003f8a;
  --cyan: #059bd3;
  --green: #10b98f;
  --orange: #f18925;
  --yellow: #ffd85a;
  --ink: #22242d;
  --muted: #5d6573;
  --line: #dbe3ec;
  --pale: #eef3f8;
  --gray-bg: #e7e9ed;
  --dark: #252630;
  --white: #fff;
  --shadow: 0 10px 24px rgba(20, 30, 45, .15);
  --soft-shadow: 0 4px 12px rgba(20, 30, 45, .14);
  --container: 1200px;
  --design-container: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 75px;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  background: #fff;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  min-height: 75px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 30px;
  min-width: 510px;
}

.brand img {
  width: 230px;
  height: auto;
}

.brand span {
  font-size: 14px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  padding: 0 24px;
  font-size: 15px;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a + a {
  position: relative;
}

.nav-links a + a::before {
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: #1d1e25;
  content: "";
  transform: translateY(-50%);
}

.header-phone {
  display: grid;
  grid-template-columns: 28px auto auto;
  align-items: center;
  column-gap: 8px;
  padding-right: 26px;
  white-space: nowrap;
}

.header-phone svg,
.header-contact svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone strong {
  font-size: 30px;
  line-height: 1;
}

.header-phone small {
  align-self: end;
  margin-left: 4px;
  font-size: 12px;
  color: #333743;
}

.header-contact {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 270px;
  padding: 0 28px;
  color: #fff;
  background: var(--blue);
  font-size: 18px;
}

.header-contact span {
  margin-left: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 34px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 850px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .1)),
    url("assets/hero-bg-designer.webp") center top / cover no-repeat;
  background-attachment: scroll, fixed;
}

.hero-inner {
  width: min(1720px, calc(100% - 120px));
  min-height: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 92px 0 118px;
}

.hero-copy {
  max-width: 980px;
  min-width: 0;
}

.hero-kicker {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.hero h1 {
  margin-top: 34px;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.hero p:last-child {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(14px, 1.1vw, 19px);
  line-height: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.hero-yellow {
  color: var(--yellow);
  font-weight: 900;
}

.hero-result {
  display: inline;
  padding: .08em .32em .12em;
  border-radius: 4px;
  background: rgba(0, 83, 175, .78);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 900;
}

.formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.formula-large {
  position: relative;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: min(1040px, calc(100vw - 120px));
  aspect-ratio: 2323 / 238;
  min-height: 0;
  background: url("assets/hero-formula-designer.png") left center / contain no-repeat;
}

.formula-large > * {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.formula-total {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(44px, 5.3vw, 86px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.formula-total.dark,
.formula-mark.dark {
  color: #111;
  text-shadow: none;
}

.formula-mark {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(32px, 4vw, 70px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  margin: 0 -5px;
}

.formula-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 32px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(34px, 4.3vw, 72px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
}

.formula-pill > span {
  display: inline-block;
  transform: translateY(-.18em);
}

.formula-pill.orange {
  background: var(--orange);
}

.formula-pill.cyan {
  background: var(--cyan);
}

.formula-pill.green {
  background: var(--green);
}

.hero .formula-total {
  font-size: clamp(52px, 5.2vw, 78px);
}

.hero .formula-pill {
  gap: 14px;
  min-height: 76px;
  padding: 0 26px;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: .94;
}

.hero .formula-mark {
  font-size: clamp(38px, 4vw, 58px);
}

.formula-large .formula-pill::before {
  content: "";
  flex: 0 0 auto;
  width: .82em;
  height: .82em;
  transform: translateY(.02em);
  background: currentColor;
  opacity: .72;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.formula-large .formula-pill.orange::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 7h20a4 4 0 0 1 4 4v26a4 4 0 0 1-4 4H16a4 4 0 0 1-4-4V11a4 4 0 0 1 4-4Z'/%3E%3Cpath d='M18 13h16v7H18zM19 27h3M27 27h3M35 27h1M19 33h3M27 33h3M35 33h1'/%3E%3Cpath d='M7 30V17M7 17l-5 5M7 17l5 5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 7h20a4 4 0 0 1 4 4v26a4 4 0 0 1-4 4H16a4 4 0 0 1-4-4V11a4 4 0 0 1 4-4Z'/%3E%3Cpath d='M18 13h16v7H18zM19 27h3M27 27h3M35 27h1M19 33h3M27 33h3M35 33h1'/%3E%3Cpath d='M7 30V17M7 17l-5 5M7 17l5 5'/%3E%3C/g%3E%3C/svg%3E");
}

.formula-large .formula-pill.cyan::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='17' cy='11' r='4'/%3E%3Cpath d='M10 22a7 7 0 0 1 14 0v12h-4l-1 10h-4l-1-10h-4Z'/%3E%3Ccircle cx='33' cy='11' r='4'/%3E%3Cpath d='M26 22a7 7 0 0 1 14 0v12h-4l-1 10h-4l-1-10h-4Z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='17' cy='11' r='4'/%3E%3Cpath d='M10 22a7 7 0 0 1 14 0v12h-4l-1 10h-4l-1-10h-4Z'/%3E%3Ccircle cx='33' cy='11' r='4'/%3E%3Cpath d='M26 22a7 7 0 0 1 14 0v12h-4l-1 10h-4l-1-10h-4Z'/%3E%3C/g%3E%3C/svg%3E");
}

.formula-large .formula-pill.green::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 5v28M17 12l7-7 7 7'/%3E%3Cpath d='M8 25c0 8 7 15 16 15 7 0 13-4 15-10M40 20c-2-7-8-12-16-12-5 0-10 2-13 6'/%3E%3Cpath d='M33 29h8v8M15 19H7v-8'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 5v28M17 12l7-7 7 7'/%3E%3Cpath d='M8 25c0 8 7 15 16 15 7 0 13-4 15-10M40 20c-2-7-8-12-16-12-5 0-10 2-13 6'/%3E%3Cpath d='M33 29h8v8M15 19H7v-8'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-actions {
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
  flex: 0 0 430px;
  margin-top: 160px;
}

.primary-button,
.outline-button,
.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid #fff;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .14);
  transition: transform .18s ease, filter .18s ease;
}

.outline-button {
  background: rgba(37, 38, 48, .88);
}

.primary-button:hover,
.outline-button:hover,
.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.primary-button span,
.outline-button span,
.submit-button span {
  margin-left: auto;
  color: rgba(255, 255, 255, .6);
  font-size: 30px;
  line-height: 1;
}

.section-overlap {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 48px));
  margin: -46px auto 0;
  padding: 70px 70px 56px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-label,
.bubble-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: min(590px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.floating-label {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.floating-label::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid var(--blue);
  content: "";
  transform: translateX(-50%);
}

.section-lead {
  margin: 0 auto;
  color: #282a33;
  font-size: clamp(16px, 1.35vw, 21px);
  text-align: center;
}

.issues .section-lead {
  margin-bottom: 38px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.issue-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 200px;
  padding: 28px 36px;
  border-radius: 8px;
  background: #ddd;
}

.issue-card img {
  width: 138px;
  height: 138px;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
}

.issue-card h2 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.45;
}

.issue-card p {
  font-size: 15px;
  line-height: 1.75;
}

.blue-section {
  color: #fff;
  background: var(--blue);
}

.craft {
  margin-top: 74px;
  padding: 72px 24px 82px;
}

.split {
  display: grid;
  grid-template-columns: 460px minmax(0, 600px);
  align-items: center;
  gap: 0;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.split-photo {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
}

.split-copy {
  display: grid;
  gap: 24px;
  margin-left: 60px;
}

.white-kicker {
  color: #fff;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.split-copy h2 {
  color: var(--blue);
  font-size: clamp(32px, 2.25vw, 43px);
  font-weight: 900;
  line-height: 1.32;
  margin-left: -60px;
}

.split-copy h2 span {
  display: table;
  margin-bottom: 9px;
  padding: 0 10px;
  background: #fff;
  white-space: nowrap;
}

.split-copy p {
  font-size: 16px;
  line-height: 2;
}

.split-copy .yellow-text {
  color: var(--yellow);
  font-size: 19px;
  line-height: 1.7;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  width: min(var(--design-container), 100%);
  margin: 58px auto 0;
}

.point-card {
  position: relative;
  min-height: 250px;
  padding: 56px 28px 28px;
  color: var(--ink);
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.point-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
}

.point-card > span {
  position: absolute;
  left: 16px;
  top: 13px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
}

.point-card > span strong {
  font-size: 32px;
}

.point-card.orange {
  color: var(--orange);
}

.point-card.cyan {
  color: var(--cyan);
}

.point-card.green {
  color: var(--green);
}

.simple-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #7b828a;
  background: #edf0f3;
}

.simple-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.simple-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.point-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.4;
}

.point-card p {
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(930px, 100%);
  margin: 58px auto 0;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, .9);
}

.summary-line p {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.summary-line p span {
  color: var(--yellow);
}

.mini-bulb {
  width: 50px;
  height: 50px;
  background: url("assets/icon-bulb.png") center / contain no-repeat;
}

.revenue {
  padding: 86px 24px 0;
  background: #fff;
}

.section-heading {
  display: grid;
  gap: 18px;
  width: min(var(--container), 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading > p:first-child {
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.4;
}

.section-heading .formula-total {
  font-size: clamp(42px, 4vw, 62px);
}

.section-heading .formula {
  position: relative;
  width: min(820px, 100%);
  aspect-ratio: 820 / 94;
  margin: 0 auto;
  background: url("assets/revenue-formula.webp") center / contain no-repeat;
}

.section-heading .formula > * {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section-heading .formula-mark {
  font-size: clamp(32px, 3vw, 48px);
}

.section-heading .formula-pill {
  min-height: 58px;
  padding: 0 24px;
  font-size: clamp(30px, 3.2vw, 48px);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.revenue-card {
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: visible;
}

.revenue-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 20px 112px 20px 42px;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background: var(--blue);
}

.revenue-head::after {
  position: absolute;
  right: 22px;
  top: -4px;
  width: 132px;
  height: 78px;
  background: center / contain no-repeat;
  content: "";
}

.revenue-card:nth-child(1) .revenue-head::after {
  background-image: url("assets/revenue-head-price-clean.png");
}

.revenue-card:nth-child(2) .revenue-head::after {
  top: -4px;
  width: 142px;
  height: 78px;
  background-image: url("assets/revenue-head-repeat-clean.png");
}

.revenue-head strong {
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.revenue-head span {
  font-size: 22px;
  line-height: 1.35;
  white-space: nowrap;
}

.revenue-card > p {
  padding: 42px 46px 28px;
  font-size: 17px;
  line-height: 2;
}

.revenue-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 112px;
  margin: 0 46px 24px;
  padding: 22px 116px 22px 56px;
  border-radius: 8px;
  background: #e5eef7;
  font-size: 17px;
  line-height: 1.6;
}

.revenue-card li::before {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: url("assets/icon-check.png") center / contain no-repeat;
  content: "";
  transform: translateY(-50%);
}

.revenue-card li::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 82px;
  height: 82px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.revenue-card:nth-child(1) li:nth-child(1)::after {
  background-image: url("assets/revenue-li-01-clean.png");
}

.revenue-card:nth-child(1) li:nth-child(2)::after {
  background-image: url("assets/revenue-li-02-clean.png");
}

.revenue-card:nth-child(1) li:nth-child(3)::after {
  background-image: url("assets/revenue-li-03-clean.png");
}

.revenue-card:nth-child(2) li:nth-child(1)::after {
  background-image: url("assets/revenue-li-04-clean.png");
}

.revenue-card:nth-child(2) li:nth-child(2)::after {
  background-image: url("assets/revenue-li-05-clean.png");
}

.revenue-card:nth-child(2) li:nth-child(3)::after {
  background-image: url("assets/revenue-li-06-clean.png");
}

.solve-banner {
  position: relative;
  width: min(1120px, 100%);
  margin: 80px auto 0;
  min-height: 315px;
  padding: 0;
  background: url("assets/solve-banner.webp") center top / contain no-repeat;
  text-align: center;
}

.solve-banner p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.solve-banner p span {
  color: var(--blue);
}

.solve-banner::after {
  display: none;
  content: none;
}

.service {
  padding: 56px 24px 98px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--design-container), 100%);
  margin: 0 auto;
  background: #fff;
  color: var(--ink);
}

.service-grid article {
  min-height: 300px;
  padding: 54px 42px 42px;
  border-right: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  text-align: center;
}

.service-grid article:nth-child(3n) {
  border-right: 0;
}

.service-grid article:nth-last-child(-n+3) {
  border-bottom: 0;
}

.line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  color: #2e333b;
  line-height: 1;
}

.line-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.service-grid h3 {
  font-size: 22px;
  line-height: 1.45;
}

.service-grid p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.reasons {
  padding: 0 24px 96px;
  background: var(--gray-bg);
}

.bubble-title {
  position: relative;
  top: -32px;
  width: min(620px, calc(100% - 48px));
  min-height: 76px;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.bubble-title::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #fff;
  content: "";
  transform: translateX(-50%);
}

.reasons > .section-lead {
  width: min(720px, 100%);
  margin: 6px auto 48px;
  line-height: 1.7;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 20px;
  width: min(1002px, 100%);
  margin: 0 auto;
}

.reason-grid article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 22px;
  min-height: 231px;
  padding: 38px 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.reason-grid strong {
  grid-row: 1 / span 2;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.1;
}

.reason-grid h3 {
  font-size: 21px;
  line-height: 1.45;
}

.reason-grid h3 span {
  background: linear-gradient(transparent 60%, rgba(255, 216, 90, .9) 60%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.reason-grid p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
}

.support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(420px, 500px);
  gap: 80px;
  padding: 110px max(24px, calc((100vw - 1050px) / 2)) 100px;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, .72), rgba(246, 249, 252, .96)),
    url("assets/support-photo-designer.webp") left top / 100% auto no-repeat,
    #f4f8fb;
}

.support-copy {
  align-self: center;
  max-width: 560px;
  padding-top: 90px;
}

.support-copy h2 {
  display: grid;
  gap: 9px;
  color: #fff;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.2;
}

.support-copy h2 span {
  display: table;
  padding: 0 8px;
  background: var(--blue);
}

.support-sub {
  margin: 20px 0 28px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.35;
}

.support-copy p:last-child {
  font-size: 16px;
  line-height: 2;
}

.chat-window {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f9fafc;
  box-shadow: var(--shadow);
}

.chat-window::before {
  position: absolute;
  left: -14px;
  top: -14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.chat-head {
  padding: 16px 24px;
  color: #fff;
  background: var(--blue);
  font-size: 15px;
}

.message {
  width: 78%;
  margin: 18px 22px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.message.dark {
  color: #fff;
  background: var(--dark);
}

.message.light {
  margin-left: auto;
  border: 1px solid #d8dce2;
  background: #fff;
}

.message span {
  display: block;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .17);
}

.support-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(var(--design-container), 100%);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.support-features article {
  min-height: 276px;
  padding: 44px 34px 32px;
  border: 2px solid #0b518f;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.support-features div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
}

.support-features div img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.support-features h3 {
  font-size: 20px;
  line-height: 1.45;
}

.support-features p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
  text-align: left;
}

.demo {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 424px);
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 95px 24px 96px;
  color: #fff;
  background: var(--dark);
}

.demo img {
  width: 520px;
  mix-blend-mode: normal;
}

.demo h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.3;
}

.demo p {
  margin: 18px 0 40px;
  font-size: 16px;
  line-height: 1.9;
}

.demo .primary-button {
  width: 100%;
  max-width: 430px;
}

.faq {
  display: grid;
  grid-template-columns: 260px minmax(0, 740px);
  justify-content: center;
  gap: 70px;
  padding: 88px 24px 98px;
  background: #fff;
}

.faq h2 {
  padding-top: 12px;
  font-size: 30px;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  gap: 28px;
}

.faq-list article {
  background: #eef0f4;
}

.faq-list h3 {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 70px;
  padding: 18px 28px;
  color: #fff;
  background: var(--dark);
  font-size: 18px;
  line-height: 1.5;
}

.faq-list p {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.8;
}

.faq-list span {
  font-size: 20px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(360px, 38%) 1fr;
  min-height: 690px;
  color: #fff;
  background: var(--dark);
}

.contact-info {
  padding: 78px 80px 70px max(80px, calc((100vw - 1200px) / 2));
  background: var(--blue);
}

.contact-info h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.35;
}

.contact-info > p {
  margin-top: 4px;
  font-size: 15px;
}

.phone-box {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(360px, 100%);
  margin: 56px 0 110px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, .7);
  text-align: center;
}

.phone-box span {
  font-size: 17px;
}

.phone-box strong {
  font-size: 36px;
  line-height: 1.1;
}

.phone-box small {
  font-size: 13px;
}

address {
  font-style: normal;
  line-height: 1.8;
}

address strong {
  display: block;
  margin-bottom: 16px;
  font-size: 21px;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  font-size: 13px;
  white-space: nowrap;
}

.footer-links a + a {
  position: relative;
}

.footer-links a + a::before {
  position: absolute;
  left: -9px;
  top: 50%;
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, .8);
  content: "";
  transform: translateY(-50%);
}

.copyright {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.contact-form {
  padding: 78px max(80px, calc((100vw - 1200px) / 2)) 70px 84px;
  background: var(--dark);
}

.contact-form h3 {
  margin-bottom: 28px;
  font-size: 23px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  padding: 0 18px;
  color: #fff;
  background: #44454f;
  outline: 1px solid transparent;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, .32);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline-color: #7ba8e7;
}

.form-grid textarea {
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.zip span {
  display: flex;
  gap: 12px;
}

.zip input {
  max-width: 145px;
}

.zip button {
  min-width: 132px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.submit-button {
  width: 360px;
  margin-top: 34px;
  border-color: var(--blue);
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 78, 167, .94);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, filter .18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: brightness(1.08);
}

.back-to-top span {
  width: 17px;
  height: 17px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.blog-page {
  background: #f4f7fb;
}

.blog-hero {
  min-height: 360px;
  padding: 90px 60px 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 35, 82, .92), rgba(0, 78, 167, .78)),
    url("assets/hero-bg-designer.webp") center / cover no-repeat;
}

.blog-hero > div,
.blog-list,
.blog-article {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.blog-eyebrow {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 15px;
  letter-spacing: 0;
}

.blog-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.25;
}

.blog-hero p:last-child {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 20px);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 56px 0 84px;
}

.blog-card a {
  display: grid;
  overflow: hidden;
  min-height: 430px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 26px 30px 30px;
}

.blog-card span {
  width: fit-content;
  padding: 3px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
}

.blog-card time,
.blog-article time {
  color: var(--muted);
  font-size: 14px;
}

.blog-card h2 {
  font-size: 23px;
  line-height: 1.45;
}

.blog-card p {
  color: var(--muted);
  font-size: 15px;
}

.article-main {
  padding: 64px 0 90px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 320px;
  gap: 32px;
  align-items: start;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.blog-article {
  max-width: 860px;
  width: 100%;
  margin: 0;
  padding: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.blog-article h1 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.35;
}

.blog-article h2 {
  margin-top: 42px;
  padding-left: 18px;
  border-left: 6px solid var(--blue);
  font-size: 26px;
  line-height: 1.45;
}

.blog-article h3 {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.5;
}

.blog-article p {
  margin-top: 18px;
  color: #343944;
  font-size: 17px;
}

.article-eyecatch {
  display: block;
  width: 100%;
  margin: 28px 0 34px;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.article-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 1.3em;
  color: #343944;
  font-size: 17px;
  line-height: 1.9;
}

.article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 46px;
  padding: 0 30px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 16px;
}

.article-sidebar {
  position: sticky;
  top: 99px;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.article-sidebar h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.4;
}

.article-sidebar a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 6px;
  color: var(--ink);
  background: #f5f8fc;
  font-size: 14px;
  line-height: 1.55;
}

.article-sidebar a:hover,
.article-sidebar a.is-current {
  color: #fff;
  background: var(--blue);
}

.article-sidebar span {
  color: var(--blue);
  font-size: 12px;
}

.article-sidebar a:hover span,
.article-sidebar a.is-current span {
  color: var(--yellow);
}

.article-sidebar .sidebar-contact {
  margin-top: 6px;
  color: #fff;
  background: var(--orange);
  text-align: center;
}

.legal-page {
  background: #f4f7fb;
}

.legal-main {
  padding: 64px 0 90px;
}

.legal-content {
  width: min(920px, calc(100% - 64px));
  margin: 0 auto;
  padding: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.legal-content h1 {
  margin-bottom: 28px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.35;
}

.legal-content h2 {
  margin-top: 34px;
  padding-left: 16px;
  border-left: 5px solid var(--blue);
  font-size: 22px;
  line-height: 1.45;
}

.legal-content p {
  margin-top: 16px;
  color: #343944;
  font-size: 16px;
}

.legal-table {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  background: #f0f5fb;
  color: var(--blue);
}

.legal-note {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .brand {
    gap: 12px;
    min-width: 410px;
    padding-left: 22px;
  }

  .brand img {
    width: 200px;
  }

  .brand span {
    font-size: 12px;
  }

  .nav-links {
    gap: 18px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nav-links a + a::before {
    left: -11px;
  }

  .header-phone {
    grid-template-columns: 24px auto;
    padding-right: 16px;
  }

  .header-phone strong {
    font-size: 24px;
  }

  .header-phone small {
    display: none;
  }

  .header-contact {
    gap: 14px;
    min-width: 210px;
    padding: 0 18px;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-top: 70px;
  }

  .site-header {
    position: fixed;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
    min-width: auto;
    min-height: 70px;
    padding: 12px 250px 12px 20px;
  }

  .brand img {
    width: 220px;
  }

  .nav-links,
  .header-phone {
    display: none;
  }

  .header-contact {
    position: absolute;
    right: 0;
    top: 0;
    min-height: 70px;
    min-width: 230px;
  }

  .hero-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 760px;
    display: grid;
    align-content: center;
    padding: 80px 0 130px;
  }

  .hero-actions {
    width: 100%;
    max-width: 430px;
    margin-top: 10px;
    flex: none;
  }
}

@media (max-width: 1080px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    background-attachment: scroll, scroll;
  }

  .hero-inner {
    padding: 80px 0 130px;
  }

  .section-overlap {
    padding: 62px 30px 40px;
  }

  .issue-grid,
  .revenue-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .support,
  .demo,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .split-copy {
    margin-left: 0;
  }

  .split-copy h2 {
    margin-left: 0;
  }

  .point-grid,
  .service-grid,
  .support-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid article:nth-child(3n) {
    border-right: 1px solid var(--blue);
  }

  .service-grid article:nth-child(2n) {
    border-right: 0;
  }

  .service-grid article:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--blue);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .support {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, .82), rgba(246, 249, 252, .98)),
      url("assets/support-photo-designer.webp") left top / 100% auto no-repeat,
      #f4f8fb;
  }

  .support-features {
    width: 100%;
  }

  .contact-info,
  .contact-form {
    padding: 56px 28px;
  }
}

@media (max-width: 720px) {
  main,
  section,
  article,
  div {
    min-width: 0;
  }

  p,
  h1,
  h2,
  h3,
  li {
    overflow-wrap: anywhere;
  }

  .brand {
    padding-right: 20px;
  }

  .brand img {
    width: 170px;
  }

  .brand span {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 640px;
    padding: 56px 0 110px;
  }

  .formula-large {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 358px;
    min-height: 0;
    aspect-ratio: auto;
    background: none;
  }

  .formula-large > * {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .formula-total {
    width: auto;
    flex-basis: 100%;
    font-size: 44px;
  }

  .formula-pill {
    min-height: 44px;
    padding: 0 18px;
    font-size: 27px;
  }

  .formula-mark {
    font-size: 28px;
  }

  .hero-actions {
    max-width: none;
  }

  .section-overlap {
    width: calc(100% - 24px);
    margin-top: -54px;
    padding: 56px 16px 26px;
  }

  .section-heading,
  .issue-grid,
  .point-grid,
  .revenue-grid,
  .service-grid,
  .reason-grid,
  .support-features {
    width: 100%;
    max-width: 100%;
  }

  .floating-label,
  .bubble-title {
    min-height: 52px;
    padding: 8px 18px;
  }

  .issue-card {
    grid-template-columns: 94px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 20px 16px;
  }

  .issue-card img {
    width: 84px;
    height: 84px;
    border-width: 4px;
  }

  .issue-card h2 {
    font-size: 18px;
  }

  .issue-card p {
    font-size: 13px;
  }

  .craft {
    margin-top: 48px;
    padding: 58px 16px 64px;
  }

  .split {
    gap: 32px;
  }

  .split-copy h2 span {
    display: inline;
    white-space: normal;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .point-grid,
  .service-grid,
  .support-features,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .point-card {
    min-height: 250px;
  }

  .summary-line {
    align-items: flex-start;
  }

  .summary-line p {
    font-size: 28px;
    white-space: normal;
  }

  .revenue {
    padding: 58px 16px 0;
  }

  .revenue-head {
    padding: 18px 22px;
  }

  .revenue-head::after {
    display: none;
  }

  .revenue-head span {
    white-space: normal;
  }

  .revenue-card > p {
    padding: 28px 24px 20px;
  }

  .revenue-card li {
    margin: 0 22px 18px;
    padding-right: 24px;
  }

  .revenue-card li::after {
    display: none;
  }

  .service {
    padding: 42px 16px 64px;
  }

  .service-grid article,
  .service-grid article:nth-child(2n),
  .service-grid article:nth-child(3n),
  .service-grid article:nth-last-child(-n+3) {
    border-right: 0;
    border-bottom: 1px solid var(--blue);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .reason-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 24px;
  }

  .reason-grid strong {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .support {
    gap: 32px;
    padding: 70px 16px 62px;
  }

  .support-copy {
    padding-top: 40px;
  }

  .chat-window {
    font-size: 13px;
  }

  .message {
    width: auto;
  }

  .demo {
    gap: 30px;
    padding: 56px 16px 68px;
  }

  .faq {
    gap: 24px;
    padding: 56px 16px 66px;
  }

  .faq-list h3,
  .faq-list p {
    grid-template-columns: 34px 1fr;
    padding: 18px;
  }

  .contact {
    min-height: auto;
  }

  .contact-info {
    min-height: 658px;
    padding: 46px 52px 64px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-info > p {
    margin-top: 2px;
    font-size: 11px;
  }

  .phone-box {
    width: 224px;
    margin: 22px 0 62px;
    padding: 18px;
  }

  .phone-box span {
    font-size: 13px;
  }

  .phone-box strong {
    font-size: 24px;
    white-space: nowrap;
  }

  .phone-box small {
    font-size: 10px;
  }

  address {
    font-size: 12px;
  }

  address strong {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-links {
    gap: 12px;
    margin-top: 26px;
    font-size: 10px;
  }

  .copyright {
    font-size: 9px;
  }

  .zip span {
    flex-wrap: wrap;
  }

  .submit-button {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .back-to-top span {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .blog-hero {
    min-height: auto;
    padding: 54px 16px 46px;
  }

  .blog-hero > div,
  .blog-list,
  .blog-article {
    width: calc(100% - 32px);
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 56px;
  }

  .blog-card a {
    min-height: auto;
  }

  .blog-card-body {
    padding: 24px 20px;
  }

  .article-main {
    padding: 34px 0 58px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 32px);
  }

  .blog-article {
    width: 100%;
    padding: 30px 20px;
  }

  .blog-article h2 {
    font-size: 22px;
  }

  .blog-article p {
    font-size: 15px;
  }

  .article-cta {
    width: 100%;
    padding: 0 18px;
  }

  .article-sidebar {
    position: static;
    padding: 20px;
  }

  .legal-main {
    padding: 34px 0 58px;
  }

  .legal-content {
    width: calc(100% - 32px);
    padding: 30px 20px;
  }

  .legal-table {
    grid-template-columns: 1fr;
  }

  .legal-table dt {
    border-bottom: 0;
  }
}
