/* =========================================================
   PUBLIQUE STUDIO — LANDING PAGE
   Arquivo independente, sem frameworks ou dependências externas.
   ========================================================= */

:root {
  --ink: #10182b;
  --ink-2: #17223a;
  --ink-3: #263552;
  --paper: #f6f5f1;
  --white: #ffffff;
  --soft: #eef0f4;
  --soft-blue: #e9efff;
  --line: rgba(16, 24, 43, .12);
  --muted: #667085;
  --muted-light: #aab2c2;
  --accent: #ff674d;
  --accent-hover: #ed5239;
  --accent-soft: #fff0ec;
  --blue: #536dfe;
  --blue-dark: #3f56d9;
  --green: #18a77a;
  --yellow: #f2b84b;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 30px rgba(20, 30, 55, .08);
  --shadow: 0 24px 70px rgba(13, 24, 51, .16);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 100px;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(255, 103, 77, .24);
}

.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 15px 34px rgba(255, 103, 77, .30);
}

.button-secondary {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.20);
}

.button-secondary:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.34);
}

.button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(16, 24, 43, .22);
}

.button-outline:hover {
  color: var(--blue-dark);
  border-color: var(--blue);
  box-shadow: 0 10px 25px rgba(50, 69, 150, .10);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(0,0,0,.15);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: .92rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.pricing-heading h2,
.credits-copy h2,
.faq-copy h2,
.steps-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.052em;
}

.section-heading p,
.pricing-heading p,
.credits-copy > p,
.faq-copy > p,
.steps-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(16, 24, 43, .1);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(210px, 25vw, 310px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--accent), #ff896c);
  border-radius: 13px;
  box-shadow: 0 8px 25px rgba(255, 103, 77, .22);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.03rem;
  letter-spacing: -.02em;
}

.brand-text small {
  color: var(--muted-light);
  font-size: .68rem;
  letter-spacing: .035em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a {
  color: rgba(16,24,43,.78);
  font-size: .9rem;
  font-weight: 650;
  transition: color .2s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--blue);
}

.main-nav .nav-login {
  padding-left: 24px;
  border-left: 1px solid rgba(16,24,43,.15);
}

.main-nav .button {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(16,24,43,.18);
  border-radius: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 100px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(83, 109, 254, .17), transparent 31%),
    radial-gradient(circle at 10% 50%, rgba(255, 103, 77, .10), transparent 30%),
    var(--ink);
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  right: 2%;
  top: 20%;
  width: 280px;
  height: 280px;
  background: rgba(83, 109, 254, .18);
}

