@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --green: #00aa45;
  --green-dark: #1e874b;
  --gray-00: #ffffff;
  --gray-25: #f8f9fb;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-1k: #0d0d0d;
  --radius-button: 12px;
  --radius-pill: 9999px;
  --radius-card: 12px;
  --shadow-10: 0 3px 3px -1.5px rgba(0, 0, 0, 0.03), 0 6px 6px -3px rgba(0, 0, 0, 0.03),
    0 12px 12px -6px rgba(0, 0, 0, 0.03);
  --shadow-15: 0 3px 3px -1.5px rgba(0, 0, 0, 0.08), 0 6px 6px -3px rgba(0, 0, 0, 0.08),
    0 12px 12px -6px rgba(0, 0, 0, 0.08), 0 24px 24px -12px rgba(0, 0, 0, 0.08);
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --container: 1120px;
  --narrow: 760px;
  --site-header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-1k);
  background: var(--gray-00);
}

#main-content {
  position: relative;
  z-index: 1;
}

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

img {
  max-width: 100%;
}

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

.narrow {
  width: min(calc(100% - 2rem), var(--narrow));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--gray-00);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--site-header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow-10);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
}

.site-nav a:not(.btn) {
  color: var(--gray-600);
}

.site-nav a:not(.btn):hover {
  color: var(--gray-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gray-1k);
  color: var(--gray-00);
}

.btn-primary:hover {
  background: var(--gray-800);
}

.btn-ghost {
  border-color: var(--gray-200);
  background: var(--gray-00);
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--gray-50);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 5rem 0 3rem;
}

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

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0 auto 1.25rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  background: var(--gray-00);
  box-shadow: var(--shadow-10);
}

.hero-avatars {
  display: flex;
  align-items: center;
  padding-left: 0.25rem;
}

.hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: -0.45rem;
  border: 2px solid var(--gray-00);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #dbeafe;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-face {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-face-head {
  position: absolute;
  left: 50%;
  bottom: 0.12rem;
  transform: translateX(-50%);
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--face-skin, #e8b892);
}

.hero-face-hair {
  position: absolute;
  left: 50%;
  top: 0.12rem;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 0.82rem;
  border-radius: 50% 50% 0 0;
  background: var(--face-hair, #3d2314);
  z-index: 1;
}

.hero-face-eyes {
  position: absolute;
  left: 50%;
  bottom: 0.42rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.22rem;
  z-index: 2;
}

.hero-face-eye {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: #1a1a1a;
}

.hero-avatar--1 {
  --face-skin: #e8b892;
  --face-hair: #3d2314;
  background: #dbeafe;
}

.hero-avatar--1 .hero-face-hair {
  width: 1.38rem;
  height: 0.74rem;
  top: 0.16rem;
}

.hero-avatar--2 {
  --face-skin: #f5d0b5;
  --face-hair: #c49a3c;
  background: #ede9fe;
}

.hero-avatar--2 .hero-face-hair {
  width: 1.42rem;
  height: 0.88rem;
  border-radius: 58% 58% 42% 42%;
  top: 0.1rem;
}

.hero-avatar--3 {
  --face-skin: #c68642;
  --face-hair: #1a1209;
  background: #fce7f3;
}

.hero-avatar--3 .hero-face-hair {
  width: 1.46rem;
  height: 0.92rem;
  border-radius: 50%;
  top: 0.06rem;
}

.hero-avatar--4 {
  --face-skin: #d4a574;
  --face-hair: #6b3420;
  background: #ffedd5;
}

.hero-avatar--4 .hero-face-hair {
  width: 1.28rem;
  height: 0.78rem;
  left: 48%;
  border-radius: 45% 55% 0 0;
}

.hero-avatar--5 {
  --face-skin: #ffe0bd;
  --face-hair: #4a4a4a;
  background: #dcfce7;
}

.hero-avatar--5 .hero-face-hair {
  width: 1.24rem;
  height: 0.54rem;
  border-radius: 50% 50% 28% 28%;
  top: 0.24rem;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-align: left;
}

.hero-rating-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-rating-text {
  margin: 0;
  font-size: 13px;
  color: var(--gray-600);
}

.hero-rating-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

.hero h1,
.service-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  color: var(--gray-500);
  font-size: 18px;
}

