@font-face {
  font-family: Outfit;
  src: url("../fonts/outfit.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --yellow: #ffcc32;
  --cream: #fffcf2;
  --white: #fff;
  --dark: #161a1d;
  --text: #202327;
  --muted: #686d74;
  --border: #e5e6e7;
  --container-width: 1180px;
  --heading: Outfit, Arial, sans-serif;
  --body: Manrope, Arial, sans-serif;
  --shadow: 0 6px 24px #2023270b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  color: var(--dark);
  line-height: 1.12;
}
h1 {
  font-size: clamp(3.4rem, 4.5vw, 4.25rem);
  letter-spacing: -0.055em;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  letter-spacing: -0.035em;
  font-weight: 650;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  font-weight: 600;
}
p {
  margin-bottom: 20px;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #a66b00;
  outline-offset: 4px;
}
::selection {
  background: var(--yellow);
  color: var(--dark);
}
.container {
  width: min(var(--container-width), calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding: 82px 0;
}
.cream {
  background: var(--cream);
}
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #545a61;
  margin-bottom: 14px;
  line-height: 1.5;
}
.center {
  text-align: center;
}
.section-heading {
  max-width: 710px;
  margin: 0 auto 40px;
}
.section-heading p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.section-heading h2 {
  margin-bottom: 13px;
}
mark {
  background: var(--yellow);
  color: var(--dark);
  padding: 0 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  stroke-width: 1.8;
}
.brand-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: none;
}
.btn {
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 11px 21px;
  border: 1px solid var(--dark);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: #343a3e;
}
.btn-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover {
  background: #f5be1a;
  border-color: #f5be1a;
}
.btn-outline {
  background: transparent;
  border-color: #91959a;
}
.btn-outline:hover {
  background: #ffffffa8;
  border-color: var(--dark);
}
.btn-white {
  background: #fff;
}
.btn .icon {
  width: 17px;
  height: 17px;
}
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 99;
  padding: 10px 20px;
  background: var(--yellow);
}
.skip-link:focus {
  top: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffefbf5;
  border-bottom: 1px solid #ecece7;
  backdrop-filter: blur(10px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand-wordmark {
  font-family: var(--heading);
  font-size: 24px;
  letter-spacing: -0.04em;
  font-weight: 650;
  white-space: nowrap;
}
.brand-wordmark span {
  font-weight: 450;
  color: #565b60;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 47px;
  flex: 1;
  justify-content: flex-end;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  height: 76px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: #111;
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-actions .btn {
  font-size: 12px;
  min-height: 38px;
  padding: 9px 16px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  padding: 10px;
  border-radius: 3px;
}
.menu-toggle .icon {
  width: 23px;
  height: 23px;
}
.hero {
  background-color: var(--cream);
  background-image:
    linear-gradient(#8e805008 1px, transparent 1px),
    linear-gradient(90deg, #8e805008 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 68px 0 66px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 38px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  padding: 8px 0;
}
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 19px;
}
.hero-copy > p {
  max-width: 505px;
  font-size: 15px;
  line-height: 1.75;
  color: #555c62;
  margin-bottom: 28px;
}
.hero .button-row {
  margin-bottom: 25px;
}
.trust {
  display: flex;
  gap: 13px;
  align-items: center;
}
.avatar-stack {
  display: flex;
  flex: none;
  padding-left: 0;
}
.avatar-stack img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.trust p {
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  color: #646870;
}
.trust strong {
  display: block;
  color: #383c40;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding: 22px 28px 44px 0;
}
.app-window {
  border: 1px solid #e5e7e9;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 32px #191d2220;
  text-align: left;
}
.app-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #e9e9ec;
  gap: 15px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heading);
  font-weight: 650;
  font-size: 13px;
}
.mini-brand img {
  width: 21px;
  height: 21px;
}
.app-user {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #61656b;
}
.app-user img {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  object-fit: cover;
}
.app-content {
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 333px;
}
.app-sidebar {
  padding: 17px 8px;
  background: #242b33;
  color: #b9c0c8;
  font-size: 8px;
}
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 7px;
  line-height: 1.1;
}
.app-nav-item .icon {
  width: 11px;
  height: 11px;
}
.app-nav-item.selected {
  background: var(--yellow);
  color: #202327;
  border-radius: 2px;
  font-weight: 800;
  margin-bottom: 7px;
}
.composer {
  padding: 17px 14px 18px;
  min-width: 0;
}
.composer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
}
.composer-title h3 {
  font-size: 14px;
  margin: 0;
}
.mini-label {
  font-size: 8px;
  padding: 2px 5px;
  background: #f2f4f5;
  color: #6b7177;
  border-radius: 2px;
}
.composer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
}
.caption-input {
  border: 1px solid #ececef;
  background: #fcfcfd;
  border-radius: 3px;
  font-size: 8px;
  line-height: 1.6;
  padding: 9px;
  margin-bottom: 9px;
  color: #6b717a;
  min-height: 49px;
}
.post-creative {
  background: #6e6558;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1.22;
}
.post-creative > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0009, transparent 80%);
}
.creative-copy {
  position: absolute;
  z-index: 1;
  color: white;
  font-family: var(--heading);
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1.02;
  font-weight: 600;
  left: 10px;
  top: 13px;
}
.creative-copy small {
  display: block;
  font-family: var(--body);
  font-size: 5px;
  letter-spacing: 0.13em;
  line-height: 2;
  margin-top: 10px;
}
.platform-panel {
  padding: 10px 9px;
  border: 1px solid #efefee;
  border-radius: 5px;
  box-shadow: 0 3px 10px #242b3310;
  align-self: start;
}
.platform-panel h4 {
  font-family: var(--body);
  font-size: 9px;
  margin: 0 0 12px;
  font-weight: 800;
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 3px;
}
.platform-choice {
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 4px 1px;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  font-size: 5px;
  min-width: 0;
  line-height: 1.4;
  color: #62666b;
}
.platform-choice[aria-pressed="true"] {
  border-color: #f1d375;
  background: #fffbed;
}
.platform-choice:hover {
  background: #fff9e5;
}
.platform-choice .brand-icon {
  width: 17px;
  height: 17px;
}
.panel-caption {
  font-size: 7px;
  margin: 9px 0;
  color: #73777c;
  display: flex;
  align-items: center;
  gap: 4px;
}
.panel-caption .icon {
  width: 10px;
  height: 10px;
  color: #af7900;
}
.mini-btn {
  border: 0;
  border-radius: 2px;
  padding: 7px 8px;
  background: var(--yellow);
  font-size: 8px;
  line-height: 1.3;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mini-btn .icon {
  width: 12px;
  height: 12px;
}
.platform-panel .mini-btn {
  width: 100%;
}
.ai-float {
  position: absolute;
  bottom: 14px;
  left: 121px;
  background: #fff;
  padding: 13px 15px;
  width: 195px;
  border: 1px solid #e9e7df;
  border-radius: 5px;
  box-shadow: 0 8px 19px #22222216;
  transform: rotate(-3deg);
}
.ai-float h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 10px;
  margin-bottom: 4px;
}
.ai-float .icon {
  width: 14px;
  height: 14px;
  color: #b78917;
}
.ai-float p {
  font-size: 8px;
  line-height: 1.55;
  color: #787d83;
  margin: 0;
  padding-left: 20px;
}
.phone {
  position: absolute;
  right: -18px;
  bottom: 14px;
  width: 119px;
  background: #fff;
  border: 5px solid #161a1d;
  border-radius: 20px;
  padding: 19px 6px 9px;
  box-shadow: 0 10px 25px #15191d22;
  transform: rotate(3deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 35%;
  width: 30%;
  height: 5px;
  border-radius: 5px;
  background: #181b1e;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 800;
  align-items: center;
  margin: 0 1px 9px;
}
.phone-top .icon {
  width: 10px;
  height: 10px;
}
.phone .post-creative {
  aspect-ratio: 0.82;
}
.phone .creative-copy {
  font-size: 17px;
  left: 7px;
  top: 13px;
}
.phone .creative-copy small {
  display: none;
}
.phone-social {
  display: flex;
  justify-content: space-around;
  margin: 9px 0;
}
.phone-social .brand-icon {
  width: 13px;
  height: 13px;
}
.phone p {
  text-align: center;
  font-size: 6px;
  line-height: 1.5;
  color: #73777d;
  margin: 0;
}
.visual-note {
  font-family: var(--heading);
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  transform: rotate(-9deg);
  font-weight: 450;
}
.spark-lines {
  position: absolute;
  right: 3px;
  top: -4px;
  font-size: 28px;
  letter-spacing: 5px;
  transform: rotate(24deg);
  font-family: var(--heading);
  color: #73746c;
}
.integrations {
  padding: 38px 0 49px;
  background: #fff;
}
.integrations h2 {
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.integrations > .container > p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 25px;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}
.integration-tile {
  background: #fdfdfc;
  border: 1px solid #eeeeea;
  border-radius: 6px;
  min-height: 96px;
  padding: 15px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.integration-tile:hover {
  transform: translateY(-3px);
  border-color: #d7c278;
}
.integration-tile .brand-icon {
  height: 30px;
  width: 30px;
}
.integration-tile span {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}
.steps-section {
  padding: 57px 0 65px;
}
.steps-section h2 {
  font-size: 31px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #fff;
  border: 1px solid #ebebe6;
  border-radius: 6px;
  padding: 25px 24px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.step-head {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.step-number {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  flex: none;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 650;
}
.step-head h3 {
  font-size: 18px;
  margin: 2px 0 7px;
}
.step-head p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.step-ui {
  margin: 22px 8px 0;
  padding: 14px;
  border: 1px solid #edf0f0;
  background: #fcfcfd;
  border-radius: 5px;
  min-height: 139px;
}
.demo-editor {
  display: block;
  resize: none;
  width: 100%;
  height: 58px;
  font-size: 11px;
  padding: 9px;
  border: 1px solid #ededee;
  border-radius: 3px;
  background: white;
  color: #575c62;
}
.editor-tools {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.editor-tools .icon {
  width: 17px;
  height: 17px;
  color: #424a53;
}
.editor-tools button {
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: auto;
  color: #967000;
}
.mini-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mini-channel-grid .platform-choice {
  padding: 4px;
  font-size: 7px;
  gap: 5px;
}
.mini-channel-grid .brand-icon {
  width: 22px;
  height: 22px;
}
.small-calendar h4 {
  font-size: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-calendar h4 .icon {
  width: 13px;
  height: 13px;
}
.mini-week,
.mini-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 7px;
  gap: 5px;
  line-height: 1.7;
}
.mini-week {
  color: #8b8e94;
  margin-bottom: 5px;
}
.mini-days span {
  height: 14px;
}
.mini-days .picked {
  background: var(--yellow);
  border-radius: 50%;
  color: #161a1d;
}
.small-calendar {
  position: relative;
}
.calendar-mini-cta {
  position: absolute;
  right: 13px;
  bottom: 12px;
}
.feature-split {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 74px;
}
.feature-copy h2 {
  margin-bottom: 25px;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.55;
  color: #555b62;
}
.check-dot {
  width: 20px;
  height: 20px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 1px;
  color: #1b2228;
}
.check-dot .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}
.publishing-visual {
  position: relative;
  padding-right: 85px;
}
.publish-window {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 7px 22px #171d2014;
}
.publish-window h3 {
  font-size: 16px;
  margin-bottom: 17px;
}
.publish-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 19px;
}
.publish-inner .creative-copy {
  font-size: 32px;
  left: 15px;
  top: 18px;
}
.publish-inner .platform-panel {
  border: 0;
  box-shadow: none;
  padding: 0;
}
.publish-inner .platform-panel h4 {
  font-size: 11px;
}
.publish-inner .brand-icon {
  width: 23px;
  height: 23px;
}
.publish-inner .platform-choice {
  font-size: 7px;
}
.publish-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 14px;
}
.draft-btn {
  font-size: 10px;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 8px 0;
}
.publish-actions .mini-btn {
  font-size: 10px;
  min-width: 100px;
  min-height: 31px;
}
.publishing-visual > .visual-note {
  position: absolute;
  right: -15px;
  top: 60px;
  font-size: 16px;
  max-width: 100px;
}
.note-arrow {
  margin: 12px 0 0 6px;
  width: 54px;
  height: 48px;
  transform: rotate(10deg);
  color: #626971;
}
.calendar-window {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 23px 20px;
  min-width: 0;
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}
.widget-header h3 {
  font-size: 16px;
  margin: 0;
}
.widget-controls {
  display: flex;
  gap: 5px;
  align-items: center;
}
.widget-control {
  font-family: var(--body);
  font-size: 8px;
  border: 1px solid #e8e9ed;
  border-radius: 3px;
  padding: 4px 7px;
  background: #fff;
  line-height: 1.4;
}
.widget-control.active {
  background: #f0f1f3;
}
.widget-control .icon {
  width: 10px;
  height: 10px;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.week-heading {
  text-align: center;
  font-size: 8px;
  color: #687078;
  line-height: 1.7;
  margin-bottom: 12px;
}
.week-heading strong {
  display: block;
  font-size: 11px;
  color: #242a31;
  font-weight: 600;
}
.day-column {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-left: 1px solid #f0f1f2;
  padding-left: 3px;
}
.calendar-post {
  border: 1px solid #bee2f7;
  background: #eef9ff;
  border-radius: 3px;
  font-size: 6px;
  color: #354c5b;
  padding: 6px 4px;
  line-height: 1.6;
  min-height: 42px;
  overflow: hidden;
}
.calendar-post .brand-icon {
  height: 9px;
  width: 9px;
  float: left;
  margin: 0 3px 2px 0;
}
.calendar-post strong {
  font-size: 6px;
  font-weight: 800;
  display: block;
}
.calendar-post.instagram {
  background: #fcf1ff;
  border-color: #eed0f4;
  margin-top: 56px;
}
.calendar-post.linkedin {
  background: #eef9f3;
  border-color: #c8e9d4;
  margin-top: 7px;
}
.calendar-post.youtube {
  background: #fff9e7;
  border-color: #f1d782;
  margin-top: 51px;
}
.calendar-post.facebook {
  margin-top: 11px;
}
.calendar-post.pinterest {
  background: #fff2ec;
  border-color: #f4d3bd;
  margin-top: 7px;
}
.calendar-caption {
  font-size: 9px;
  color: #868c93;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.calendar-caption .icon {
  height: 11px;
  width: 11px;
}
.analytics-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 23px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.metric {
  background: #f6f8fb;
  border: 1px solid #f0f2f6;
  border-radius: 4px;
  padding: 11px 9px;
}
.metric p {
  font-size: 8px;
  color: #6e7886;
  margin: 0 0 6px;
}
.metric strong {
  font-family: var(--heading);
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.metric small {
  font-size: 7px;
  font-weight: 800;
  display: block;
  color: #2c9164;
  margin-top: 6px;
}
.chart {
  position: relative;
  margin-top: 19px;
}
.chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #7a858f;
  padding-left: 22px;
}
.chart-tooltip {
  position: absolute;
  left: 36%;
  top: 34%;
  background: #fff;
  padding: 8px 10px;
  box-shadow: 0 3px 12px #0002;
  border-radius: 4px;
  font-size: 8px;
  line-height: 1.8;
  border: 1px solid #eeeff1;
  transform: rotate(-3deg);
}
.chart-tooltip strong {
  display: block;
  background: #181e25;
  color: var(--yellow);
  padding: 1px 6px;
  border-radius: 2px;
  width: max-content;
  margin-bottom: 4px;
}
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 14px;
  font-size: 8px;
  color: #727982;
}
.chart-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.chart-legend i {
  width: 12px;
  height: 3px;
  background: var(--yellow);
}
.chart-legend span + span i {
  background: #d5dce2;
}
.features-section {
  padding: 58px 0 65px;
}
.features-section h2 {
  font-size: 33px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 5px;
  padding: 23px 20px;
  box-shadow: 0 3px 9px #00000005;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: #d6bf77;
}
.feature-icon {
  background: #fff0ac;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: none;
}
.feature-icon .icon {
  height: 23px;
  width: 23px;
}
.feature-card h3 {
  font-size: 17px;
  margin: 2px 0 7px;
}
.feature-card p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  color: var(--muted);
}
.workflow-visual {
  padding: 24px 35px 20px 15px;
  position: relative;
}
.workflow-window {
  background: var(--cream);
  border: 1px solid #ece9dd;
  border-radius: 7px;
  padding: 25px;
  box-shadow: var(--shadow);
  position: relative;
}
.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.workflow-header h3 {
  font-size: 17px;
  margin: 0;
}
.workflow-header .mini-brand {
  font-size: 17px;
}
.workflow-header .mini-brand img {
  width: 27px;
  height: 27px;
}
.workflow-board {
  background: #fff;
  border: 1px solid #e9e8df;
  border-radius: 5px;
  padding: 20px;
}
.workflow-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0efeb;
}
.workflow-person img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
}
.workflow-person strong {
  display: block;
  font-size: 12px;
}
.workflow-person p {
  font-size: 9px;
  margin: 0;
  color: #7b8188;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 21px 0;
}
.workflow-step {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}
.workflow-step span {
  background: #fff1b8;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
}
.workflow-step .icon {
  width: 21px;
  height: 21px;
}
.workflow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -9px;
  top: 7px;
  color: #a0a6a9;
  font-size: 20px;
}
.workflow-result {
  background: #fafcfb;
  border: 1px solid #e7ece8;
  padding: 12px 13px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.workflow-result > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #547162;
}
.workflow-result .icon {
  width: 14px;
  height: 14px;
}
.workflow-result strong {
  font-family: var(--heading);
  font-size: 21px;
  color: #253f30;
}
.workflow-tag {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 11px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(5deg);
}
.workflow-tag .icon {
  color: #b48a16;
}
.workflow-visual > .visual-note {
  text-align: right;
  font-size: 16px;
  margin: 13px 10px -20px 0;
}
.testimonials-section {
  padding: 58px 0 62px;
}
.testimonials-section h2 {
  font-size: 32px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.testimonial-card {
  padding: 22px 20px;
  background: white;
  border: 1px solid #eae8df;
  border-radius: 5px;
  box-shadow: 0 3px 9px #00000004;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #c48700;
  letter-spacing: 2px;
  font-size: 17px;
  line-height: 1;
  margin-bottom: 13px;
}
.testimonial-card blockquote {
  font-size: 12px;
  line-height: 1.75;
  margin: 0 0 20px;
  color: #555a60;
  flex: 1;
}
.customer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}
.customer strong {
  display: block;
  font-size: 11px;
  color: #282c31;
}
.customer span {
  font-size: 9px;
  display: block;
  color: #7d8287;
  line-height: 1.5;
}
.sample-note {
  font-size: 10px;
  color: #86827a;
  margin: 17px 0 0;
  text-align: center;
}
.pricing-preview {
  padding: 69px 0 55px;
}
.pricing-preview h2 {
  font-size: 35px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 990px;
  margin: 48px auto 0;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #e1e3e6;
  border-radius: 6px;
  padding: 27px 25px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px #22222204;
}
.plan-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.plan-description {
  font-size: 12px;
  color: #737880;
  line-height: 1.65;
  margin-bottom: 19px;
}
.plan-price {
  font-family: var(--heading);
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #151a20;
  white-space: nowrap;
  margin-bottom: 20px;
}
.plan-price span {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: #666e78;
  letter-spacing: 0;
}
.plan-card .check-list {
  align-content: start;
  gap: 12px;
  margin-bottom: 25px;
  flex: 1;
}
.plan-card .check-list li {
  font-size: 12px;
  gap: 9px;
}
.plan-card .check-dot {
  background: #fff1bb;
  width: 16px;
  height: 16px;
}
.plan-card .check-dot .icon {
  height: 11px;
  width: 11px;
}
.plan-card .btn {
  font-size: 12px;
  width: 100%;
  margin-top: auto;
  min-height: 41px;
}
.plan-card.featured {
  border: 2px solid var(--yellow);
  background: #fffdf6;
  padding: 26px 24px 24px;
}
.plan-badge {
  position: absolute;
  top: -24px;
  left: -2px;
  right: -2px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--yellow);
  border-radius: 6px 6px 0 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.plan-card.featured:has(.plan-badge) {
  border-radius: 0 0 6px 6px;
}
.pricing-more {
  font-size: 12px;
  text-align: center;
  color: #69707a;
  margin-top: 25px;
}
.pricing-more a {
  font-weight: 800;
  color: #282e35;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.pricing-more .icon {
  height: 12px;
  width: 12px;
}
.faq-section {
  padding: 55px 0 70px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.faq-heading h2 {
  font-size: 31px;
}
.faq-heading p {
  font-size: 14px;
  max-width: 300px;
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 9px;
  align-content: start;
}
.faq-item {
  background: #fdfdfd;
  border: 1px solid #e5e6e9;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 15px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}
.faq-question .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition:
    grid-template-rows 0.25s,
    visibility 0.25s;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  font-size: 12px;
  line-height: 1.8;
  color: #66707a;
  padding: 0 15px 14px;
  margin: 0;
}
.faq-answer.open {
  grid-template-rows: 1fr;
  visibility: visible;
}
.final-cta {
  background-color: #171c20;
  background-image:
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size: 26px 26px;
  padding: 61px 0 58px;
  color: #e0e2e4;
  border-bottom: 2px solid var(--yellow);
}
.cta-inner {
  max-width: 790px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 17px;
}
.cta-inner p {
  font-size: 13px;
  max-width: 465px;
  color: #bbc0c4;
  margin-bottom: 24px;
}
.cta-inner .btn-outline {
  color: white;
  border-color: #697076;
}
.cta-inner .btn-outline:hover {
  background: #2d3338;
}
.cta-inner > .visual-note {
  color: #dededc;
  min-width: 110px;
  font-size: 22px;
}
.site-footer {
  background: #12171b;
  color: #c3c7cb;
  padding: 45px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.02fr 1.03fr 0.95fr;
  gap: 75px;
  padding-bottom: 35px;
}
.footer-brand .brand-logo {
  width: 30px;
  height: 30px;
}
.footer-brand .brand-wordmark {
  font-size: 23px;
  color: #fff;
}
.footer-brand .brand-wordmark span {
  color: #b8bfc4;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: #a8b0b7;
  margin: 18px 0;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #353c43;
  border-radius: 3px;
  background: #20262c;
}
.footer-social a:hover {
  border-color: var(--yellow);
}
.footer-social .brand-icon {
  width: 15px;
  height: 15px;
}
.footer-social .icon {
  width: 15px;
  height: 15px;
}
.footer-title {
  font-family: var(--body);
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 0.16em;
  margin: 5px 0 21px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
  font-size: 11px;
  line-height: 1.7;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-list > .contact-row .icon {
  color: var(--yellow);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.contact-list a:hover {
  text-decoration: underline;
}
.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  font-size: 11px;
}
.quick-links a {
  display: flex;
  gap: 6px;
  align-items: center;
}
.quick-links .icon {
  width: 10px;
  height: 10px;
  color: #8c959d;
}
.quick-links a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid #30363b;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 9px;
  color: #929ca5;
}
.legal-links {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
}
.made-with {
  white-space: nowrap;
  font-size: 8px;
  letter-spacing: 0.07em;
}
.heart {
  color: var(--yellow);
}
.footer-bottom a:hover {
  color: #fff;
}
.pricing-hero {
  padding: 64px 0 57px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid #f1efe6;
}
.pricing-hero h1 {
  font-size: 58px;
  letter-spacing: -0.045em;
  margin-bottom: 13px;
}
.pricing-hero p {
  color: #67707a;
  font-size: 17px;
  margin-bottom: 23px;
}
.pricing-hero .eyebrow {
  margin-bottom: 12px;
}
.pricing-plans-section {
  padding: 53px 0 54px;
}
.billing-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: #59616b;
  margin-bottom: 49px;
}
.billing-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}
.full-plans {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  max-width: none;
  margin: 0 auto;
}
.full-plans .plan-card {
  padding: 25px 20px 24px;
  box-shadow: none;
}
.full-plans .plan-card h3 {
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.full-plans .plan-card .plan-description {
  min-height: 60px;
  font-size: 12px;
  line-height: 1.7;
}
.full-plans .plan-price {
  font-size: 39px;
  margin-bottom: 23px;
  min-height: 46px;
}
.full-plans .plan-price.custom {
  font-size: 31px;
  display: flex;
  align-items: center;
}
.full-plans .plan-card .check-list {
  gap: 13px;
  margin-top: 24px;
  margin-bottom: 0;
}
.full-plans .plan-card .check-list li {
  font-size: 11px;
}
.full-plans .plan-card.featured {
  padding: 24px 19px 23px;
  background: #fffbeb;
}
.plan-intro {
  font-size: 11px;
  margin: 19px 0 -7px;
  color: #5a636b;
  font-weight: 800;
}
.full-plans .plan-card .btn {
  margin-top: 0;
}
.billing-note {
  font-size: 11px;
  color: #7d838b;
  text-align: center;
  margin: 22px 0 0;
}
.platform-band {
  display: flex;
  align-items: center;
  gap: 35px;
  background: #f7f8f9;
  border: 1px solid #edf0f1;
  border-radius: 6px;
  padding: 21px 24px;
  margin-top: 35px;
}
.platform-band h3 {
  font-size: 20px;
  min-width: 185px;
  margin: 0;
}
.platform-band .integration-grid {
  flex: 1;
  gap: 15px;
}
.platform-band .integration-tile {
  min-height: 0;
  border: 0;
  padding: 0;
  background: none;
  gap: 8px;
}
.platform-band .integration-tile .brand-icon {
  width: 27px;
  height: 27px;
}
.platform-band .integration-tile span {
  font-size: 8px;
}
.pricing-quote {
  background: #1c2328;
  border-radius: 7px;
  padding: 31px 39px;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 27px;
  color: #fff;
}
.pricing-quote > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #737774;
}
.pricing-quote blockquote {
  font-family: var(--heading);
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 11px;
  max-width: 775px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: #b7c0c7;
}
.quote-author .stars {
  margin: 0;
  font-size: 19px;
  color: var(--yellow);
}
.quote-author strong {
  color: #fff;
}
.quote-example {
  font-size: 9px;
  color: #8b949c;
  display: block;
  margin-top: 5px;
}
.comparison-section {
  padding: 19px 0 62px;
}
.comparison-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.comparison-title h2 {
  font-size: 32px;
  margin: 0;
}
.comparison-title .text-link {
  font-size: 12px;
}
.comparison-hint {
  display: none;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid #dee3e7;
  border-radius: 6px;
  position: relative;
}
.comparison-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  min-width: 775px;
  font-size: 12px;
}
.comparison-table col:first-child {
  width: 31%;
}
.comparison-table col {
  width: 17.25%;
}
.comparison-table td,
.comparison-table th {
  border-right: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
  padding: 10px 15px;
  text-align: center;
}
.comparison-table tr > *:last-child {
  border-right: 0;
}
.comparison-table tbody:last-child tr:last-child > * {
  border-bottom: 0;
}
.comparison-table thead {
  background: #f6f7f8;
}
.comparison-table thead th {
  padding: 21px 15px;
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.comparison-table thead th:first-child {
  background: #222a31;
  color: white;
  text-align: left;
  font-size: 17px;
}
.comparison-table thead th small {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  color: #7b8289;
}
.comparison-table thead .recommended-label {
  display: block;
  font-family: var(--body);
  font-size: 8px;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: #3d340e;
  width: max-content;
  margin: 0 auto 5px;
  padding: 2px 6px;
  border-radius: 2px;
}
.comparison-table thead th:nth-child(4),
.comparison-table tbody tr:not(.category-row) > *:nth-child(4) {
  background: #fffcf0;
}
.comparison-table tbody th {
  text-align: left;
  font-weight: 500;
  color: #616972;
}
.comparison-table .category-row th {
  background: #eff2f4;
  padding: 10px 15px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.09em;
  color: #2c363f;
  font-weight: 800;
}
.category-label {
  display: flex;
  align-items: center;
  gap: 9px;
}
.category-label .icon {
  width: 15px;
  height: 15px;
}
.table-check {
  width: 15px;
  height: 15px;
  color: #a97a00;
  stroke-width: 3;
  margin: auto;
}
.table-cross {
  width: 13px;
  height: 13px;
  color: #a3abb2;
  margin: auto;
}
.limit-note {
  font-size: 11px;
  margin: 14px 0 0;
  color: #7d858d;
  line-height: 1.75;
}
.pricing-faq {
  background: var(--cream);
  padding: 61px 0 69px;
}
.pricing-faq .faq-item {
  background: white;
}
.pricing-final-cta .cta-inner {
  max-width: none;
  justify-content: center;
  text-align: center;
}
.pricing-final-cta h2 {
  font-size: 38px;
}
.pricing-final-cta .cta-inner p {
  max-width: none;
}
.pricing-final-cta .button-row {
  justify-content: center;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 12px 20px;
  background: #20282f;
  border: 1px solid #414951;
  color: #fff;
  box-shadow: 0 7px 25px #0002;
  border-radius: 5px;
  font-size: 13px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1450px) {
  .hero {
    padding: 83px 0 78px;
  }
}
@media (max-width: 1120px) {
  .container {
    width: calc(100% - 48px);
  }
  .navigation {
    gap: 25px;
  }
  .nav-links {
    gap: 22px;
  }
  .brand-wordmark {
    font-size: 22px;
  }
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .app-content {
    grid-template-columns: 83px 1fr;
    min-height: 306px;
  }
  .app-nav-item {
    font-size: 7px;
    padding: 9px 3px;
  }
  .composer {
    padding: 15px 10px;
  }
  .composer-grid {
    gap: 9px;
  }
  .platform-panel {
    padding: 8px 5px;
  }
  .creative-copy {
    font-size: 19px;
  }
  .phone {
    width: 107px;
    right: -13px;
  }
  .ai-float {
    left: 92px;
    bottom: 21px;
    width: 183px;
  }
  .integration-grid {
    gap: 8px;
  }
  .feature-split,
  .feature-split.reverse {
    gap: 48px;
  }
  .publishing-visual {
    padding-right: 54px;
  }
  .publishing-visual > .visual-note {
    font-size: 14px;
    right: -10px;
    max-width: 79px;
  }
  .publish-window {
    padding: 18px;
  }
  .publish-inner {
    gap: 13px;
  }
  .publish-inner .creative-copy {
    font-size: 27px;
  }
  .footer-main {
    gap: 45px;
  }
  .full-plans .plan-card {
    padding-inline: 16px;
  }
  .full-plans .plan-card.featured {
    padding-inline: 15px;
  }
  .full-plans {
    gap: 13px;
  }
  .full-plans .plan-price {
    font-size: 34px;
  }
  .full-plans .plan-price.custom {
    font-size: 26px;
  }
  .platform-band {
    gap: 20px;
    padding-inline: 20px;
  }
  .platform-band h3 {
    min-width: 145px;
    font-size: 18px;
  }
  .platform-band .integration-grid {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 67px;
  }
  .brand-logo {
    width: 34px;
    height: 34px;
  }
  .brand-wordmark {
    font-size: 23px;
  }
  .menu-toggle {
    display: block;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: #fffefb;
    box-shadow: 0 12px 18px #1b222516;
    padding: 14px 24px 23px;
    border-bottom: 1px solid var(--border);
  }
  .navigation.is-open {
    display: block;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-link {
    height: 47px;
    padding: 0 5px;
    font-size: 14px;
  }
  .nav-link::after {
    bottom: 5px;
    right: auto;
    width: 32px;
    left: 5px;
  }
  .header-actions {
    margin-top: 17px;
  }
  .header-actions .btn {
    font-size: 13px;
    min-height: 42px;
  }
  .hero {
    padding: 51px 0 44px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    max-width: 700px;
  }
  .hero-copy {
    max-width: 590px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-copy > p {
    font-size: 16px;
    max-width: 580px;
  }
  .hero-visual {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
    padding: 18px 29px 47px 0;
  }
  .app-content {
    grid-template-columns: 112px 1fr;
    min-height: 345px;
  }
  .app-nav-item {
    font-size: 9px;
    padding: 9px 7px;
  }
  .composer {
    padding: 21px 15px;
  }
  .composer-title h3 {
    font-size: 15px;
  }
  .composer-grid {
    gap: 14px;
  }
  .caption-input {
    font-size: 9px;
  }
  .creative-copy {
    font-size: 27px;
  }
  .platform-panel {
    padding: 14px 11px;
  }
  .platform-choice {
    font-size: 7px;
  }
  .platform-choice .brand-icon {
    width: 19px;
    height: 19px;
  }
  .phone {
    width: 126px;
    right: -5px;
    bottom: 4px;
  }
  .phone .creative-copy {
    font-size: 20px;
  }
  .ai-float {
    left: 151px;
    bottom: 15px;
    width: 201px;
  }
  .integration-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 650px;
    margin: auto;
  }
  .integration-tile {
    min-height: 89px;
  }
  .integration-tile span {
    font-size: 10px;
  }
  .step-grid {
    gap: 14px;
  }
  .step-card {
    padding: 20px 15px;
  }
  .step-head {
    gap: 10px;
  }
  .step-head h3 {
    font-size: 16px;
  }
  .step-head p {
    font-size: 11px;
  }
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .step-ui {
    margin-inline: 0;
    padding: 10px;
    min-height: 136px;
  }
  .mini-channel-grid {
    gap: 8px;
  }
  .mini-channel-grid .brand-icon {
    width: 18px;
    height: 18px;
  }
  .feature-split,
  .feature-split.reverse {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .feature-copy {
    max-width: 540px;
  }
  .feature-split .feature-copy {
    order: 0;
  }
  .feature-split .publishing-visual,
  .feature-split .calendar-window,
  .feature-split .analytics-window,
  .feature-split .workflow-visual {
    order: 1;
  }
  .publishing-visual {
    max-width: 610px;
    width: 100%;
    margin: auto;
    padding-right: 90px;
  }
  .publish-window {
    padding: 23px;
  }
  .publish-inner .creative-copy {
    font-size: 36px;
  }
  .publishing-visual > .visual-note {
    max-width: 105px;
    right: -3px;
    font-size: 18px;
    top: 80px;
  }
  .calendar-window,
  .analytics-window {
    width: 100%;
    max-width: 680px;
    margin: auto;
    padding: 26px;
  }
  .week-heading {
    font-size: 10px;
  }
  .week-heading strong {
    font-size: 13px;
  }
  .calendar-post,
  .calendar-post strong {
    font-size: 8px;
  }
  .calendar-post {
    min-height: 50px;
    padding: 7px 4px;
  }
  .calendar-post .brand-icon {
    height: 11px;
    width: 11px;
  }
  .day-column {
    min-height: 180px;
  }
  .metric p {
    font-size: 10px;
  }
  .metric strong {
    font-size: 27px;
  }
  .metric small {
    font-size: 8px;
  }
  .chart-labels,
  .chart-legend {
    font-size: 9px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-visual {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .testimonial-card blockquote {
    font-size: 14px;
  }
  .customer strong {
    font-size: 12px;
  }
  .customer span {
    font-size: 11px;
  }
  .plans-grid {
    gap: 15px;
  }
  .plan-card {
    padding: 23px 19px;
  }
  .plan-card.featured {
    padding: 22px 18px;
  }
  .faq-layout {
    gap: 30px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .faq-question {
    font-size: 12px;
  }
  .footer-main {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-links-column {
    grid-column: 1/-1;
  }
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 19px 0;
    gap: 10px 30px;
  }
  .made-with {
    margin-left: auto !important;
  }
  .full-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 41px 20px;
  }
  .full-plans .plan-card {
    padding: 25px;
  }
  .full-plans .plan-card.featured {
    padding: 24px;
  }
  .full-plans .plan-description {
    min-height: 40px;
  }
  .full-plans .plan-card .check-list li {
    font-size: 12px;
  }
  .full-plans .plan-price {
    font-size: 42px;
  }
  .full-plans .plan-price.custom {
    font-size: 32px;
  }
  .platform-band {
    display: block;
    text-align: center;
    padding: 25px;
  }
  .platform-band h3 {
    margin-bottom: 22px;
  }
  .platform-band h3 br {
    display: none;
  }
  .platform-band .integration-grid {
    grid-template-columns: repeat(9, 1fr);
    max-width: none;
    gap: 8px;
  }
  .pricing-quote {
    padding: 26px;
  }
  .pricing-quote blockquote {
    font-size: 19px;
  }
  .quote-author {
    gap: 15px;
    flex-wrap: wrap;
  }
  .comparison-title h2 {
    font-size: 29px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding: 52px 0;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  h2 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }
  .header-inner {
    height: 64px;
  }
  .brand-logo {
    width: 31px;
    height: 31px;
  }
  .brand-wordmark {
    font-size: 22px;
  }
  .brand {
    gap: 8px;
  }
  .navigation {
    top: 64px;
    padding-inline: 18px;
  }
  .hero {
    padding: 37px 0 31px;
  }
  .hero-grid {
    gap: 21px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(36px, 10.6vw, 62px);
    margin-bottom: 20px;
    line-height: 1.06;
    letter-spacing: -0.05em;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 16px;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 23px;
  }
  .hero .btn {
    font-size: 12px;
    min-height: 44px;
    padding: 11px 16px;
    gap: 9px;
  }
  .hero .button-row {
    gap: 10px;
    margin-bottom: 22px;
  }
  .trust p {
    font-size: 10px;
  }
  .avatar-stack img {
    width: 30px;
    height: 30px;
  }
  .hero-visual {
    padding: 14px 27px 35px 0;
    margin-top: 3px;
  }
  .app-top {
    height: 30px;
    padding: 0 8px;
  }
  .mini-brand {
    font-size: 10px;
  }
  .mini-brand img {
    width: 16px;
    height: 16px;
  }
  .app-user {
    font-size: 6px;
  }
  .app-user img {
    height: 15px;
    width: 15px;
  }
  .app-content {
    grid-template-columns: 68px 1fr;
    min-height: 237px;
  }
  .app-sidebar {
    padding: 11px 4px;
  }
  .app-nav-item {
    gap: 4px;
    font-size: 6px;
    padding: 8px 3px;
  }
  .app-nav-item .icon {
    width: 8px;
    height: 8px;
  }
  .composer {
    padding: 13px 8px;
  }
  .composer-title {
    margin-bottom: 9px;
  }
  .composer-title h3 {
    font-size: 10px;
  }
  .mini-label {
    font-size: 6px;
  }
  .composer-grid {
    gap: 7px;
    grid-template-columns: 1fr 1fr;
  }
  .caption-input {
    font-size: 6px;
    line-height: 1.7;
    min-height: 43px;
    padding: 5px;
  }
  .post-creative {
    aspect-ratio: 0.88;
  }
  .creative-copy {
    font-size: 17px;
    left: 7px;
    top: 10px;
  }
  .creative-copy small {
    font-size: 4px;
    margin-top: 7px;
  }
  .platform-panel {
    padding: 8px 4px;
  }
  .platform-panel h4 {
    font-size: 6px;
    margin-bottom: 8px;
  }
  .selector-grid {
    gap: 6px 1px;
  }
  .platform-choice {
    font-size: 4px;
    gap: 3px;
    padding: 2px 0;
  }
  .platform-choice .brand-icon {
    height: 13px;
    width: 13px;
  }
  .panel-caption {
    font-size: 5px;
    margin: 7px 0;
    gap: 2px;
  }
  .panel-caption .icon {
    height: 8px;
    width: 8px;
  }
  .mini-btn {
    font-size: 6px;
    padding: 6px 4px;
  }
  .mini-btn .icon {
    width: 9px;
    height: 9px;
  }
  .ai-float {
    width: 152px;
    left: 72px;
    bottom: 14px;
    padding: 10px;
    border-radius: 4px;
  }
  .ai-float h4 {
    font-size: 8px;
    gap: 4px;
  }
  .ai-float .icon {
    width: 11px;
    height: 11px;
  }
  .ai-float p {
    font-size: 6px;
    padding-left: 15px;
  }
  .phone {
    width: 87px;
    border-width: 4px;
    border-radius: 14px;
    padding: 16px 4px 8px;
    right: 0;
    bottom: 3px;
  }
  .phone .post-creative {
    aspect-ratio: 0.72;
  }
  .phone .creative-copy {
    font-size: 13px;
    left: 5px;
    top: 13px;
  }
  .phone-top {
    font-size: 5px;
    margin-bottom: 6px;
  }
  .phone-top .icon {
    width: 7px;
    height: 7px;
  }
  .phone-social {
    margin: 6px 0;
  }
  .phone-social .brand-icon {
    width: 10px;
    height: 10px;
  }
  .phone p {
    font-size: 5px;
  }
  .phone::before {
    height: 4px;
    top: 5px;
  }
  .spark-lines {
    font-size: 19px;
    right: 2px;
    top: -7px;
  }
  .integrations {
    padding: 31px 0 34px;
  }
  .integrations h2 {
    font-size: 23px;
  }
  .integrations > .container > p {
    font-size: 11px;
    max-width: 290px;
    margin-inline: auto;
    line-height: 1.7;
  }
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }
  .integration-tile {
    min-height: 85px;
    padding: 13px 5px;
    gap: 9px;
  }
  .integration-tile .brand-icon {
    width: 25px;
    height: 25px;
  }
  .integration-tile span {
    font-size: 9px;
  }
  .steps-section {
    padding: 40px 0 44px;
  }
  .steps-section h2 {
    font-size: 27px;
    max-width: 320px;
    margin-inline: auto;
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card {
    padding: 23px 23px 22px;
  }
  .step-head h3 {
    font-size: 19px;
    margin-top: 3px;
  }
  .step-head p {
    font-size: 13px;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }
  .step-head {
    gap: 13px;
  }
  .step-ui {
    margin: 21px 12px 0;
    padding: 15px;
    min-height: 139px;
  }
  .demo-editor {
    font-size: 12px;
    height: 55px;
  }
  .mini-channel-grid .brand-icon {
    width: 25px;
    height: 25px;
  }
  .mini-channel-grid .platform-choice {
    font-size: 8px;
    padding: 4px;
    gap: 5px;
  }
  .mini-channel-grid {
    gap: 10px;
  }
  .mini-week,
  .mini-days {
    font-size: 9px;
  }
  .mini-days {
    row-gap: 8px;
  }
  .small-calendar h4 {
    font-size: 13px;
  }
  .calendar-mini-cta {
    font-size: 9px;
    min-height: 27px;
    padding: 6px 9px;
  }
  .feature-split,
  .feature-split.reverse {
    gap: 27px;
  }
  .feature-copy h2 {
    margin-bottom: 23px;
  }
  .check-list {
    gap: 12px;
  }
  .check-list li {
    font-size: 13px;
  }
  .publishing-visual {
    padding-right: 0;
    margin-top: 0;
  }
  .publishing-visual > .visual-note {
    position: relative;
    font-size: 14px;
    max-width: none;
    text-align: right;
    right: auto;
    top: auto;
    padding-right: 4px;
    margin-top: 13px;
    transform: rotate(-4deg);
  }
  .publishing-visual > .visual-note br {
    display: none;
  }
  .note-arrow {
    display: none;
  }
  .publish-window {
    padding: 18px;
  }
  .publish-window h3 {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .publish-inner {
    gap: 15px;
    grid-template-columns: 1.1fr 1fr;
  }
  .publish-inner .post-creative {
    aspect-ratio: 0.96;
  }
  .publish-inner .creative-copy {
    font-size: 26px;
    left: 11px;
    top: 17px;
  }
  .publish-inner .creative-copy small {
    font-size: 5px;
  }
  .publish-inner .platform-panel h4 {
    font-size: 9px;
  }
  .publish-inner .platform-choice {
    font-size: 6px;
    padding: 3px 0;
  }
  .publish-inner .brand-icon {
    width: 19px;
    height: 19px;
  }
  .publish-inner .selector-grid {
    gap: 8px 4px;
  }
  .publish-actions .mini-btn {
    font-size: 10px;
  }
  .publish-actions {
    gap: 18px;
  }
  .calendar-window,
  .analytics-window {
    padding: 17px 12px;
  }
  .widget-header {
    margin-bottom: 17px;
  }
  .widget-header h3 {
    font-size: 13px;
  }
  .widget-controls {
    gap: 3px;
  }
  .widget-control {
    font-size: 7px;
    padding: 4px 5px;
  }
  .week-heading {
    font-size: 7px;
    margin-bottom: 10px;
  }
  .week-heading strong {
    font-size: 10px;
  }
  .week-grid {
    gap: 2px;
  }
  .day-column {
    padding-left: 2px;
    min-height: 153px;
    gap: 7px;
  }
  .calendar-post,
  .calendar-post strong {
    font-size: 5px;
  }
  .calendar-post {
    padding: 5px 2px;
    min-height: 35px;
    border-radius: 2px;
  }
  .calendar-post .brand-icon {
    height: 7px;
    width: 7px;
    margin-right: 2px;
  }
  .calendar-post.instagram {
    margin-top: 44px;
  }
  .calendar-post.youtube {
    margin-top: 61px;
  }
  .calendar-caption {
    font-size: 8px;
  }
  .metric-grid {
    gap: 5px;
  }
  .metric {
    padding: 8px 5px;
  }
  .metric p {
    font-size: 6px;
    margin-bottom: 5px;
  }
  .metric strong {
    font-size: 18px;
  }
  .metric small {
    font-size: 6px;
  }
  .chart {
    margin-top: 12px;
  }
  .chart-tooltip {
    font-size: 6px;
    padding: 5px 6px;
    top: 23%;
  }
  .chart-labels {
    font-size: 6px;
    padding-left: 12px;
  }
  .chart-legend {
    font-size: 7px;
    margin-top: 12px;
  }
  .features-section {
    padding: 42px 0 45px;
  }
  .features-section h2 {
    font-size: 27px;
    max-width: 330px;
    margin-inline: auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .feature-card {
    padding: 21px 18px;
    gap: 15px;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .feature-icon {
    width: 41px;
    height: 41px;
  }
  .workflow-visual {
    padding: 15px 8px 11px 0;
  }
  .workflow-window {
    padding: 19px 15px;
  }
  .workflow-header .mini-brand {
    font-size: 15px;
  }
  .workflow-header .mini-brand img {
    width: 22px;
    height: 22px;
  }
  .workflow-header .mini-label {
    font-size: 8px;
  }
  .workflow-board {
    padding: 15px;
  }
  .workflow-person strong {
    font-size: 11px;
  }
  .workflow-step {
    font-size: 9px;
  }
  .workflow-step span {
    height: 38px;
    width: 38px;
  }
  .workflow-step .icon {
    width: 19px;
    height: 19px;
  }
  .workflow-result {
    padding: 9px 10px;
    font-size: 8px;
  }
  .workflow-result strong {
    font-size: 18px;
  }
  .workflow-tag {
    font-size: 8px;
    padding: 8px;
    right: 0;
    top: 0;
  }
  .workflow-tag .icon {
    width: 15px;
    height: 15px;
  }
  .workflow-visual > .visual-note {
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .testimonials-section {
    padding: 42px 0 43px;
  }
  .testimonials-section h2 {
    font-size: 27px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .testimonial-card {
    padding: 23px;
  }
  .testimonial-card blockquote {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .stars {
    font-size: 18px;
  }
  .customer img {
    height: 39px;
    width: 39px;
  }
  .customer strong {
    font-size: 12px;
  }
  .customer span {
    font-size: 10px;
  }
  .sample-note {
    font-size: 9px;
    margin-top: 14px;
  }
  .pricing-preview {
    padding: 46px 0 40px;
  }
  .pricing-preview h2 {
    font-size: 29px;
  }
  .section-heading p {
    font-size: 13px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 360px;
    margin-top: 35px;
  }
  .plan-card {
    padding: 27px 25px;
  }
  .plan-card.featured {
    padding: 26px 24px;
  }
  .plan-card h3 {
    font-size: 27px;
  }
  .plan-description {
    font-size: 13px;
  }
  .plan-price {
    font-size: 43px;
  }
  .plan-price span {
    font-size: 13px;
  }
  .plan-card .check-list li {
    font-size: 13px;
  }
  .plan-card .check-list {
    gap: 13px;
  }
  .plan-card .btn {
    min-height: 44px;
    font-size: 13px;
  }
  .pricing-more {
    font-size: 11px;
    margin-top: 22px;
  }
  .faq-section {
    padding: 39px 0 47px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-heading h2 {
    font-size: 28px;
    margin-bottom: 13px;
  }
  .faq-heading p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .faq-question {
    font-size: 12px;
    padding: 14px;
    gap: 13px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .final-cta {
    padding: 43px 0 41px;
  }
  .cta-inner {
    display: block;
  }
  .cta-inner h2 {
    font-size: 35px;
  }
  .cta-inner p {
    font-size: 13px;
    line-height: 1.8;
  }
  .cta-inner > .visual-note {
    margin-top: 28px;
    font-size: 16px;
    transform: rotate(-4deg);
    text-align: right;
  }
  .cta-inner > .visual-note br {
    display: none;
  }
  .cta-inner .btn {
    font-size: 12px;
    padding: 11px 16px;
  }
  .site-footer {
    padding-top: 32px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-bottom: 29px;
  }
  .footer-brand p {
    max-width: 290px;
    font-size: 12px;
    margin: 15px 0;
  }
  .footer-title {
    font-size: 10px;
    margin-bottom: 17px;
  }
  .contact-list {
    font-size: 12px;
    gap: 13px;
  }
  .footer-links-column {
    grid-column: auto;
  }
  .quick-links {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 12px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 21px 0;
    font-size: 9px;
  }
  .made-with {
    margin-left: 0 !important;
  }
  .legal-links {
    gap: 15px;
  }
  .pricing-hero {
    padding: 39px 0 34px;
  }
  .pricing-hero h1 {
    font-size: 42px;
  }
  .pricing-hero p {
    font-size: 14px;
    max-width: 260px;
    margin-inline: auto;
    line-height: 1.7;
  }
  .pricing-hero .btn {
    font-size: 13px;
  }
  .pricing-plans-section {
    padding: 36px 0 37px;
  }
  .billing-label {
    font-size: 9px;
    margin-bottom: 34px;
    letter-spacing: 0.11em;
  }
  .full-plans {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 39px;
  }
  .full-plans .plan-card {
    padding: 27px 25px;
  }
  .full-plans .plan-card.featured {
    padding: 26px 24px;
  }
  .full-plans .plan-card h3 {
    font-size: 23px;
  }
  .full-plans .plan-card .plan-description {
    font-size: 13px;
    min-height: 0;
    margin-bottom: 18px;
  }
  .full-plans .plan-card .check-list li {
    font-size: 13px;
  }
  .full-plans .plan-price {
    font-size: 44px;
    margin-bottom: 20px;
  }
  .full-plans .plan-price.custom {
    font-size: 33px;
  }
  .billing-note {
    font-size: 10px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .platform-band {
    padding: 23px 15px;
    margin-top: 26px;
  }
  .platform-band h3 {
    font-size: 21px;
  }
  .platform-band .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 21px 12px;
  }
  .platform-band .integration-tile span {
    font-size: 9px;
  }
  .platform-band .integration-tile .brand-icon {
    width: 26px;
    height: 26px;
  }
  .pricing-quote {
    padding: 25px 22px;
    gap: 17px;
    flex-wrap: wrap;
    position: relative;
  }
  .pricing-quote > img {
    height: 53px;
    width: 53px;
  }
  .pricing-quote blockquote {
    font-size: 19px;
  }
  .quote-author {
    font-size: 10px;
    gap: 9px;
  }
  .quote-author .stars {
    font-size: 17px;
  }
  .comparison-section {
    padding: 11px 0 39px;
  }
  .comparison-title {
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 14px;
  }
  .comparison-title h2 {
    font-size: 29px;
  }
  .comparison-title .text-link {
    font-size: 11px;
  }
  .comparison-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    color: #7a848d;
    margin-bottom: 10px;
  }
  .comparison-hint .icon {
    height: 13px;
    width: 13px;
  }
  .comparison-table {
    font-size: 11px;
    min-width: 725px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 10px;
  }
  .comparison-table col:first-child {
    width: 27%;
  }
  .comparison-table col {
    width: 18.25%;
  }
  .comparison-table tbody tr:not(.category-row) > th {
    position: sticky;
    left: 0;
    background: #fff;
    box-shadow: 3px 0 5px #1c2a3910;
    z-index: 1;
  }
  .comparison-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .limit-note {
    font-size: 10px;
  }
  .pricing-faq {
    padding: 39px 0 44px;
  }
  .pricing-final-cta h2 {
    font-size: 32px;
  }
  .pricing-final-cta .cta-inner p {
    font-size: 13px;
  }
  .toast {
    font-size: 12px;
    bottom: 16px;
    padding: 12px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover {
    transform: none;
  }
}