.hero-glow-two {
  left: -120px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  background: rgba(255, 103, 77, .12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(510px, 1.16fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.7rem, 6.2vw, 6.55rem);
  line-height: .92;
  letter-spacing: -.072em;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.46);
  font-size: .78rem;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.audience-list span {
  padding: 7px 11px;
  color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 650;
}

.hero-product {
  position: relative;
  padding: 24px 0 30px;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.browser-shell {
  position: relative;
  overflow: hidden;
  background: #f8f9fb;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 18px;
  box-shadow:
    0 40px 100px rgba(0,0,0,.36),
    0 0 0 1px rgba(255,255,255,.05);
}

.browser-top {
  display: grid;
  grid-template-columns: 95px 1fr 40px;
  align-items: center;
  gap: 12px;
  height: 46px;
  padding: 0 13px;
  background: #e7e9ee;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  background: #c3c7d0;
  border-radius: 50%;
}

.browser-dots i:first-child { background: #ff7161; }
.browser-dots i:nth-child(2) { background: #f2bf4b; }
.browser-dots i:nth-child(3) { background: #48c77b; }

.browser-address {
  overflow: hidden;
  padding: 7px 12px;
  color: #7a8292;
  background: rgba(255,255,255,.8);
  border-radius: 7px;
  font-size: .61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  justify-self: end;
  color: var(--white);
  background: var(--ink-3);
  border-radius: 50%;
  font-size: .52rem;
  font-weight: 900;
}

.product-shell {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 470px;
  color: var(--ink);
}

.product-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  padding: 16px 8px;
  color: var(--white);
  background: var(--ink-2);
}

.mini-brand {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #000;
  border-radius: 7px;
}

.mini-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.side-item {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: rgba(255,255,255,.56);
  border-radius: 8px;
  font-size: .52rem;
  font-weight: 850;
}

.side-item.active {
  color: var(--white);
  background: var(--blue);
}

.side-item.muted {
  font-size: .72rem;
}

.side-separator {
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.product-main {
  padding: 19px 20px 17px;
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.product-heading div {
  display: grid;
}

.product-heading small {
  color: var(--blue);
  font-size: .55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-heading strong {
  font-size: 1rem;
}

.status-pill {
  padding: 5px 8px;
  color: var(--green);
  background: rgba(24,167,122,.09);
  border-radius: 100px;
  font-size: .51rem;
  font-weight: 800;
}

.url-field {
  display: flex;
  height: 38px;
  align-items: center;
  margin-top: 15px;
  padding-left: 12px;
  color: #8a92a2;
  background: var(--white);
  border: 1px solid #dde0e6;
  border-radius: 8px;
  font-size: .56rem;
}

.url-field span {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.url-field button {
  align-self: stretch;
  padding: 0 13px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 0 7px 7px 0;
  font-size: .55rem;
  font-weight: 800;
}

.workflow-line {
  display: flex;
  width: 62%;
  align-items: center;
  margin: 12px auto;
}

.workflow-line i {
  height: 1px;
  flex: 1;
  background: #dfe2e8;
}

.workflow-step {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #9aa1af;
  background: #edf0f4;
  border-radius: 50%;
  font-size: .48rem;
  font-weight: 800;
}

.workflow-step.done {
  color: var(--white);
  background: var(--green);
}

.workflow-step.active {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(83,109,254,.12);
}

.generated-grid {
  display: grid;
  grid-template-columns: 1.22fr .72fr .92fr;
  grid-template-rows: 1fr .78fr;
  gap: 8px;
  height: 252px;
}

.generated-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e1e4ea;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(16,24,43,.05);
}

.card-feed {
  grid-row: span 2;
}

.card-photo {
  position: relative;
  overflow: hidden;
  height: 62%;
  background: linear-gradient(150deg, #758cc0, #d9b3a8 55%, #45587d);
}

.photo-shape {
  position: absolute;
  background: rgba(255,255,255,.16);
  border-radius: 40%;
}

.photo-shape.one {
  width: 110px;
  height: 110px;
  right: -15px;
  top: 4px;
}

.photo-shape.two {
  width: 70px;
  height: 70px;
  left: 22px;
  bottom: -20px;
  background: rgba(16,24,43,.2);
}

.card-category {
  position: absolute;
  z-index: 2;
  left: 8px;
  top: 8px;
  padding: 3px 6px;
  color: var(--white);
  background: var(--accent);
  border-radius: 4px;
  font-size: .4rem;
  font-weight: 900;
}

.card-caption {
  display: grid;
  gap: 9px;
  padding: 13px 11px;
}

.card-caption strong {
  font-size: .72rem;
  line-height: 1.2;
}

.card-caption small {
  color: #9aa1af;
  font-size: .45rem;
}

.format-label {
  position: absolute;
  right: 6px;
  bottom: 5px;
  padding: 3px 5px;
  color: #727b8c;
  background: rgba(239,241,245,.92);
  border-radius: 4px;
  font-size: .4rem;
  font-weight: 800;
}

.card-story {
  grid-row: span 2;
}

.story-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 36%, rgba(9,15,28,.88)),
    linear-gradient(135deg, #d8a081, #7282a2 50%, #2d3957);
}

.story-lines {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 25px;
}

.story-lines i {
  display: block;
  height: 6px;
  margin-top: 5px;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
}

.story-lines i:nth-child(2) { width: 87%; }
.story-lines i:nth-child(3) { width: 55%; }

.video-preview {
  position: relative;
  height: 78px;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.6)),
    linear-gradient(135deg, #79a8a0, #3f536c);
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: rgba(16,24,43,.72);
  border-radius: 50%;
  font-size: .47rem;
  transform: translate(-50%, -50%);
}

.subtitle-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 5px;
  background: rgba(255,255,255,.82);
  border-radius: 2px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}

.video-meta strong {
  font-size: .54rem;
}

.video-meta small {
  color: #8f96a5;
  font-size: .45rem;
}

.newsletter-top {
  height: 17px;
  background: var(--ink-2);
}

.newsletter-content {
  display: grid;
  gap: 5px;
  padding: 9px;
}

.newsletter-content i {
  height: 4px;
  background: #dfe2e8;
  border-radius: 2px;
}

.newsletter-content i:nth-child(2) { width: 82%; }
.newsletter-content i:nth-child(3) { width: 61%; }

.newsletter-content span {
  display: block;
  margin-top: 2px;
  padding: 5px 4px;
  color: var(--white);
  background: var(--accent);
  border-radius: 3px;
  font-size: .35rem;
  font-weight: 800;
  text-align: center;
}

.product-result {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  padding: 9px 10px;
  background: rgba(24,167,122,.07);
  border: 1px solid rgba(24,167,122,.16);
  border-radius: 8px;
}

.result-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
}

.product-result div {
  display: grid;
  flex: 1;
}

.product-result strong {
  font-size: .59rem;
}

.product-result small {
  color: #7d8594;
  font-size: .43rem;
}

.product-result button {
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font-size: .46rem;
  font-weight: 800;
}

.floating-stat {
  position: absolute;
  display: grid;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 11px;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.floating-stat span {
  color: var(--blue);
  font-size: .55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-stat strong {
  margin-top: 1px;
  font-size: .74rem;
}

.floating-stat-one {
  left: -38px;
  bottom: 7px;
}

.floating-stat-two {
  right: -22px;
  top: 5px;
}

.logos-strip {
  color: #b3bac8;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
}

.logos-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logos-inner p {
  max-width: 340px;
  margin: 0;
  font-size: .82rem;
}

.logos-inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.logos-inner span {
  color: rgba(255,255,255,.62);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Problem / Solution */

.problem-section {
  background: var(--paper);
}

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

.problem-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.problem-grid .number {
  display: block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.problem-grid h3 {
  margin: 60px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.problem-grid article::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 115px;
  right: -55px;
  top: -55px;
  background: var(--accent-soft);
  border-radius: 50%;
}

.solution-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-top: 28px;
  padding: 55px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(83,109,254,.14), transparent 45%),
    var(--ink);
  border-radius: var(--radius-lg);
}

.solution-banner > div:first-child {
  max-width: 650px;
}

.solution-banner h2 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.solution-banner p:last-child {
  margin: 0;
  color: rgba(255,255,255,.66);
}

.solution-flow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.solution-flow span {
  display: grid;
  min-width: 75px;
  min-height: 75px;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  font-size: .75rem;
  font-weight: 850;
}

.solution-flow span:first-child {
  background: var(--accent);
  border-color: var(--accent);
}

.solution-flow i {
  color: rgba(255,255,255,.38);
  font-style: normal;
}

/* Modules */

.modules-section {
  background: #eceef2;
}

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

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16,24,43,.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.module-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.module-code {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 900;
}

.module-card.featured .module-code {
  background: var(--accent);
}

.module-tag {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.module-card.featured .module-tag {
  color: rgba(255,255,255,.5);
}

.module-card h3 {
  margin: 28px 0 12px;
  font-size: 1.75rem;
  letter-spacing: -.035em;
}

.module-card > p {
  min-height: 100px;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.module-card.featured > p {
  color: rgba(255,255,255,.64);
}

.module-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.module-card li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: #4e596d;
  font-size: .86rem;
}

.module-card li::before,
.price-card li::before {
  position: absolute;
  content: "✓";
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.module-card.featured li {
  color: rgba(255,255,255,.72);
}

.module-visual {
  position: absolute;
  overflow: hidden;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 150px;
  background: #edf0f5;
  border: 1px solid rgba(16,24,43,.08);
  border-radius: 16px;
}

.module-card.featured .module-visual {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}

.visual-ga {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 12px;
  padding: 15px;
}

.visual-ga .canvas {
  position: relative;
  background: linear-gradient(145deg, #6e7f9b, #d5a489);
  border-radius: 10px;
}

.visual-ga .canvas span {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 36px;
  height: 10px;
  background: var(--accent);
  border-radius: 4px;
}

.visual-ga .canvas i {
  position: absolute;
  left: 12px;
  right: 22px;
  bottom: 32px;
  height: 8px;
  background: var(--white);
  border-radius: 3px;
}

.visual-ga .canvas i:last-child {
  right: 48px;
  bottom: 19px;
}

.tool-panel {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 10px;
  background: var(--white);
  border-radius: 9px;
}

.tool-panel i {
  height: 13px;
  background: #e7eaf0;
  border-radius: 4px;
}

.visual-gv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 10px 25px;
}

.phone {
  position: relative;
  width: 70px;
  height: 130px;
  overflow: hidden;
  background: #576d76;
  border: 4px solid rgba(255,255,255,.16);
  border-radius: 15px;
}

.phone-scene {
  height: 100%;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(0,0,0,.67)),
    linear-gradient(150deg, #d6a978, #597787 56%, #28374f);
}

.phone-play {
  position: absolute;
  left: 50%;
  top: 40%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: rgba(0,0,0,.45);
  border-radius: 50%;
  font-size: .45rem;
  transform: translate(-50%, -50%);
}

.phone-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 5px;
  background: var(--white);
  border-radius: 2px;
}

.timeline {
  display: grid;
  gap: 8px;
  width: 120px;
}

.timeline i {
  height: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
}

.timeline i:nth-child(2) {
  background: rgba(255,103,77,.5);
}

.visual-gn {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 11px;
  padding: 15px;
}

.mail {
  padding: 0 12px 10px;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 7px 22px rgba(16,24,43,.10);
}

.mail-head {
  height: 23px;
  margin: 0 -12px 14px;
  background: var(--ink);
  border-radius: 9px 9px 0 0;
}

.mail i {
  display: block;
  height: 6px;
  margin: 6px 0;
  background: #dfe2e8;
  border-radius: 3px;
}

.mail i:nth-child(3) { width: 82%; }
.mail i:nth-child(4) { width: 60%; }

.mail span {
  display: block;
  height: 16px;
  margin-top: 13px;
  background: var(--accent);
  border-radius: 4px;
}

.mail-side {
  display: grid;
  align-content: start;
  gap: 9px;
}

.mail-side i {
  height: 27px;
  background: var(--white);
  border-radius: 6px;
}

/* Steps */

.steps-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(83,109,254,.14), transparent 35%),
    var(--ink-2);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, .75fr);
  align-items: center;
  gap: 90px;
}

.steps-copy > p {
  color: rgba(255,255,255,.61);
}

.steps-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding-bottom: 25px;
}

.steps-list li::after {
  position: absolute;
  content: "";
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.13);
}

.steps-list li:last-child::after {
  display: none;
}

.steps-list li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-weight: 900;
}

.steps-list li.active > span {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.steps-list strong {
  display: block;
  margin-top: 1px;
  font-size: 1.03rem;
}

.steps-list p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.49);
  font-size: .88rem;
}