.service-finder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.service-finder input {
  flex: 1 1 280px;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-button);
  font: inherit;
  background: var(--gray-00);
  box-shadow: var(--shadow-10);
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.platform-pill {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  background: var(--gray-00);
  color: var(--gray-700);
  font-size: 13px;
  box-shadow: var(--shadow-10);
}

.platform-pill:hover {
  border-color: var(--gray-300);
}

.section {
  padding: 4rem 0;
}

#catalog {
  scroll-margin-top: calc(var(--site-header-height) + 1rem);
}

.section-muted {
  background: var(--gray-25);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--gray-500);
}

.service-grid,
.stats-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.stat-card,
.feature-card,
.summary-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background: var(--gray-00);
  box-shadow: var(--shadow-10);
}

.service-card,
.feature-card {
  padding: 1.25rem;
}

.service-card {
  position: relative;
}

.service-card-stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: auto;
}

.service-card-top,
.service-card h3,
.service-card p,
.service-card .card-price {
  position: relative;
  z-index: 1;
}

.service-card-stretched-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.service-card:hover h3 {
  color: var(--green-dark);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-badge,
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.service-badge {
  background: rgba(0, 170, 69, 0.1);
  color: var(--green-dark);
}

.trust-pill {
  background: var(--gray-100);
  color: var(--gray-600);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
}

.card-price {
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.card-price span {
  color: var(--gray-500);
  font-weight: 500;
}

.card-link-hint {
  margin: 0.75rem 0 0;
  color: var(--gray-500);
  font-size: 13px;
}

.card-actions {
  position: relative;
  z-index: 3;
  isolation: isolate;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: calc(var(--radius-card) - 2px);
  background: var(--gray-25);
  transform: translateZ(0);
}

.service-card .get-reviews-form {
  max-width: none;
  width: 100%;
  gap: 0.75rem;
}

.service-card .get-reviews-form input[type="url"] {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-button);
  background-color: var(--gray-00);
  color: var(--gray-900);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06), var(--shadow-10);
  -webkit-appearance: none;
  appearance: none;
  opacity: 1;
}

.service-card .get-reviews-form input[type="url"]::placeholder {
  color: var(--gray-400);
  opacity: 1;
}

.service-card .get-reviews-form input[type="url"]:focus {
  outline: none;
  border-color: var(--green);
  box-shadow:
    0 0 0 3px rgba(0, 170, 69, 0.14),
    inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.service-card .get-reviews-form input[type="url"]:-webkit-autofill,
.service-card .get-reviews-form input[type="url"]:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--gray-900);
  box-shadow: 0 0 0 1000px var(--gray-00) inset;
  transition: background-color 9999s ease-out 0s;
}

.service-card .get-reviews-form .get-reviews-submit {
  position: relative;
  z-index: 1;
  width: 100%;
}

.stat-card {
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  margin: 0.35rem 0 0;
  color: var(--gray-500);
  font-size: 14px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
}

.service-hero {
  padding: 3.5rem 0 2rem;
}

.content-hero {
  padding: 3.5rem 0 2rem;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.summary-card {
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--site-header-height) + 1.5rem);
}

.service-cta-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.service-cta-label {
  margin: 0 0 0.75rem;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.service-cta-lead {
  margin: 0 0 1rem;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.5;
}

.service-cta-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.service-cta-panel {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background: var(--gray-00);
  box-shadow: var(--shadow-10);
  padding: 1.25rem;
}

.summary-label {
  margin: 0 0 0.35rem;
  color: var(--gray-500);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.summary-price {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.summary-meta {
  margin: 0 0 0.35rem;
  color: var(--gray-500);
  font-size: 14px;
}

.feature-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--gray-600);
}

.feature-list li + li {
  margin-top: 0.35rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article {
  padding-bottom: 1rem;
}

.article .content-section + .content-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.content-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: var(--gray-900);
}

.content-section h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--gray-800);
}

.content-section p {
  margin: 0;
  color: var(--gray-600);
}

.content-section p + p {
  margin-top: 0.85rem;
}

.faq-section .faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-section .faq-item {
  padding: 0;
  border: 0;
}