.steps-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.steps-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps-panel-header span {
  font-weight: 900;
}

.steps-panel-header small {
  color: var(--muted);
}

.steps-progress {
  overflow: hidden;
  height: 5px;
  margin: 13px 0 22px;
  background: #e9ebef;
  border-radius: 100px;
}

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

.source-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: #f5f6f8;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
}

.source-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 9px;
  font-weight: 900;
}

.source-card div:nth-child(2) {
  display: grid;
  min-width: 0;
  flex: 1;
}

.source-card small {
  color: var(--muted);
  font-size: .66rem;
}

.source-card strong {
  overflow: hidden;
  font-size: .78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-card > span {
  color: var(--green);
  font-size: .65rem;
  font-weight: 850;
}

.steps-panel h3 {
  margin: 23px 0 12px;
  font-size: 1rem;
}

.output-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #e6e8ed;
  border-radius: 10px;
}

.output-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fake-check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 900;
}

.output-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border-radius: 8px;
  font-size: .62rem;
  font-weight: 900;
}

.output-option > span:nth-child(4) {
  display: grid;
}

.output-option strong {
  font-size: .76rem;
}

.output-option small {
  color: var(--muted);
  font-size: .61rem;
}

.output-option em {
  color: var(--muted);
  font-size: .56rem;
  font-style: normal;
}