.faq-list {
  margin: 0;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.faq-item dt {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.faq-item dd {
  margin: 0;
  color: var(--gray-600);
}

.site-footer {
  border-top: 1px solid var(--gray-200);
  background: var(--gray-25);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.footer-copy,
.site-footer p {
  margin: 0 0 0.35rem;
  color: var(--gray-500);
  font-size: 14px;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
}

.get-reviews-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 640px;
}

.get-reviews-form-stacked {
  flex-direction: column;
  align-items: stretch;
  max-width: none;
}

.get-reviews-form input[type="url"] {
  flex: 1 1 12rem;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-button);
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  background: var(--gray-00);
}

.get-reviews-form-stacked input[type="url"] {
  flex: none;
}

.get-reviews-form .get-reviews-submit {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 1.125rem;
  white-space: nowrap;
}

.get-reviews-form-stacked .get-reviews-submit {
  width: 100%;
}

.flow-main .get-reviews-form {
  max-width: none;
}

.flow-main .get-reviews-form:not(.get-reviews-form-stacked) {
  flex-direction: column;
  align-items: stretch;
}

.flow-main .get-reviews-form:not(.get-reviews-form-stacked) .get-reviews-submit {
  width: 100%;
}

.flow-main {
  padding: 2.5rem 0 4rem;
}

.flow-panel {
  margin-top: 1.5rem;
}

.flow-panel h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.generated-review-card {
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background: var(--gray-00);
  line-height: 1.6;
}

.platform-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-picker-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background: #fff;
}

.platform-picker-card-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.platform-picker-card h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1rem;
}

.platform-picker-form {
  margin: 0;
}

.hero-inner .get-reviews-form {
  max-width: 560px;
  margin: 1.5rem auto 0;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--gray-500);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.25rem;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  font-size: 11px;
}

.flow-step-active {
  color: var(--gray-900);
  font-weight: 600;
}

.flow-step-active span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.flow-step-done {
  color: var(--gray-700);
}

.flow-form label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 500;
  font-size: 14px;
}

.flow-form input,
.flow-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-button);
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-hint {
  margin: 0 0 1rem;
  color: var(--gray-500);
  font-size: 13px;
}

.meta-link {
  margin-top: 2rem;
  font-size: 13px;
}

.meta-link a {
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.meta-link a:hover {
  color: var(--gray-700);
}

.pricing-summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
}

.pricing-total {
  margin: 0.5rem 0 0;
  font-size: 1.15rem;
}

.pricing-note {
  margin: 0.35rem 0 0;
  font-size: 13px;
  color: var(--gray-500);
}

.reviews-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.review-item {
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background: var(--gray-25);
}

.review-item p {
  margin: 0 0 0.5rem;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 13px;
}

.notice-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: #fff8e6;
  border: 1px solid #f5d78e;
  border-radius: var(--radius-card);
  font-size: 14px;
}

.auth-panel,
.auth-demo-form {
  margin-bottom: 1rem;
}

.job-summary {
  margin: 1.5rem 0;
}

.job-summary dt {
  font-weight: 600;
  margin-top: 0.75rem;
}

.job-summary dd {
  margin: 0.15rem 0 0;
  color: var(--gray-600);
}

.flow-success {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  background: var(--gray-25);
}

@media (max-width: 860px) {
  .site-nav a:not(.btn) {
    display: none;
  }

  .site-header {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  }

  .hero {
    padding-top: 3rem;
  }

  #catalog {
    padding-top: 3.25rem;
  }

  .card-actions {
    padding: 0.875rem;
  }

  .service-hero,
  .content-hero {
    padding-top: 2.5rem;
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .summary-card {
    position: static;
    top: auto;
  }

  .service-cta-form {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .get-reviews-form:not(.get-reviews-form-stacked) {
    flex-direction: column;
    align-items: stretch;
  }

  .get-reviews-form:not(.get-reviews-form-stacked) .get-reviews-submit {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .get-reviews-form:not(.get-reviews-form-stacked) {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .get-reviews-form:not(.get-reviews-form-stacked) input[type="url"] {
    flex: 1 1 auto;
  }

  .flow-main .get-reviews-form:not(.get-reviews-form-stacked) {
    flex-direction: row;
  }

  .flow-main .get-reviews-form:not(.get-reviews-form-stacked) .get-reviews-submit {
    width: auto;
  }
}