.steps-button {
  width: 100%;
  margin-top: 17px;
}

/* Benefits */

.benefits-section {
  background: var(--paper);
}

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

.benefit-grid article {
  min-height: 220px;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 30px 0 8px;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

/* Pricing */

.pricing-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,103,77,.08), transparent 25%),
    var(--ink);
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.pricing-heading > div:first-child {
  max-width: 680px;
}

.pricing-heading p {
  color: rgba(255,255,255,.62);
}

.billing-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
}

.billing-toggle button {
  min-height: 39px;
  padding: 0 14px;
  color: rgba(255,255,255,.62);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: .75rem;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button span {
  color: #92e4c8;
  font-size: .62rem;
}

.billing-toggle button.active {
  color: var(--ink);
  background: var(--white);
}

.billing-toggle button.active span {
  color: var(--green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 12px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 26px 22px;
  color: var(--ink);
  background: #f9fafb;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 19px;
  flex-direction: column;
}

.price-card.recommended {
  background: var(--white);
  outline: 2px solid var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.recommended-label {
  position: absolute;
  left: 50%;
  top: -14px;
  padding: 6px 13px;
  color: var(--white);
  background: var(--accent);
  border-radius: 100px;
  font-size: .64rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-kicker {
  color: var(--blue);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-top h3 {
  margin: 8px 0 4px;
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.price-top p {
  min-height: 64px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.price {
  display: flex;
  align-items: baseline;
  margin-top: 23px;
  white-space: nowrap;
}

.price > span {
  margin-right: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.price strong {
  font-size: 2.18rem;
  line-height: 1;
  letter-spacing: -.055em;
}

.price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: .64rem;
}

.billing-note {
  min-height: 31px;
  margin: 7px 0 0;
  color: #9299a6;
  font-size: .58rem;
}

.credit-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0;
  padding: 10px;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border-radius: 10px;
}

.credit-badge.neutral {
  color: #596274;
  background: #eceef2;
}

.credit-badge strong {
  font-size: 1rem;
}

.credit-badge span {
  font-size: .61rem;
  font-weight: 700;
}

.price-card .button {
  width: 100%;
}

.price-card ul {
  margin-top: 22px;
}

.price-card li {
  font-size: .72rem;
  line-height: 1.45;
}

.pricing-footnote {
  display: flex;
  max-width: 720px;
  align-items: flex-start;
  gap: 10px;
  margin: 31px auto 0;
  color: rgba(255,255,255,.52);
}

.pricing-footnote span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 900;
}

.pricing-footnote p {
  margin: 0;
  font-size: .7rem;
  text-align: center;
}

/* Credits */

.credits-section {
  background: #eceef2;
}

.credits-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(490px, 1fr);
  align-items: center;
  gap: 85px;
}

.credit-rules {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.credit-rules span {
  position: relative;
  padding-left: 27px;
  color: #455167;
  font-size: .88rem;
  font-weight: 700;
}

.credit-rules span::before {
  position: absolute;
  content: "✓";
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.credit-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.credit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 21px;
  border-top: 1px solid #eceef2;
  font-size: .84rem;
}

.credit-row.header {
  color: var(--white);
  background: var(--ink);
  border-top: 0;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credit-row strong {
  color: var(--ink);
  font-size: .78rem;
}

.credit-row > span {
  display: flex;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
}

.dot.free { background: var(--green); }
.dot.paid { background: var(--blue); }
.dot.quality { background: var(--accent); }

/* FAQ */

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: .64fr 1fr;
  align-items: start;
  gap: 90px;
}

.faq-copy {
  position: sticky;
  top: 125px;
}

.dark-button {
  margin-top: 28px;
  color: var(--ink);
  background: transparent;
  border-color: rgba(16,24,43,.22);
}

.dark-button:hover {
  background: var(--white);
  border-color: rgba(16,24,43,.35);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  content: "+";
  right: 4px;
  top: 19px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  margin: -5px 45px 24px 0;
  color: var(--muted);
  font-size: .93rem;
}

/* Final CTA / Footer */

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(255,255,255,.05), transparent 50%),
    var(--blue-dark);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.final-cta p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.68);
}

.final-actions {
  display: grid;
  gap: 11px;
  flex: 0 0 auto;
  text-align: center;
}

.final-actions small {
  color: rgba(255,255,255,.56);
  font-size: .7rem;
}

.site-footer {
  padding: 70px 0 90px;
  color: rgba(255,255,255,.65);
  background: #0b1221;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .62fr);
  gap: 50px;
}

.footer-brand .brand {
  color: var(--white);
}

.brand-symbol-footer {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: .85rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .82rem;
}

.footer-column a {
  font-size: .78rem;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .71rem;
}

.mobile-cta {
  position: fixed;
  z-index: 900;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 10px 10px 15px;
  color: var(--white);
  background: rgba(16,24,43,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(15px);
}

.mobile-cta div {
  display: grid;
}

.mobile-cta small {
  color: rgba(255,255,255,.54);
  font-size: .58rem;
}

.mobile-cta strong {
  font-size: .82rem;
}

/* Motion */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-product {
    animation: reveal .75s ease both;
  }

  .hero-product {
    animation-delay: .12s;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a {
    font-size: .82rem;
  }

  .hero-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 6vw, 5rem);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .price-card.recommended {
    transform: none;
  }

  .solution-banner {
    grid-template-columns: 1fr;
  }

  .solution-flow {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0 20px;
    background: rgba(16,24,43,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
  }

  .main-nav.open {
    max-height: calc(100vh - 80px);
    padding-top: 12px;
    padding-bottom: 24px;
    opacity: 1;
  }

  .main-nav > a {
    padding: 13px 3px;
    color: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .95rem;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    color: var(--white);
  }

  .main-nav .nav-login {
    padding-left: 3px;
    border-left: 0;
  }

  .main-nav .button {
    margin-top: 10px;
    border-bottom: 0;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .audience-list {
    justify-content: center;
  }

  .hero-product {
    max-width: 680px;
    margin: 15px auto 0;
    transform: none;
  }

  .logos-inner {
    padding: 22px 0;
    flex-direction: column;
    text-align: center;
  }

  .logos-inner div {
    justify-content: center;
  }

  .problem-grid,
  .module-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-card.featured {
    transform: none;
  }

  .steps-layout,
  .credits-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-copy {
    position: static;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 650px) {
  :root {
    --radius: 17px;
    --radius-lg: 22px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-text small {
    display: none;
  }

  .main-nav {
    inset: 72px 0 auto;
  }

  .hero {
    padding: 118px 0 65px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    font-size: .7rem;
  }

  .audience-list {
    margin-top: 28px;
  }

  .hero-product {
    margin-top: 5px;
    padding-bottom: 45px;
  }

  .browser-top {
    grid-template-columns: 58px 1fr 30px;
  }

  .product-shell {
    grid-template-columns: 43px 1fr;
    min-height: 410px;
  }

  .product-sidebar {
    padding-inline: 5px;
  }

  .product-main {
    padding: 13px 11px;
  }

  .product-heading strong {
    font-size: .82rem;
  }

  .status-pill {
    display: none;
  }

  .generated-grid {
    grid-template-columns: 1.15fr .7fr;
    height: 220px;
  }

  .card-video,
  .card-newsletter {
    display: none;
  }

  .floating-stat-one {
    left: 5px;
  }

  .floating-stat-two {
    right: 5px;
    top: -5px;
  }

  .logos-inner div {
    gap: 14px 20px;
  }

  .problem-grid,
  .module-grid,
  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: 220px;
  }

  .problem-grid h3 {
    margin-top: 45px;
  }

  .solution-banner {
    padding: 35px 25px;
  }

  .solution-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    width: 100%;
  }

  .solution-flow span {
    min-width: 0;
    min-height: 58px;
    font-size: .62rem;
  }

  .solution-flow i {
    display: none;
  }

  .module-card {
    min-height: 590px;
  }

  .steps-layout {
    gap: 40px;
  }

  .steps-panel {
    padding: 20px 15px;
  }

  .output-option {
    grid-template-columns: 21px 34px 1fr;
  }

  .output-option em {
    display: none;
  }

  .benefit-grid article {
    min-height: 190px;
  }

  .pricing-heading {
    gap: 28px;
  }

  .billing-toggle {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .billing-toggle button {
    padding-inline: 5px;
    font-size: .68rem;
  }

  .credit-row {
    padding: 15px;
    font-size: .75rem;
  }

  .credit-row strong {
    text-align: right;
  }

  .faq-list summary {
    font-size: .92rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 125px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 390px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: .92rem;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .floating-stat-two {
    display: none;
  }

  .billing-toggle button span {
    display: none;
  }
}
