/* GrantOtter Landing Page */

:root {
  --teal: #0d9488;
  --teal-dark: #0a7a70;
  --teal-light: #ccfbf1;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-brand img {
  height: 36px;
  width: 36px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

/* Hero */
.hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, var(--teal-light) 0%, #fff 50%, var(--orange-light) 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 240px;
  height: 240px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.2));
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--teal);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  margin-left: 1rem;
}

/* Section shared */
section {
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Features */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-icon.teal {
  background: var(--teal-light);
}

.feature-icon.orange {
  background: var(--orange-light);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
  background: #fff;
}

.steps {
  display: flex;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 260px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--teal);
  padding-top: 1rem;
}

/* Demo Video */
.demo-video {
  background: var(--gray-50);
}

.video-container {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Waitlist */
.waitlist {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  text-align: center;
}

.waitlist .section-title {
  color: #fff;
}

.waitlist .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.waitlist-form-container {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
}

.waitlist-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.form-success {
  padding: 2rem;
  text-align: center;
}

.form-success p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.form-success-sub {
  color: var(--gray-600);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 1rem;
  }
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* ─── Social Share Bar ───────────────────────────────────────────────────── */

.share-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.share-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.share-bar-dark .share-label {
  color: rgba(255, 255, 255, 0.75);
}

.share-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  font-family: inherit;
}

.share-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.share-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Platform accent colors on hover */
.share-x:hover        { background: #000; border-color: #000; }
.share-linkedin:hover { background: #0a66c2; border-color: #0a66c2; }
.share-facebook:hover { background: #1877f2; border-color: #1877f2; }
.share-email:hover    { background: var(--teal-dark); border-color: var(--teal-dark); }
.share-copy:hover     { background: rgba(255,255,255,0.3); }

/* Copy button state */
.share-copy .icon-check { display: none; }
.share-copy.copied .icon-copy  { display: none; }
.share-copy.copied .icon-check { display: block; }
.share-copy.copied { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .share-bar {
    gap: 0.75rem;
  }
  .share-label {
    text-align: center;
    font-size: 0.85rem;
  }
}

/* ─── Tutorial Page ──────────────────────────────────────────────────────── */

.nav-active {
  color: var(--teal) !important;
  font-weight: 700 !important;
}

/* Tutorial hero */
.tut-hero {
  padding: 7rem 2rem 3.5rem;
  background: linear-gradient(160deg, var(--teal-light) 0%, #fff 60%, var(--orange-light) 100%);
  text-align: center;
}

.tut-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.tut-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.tut-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tut-hero h1 span {
  color: var(--teal);
}

.tut-hero .subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Table of contents nav */
.tut-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tut-toc a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tut-toc a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-light);
}

/* Step sections */
.tut-step {
  padding: 4.5rem 2rem;
  background: #fff;
}

.tut-step-alt {
  background: var(--gray-50);
}

.tut-step-inner {
  max-width: 820px;
  margin: 0 auto;
}

.tut-step-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.step-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}

.step-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.tut-step h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tut-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 0.5rem;
}

.tut-step p {
  color: var(--gray-600);
  font-size: 0.975rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Numbered steps list */
.tut-steps-list {
  padding-left: 1.4rem;
  color: var(--gray-600);
  font-size: 0.975rem;
  line-height: 1.8;
}

.tut-steps-list li {
  margin-bottom: 0.4rem;
}

.tut-steps-list ul {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 1.25rem;
}

.tut-steps-list ul li {
  list-style: disc;
  margin-bottom: 0.2rem;
}

/* Foundation banner */
.tut-foundation-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, #e0f2fe 100%);
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.65;
}

.foundation-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.tut-foundation-banner code {
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-dark);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88em;
}

/* Tip box */
.tut-tip {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1.1rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.6;
}

.tut-tip a {
  color: var(--teal-dark);
  font-weight: 600;
}

/* Three-stage pipeline */
.tut-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0 1.5rem;
}

.pipeline-stage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.tut-step-alt .pipeline-stage {
  background: var(--gray-50);
}

.pipeline-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.pipeline-body strong {
  display: block;
  font-size: 0.975rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.pipeline-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.pipeline-arrow {
  text-align: center;
  color: var(--teal);
  font-size: 1.1rem;
  padding: 0.2rem 0;
  margin-left: 1rem;
}

/* Media placeholder */
.tut-media-placeholder {
  margin-top: 2rem;
  background: var(--gray-100);
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.media-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.media-placeholder-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.media-placeholder-hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 0.75rem;
}

.media-placeholder-filename {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.media-placeholder-filename code {
  background: #e2e8f0;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* Screenshot with caption */
.tut-screenshot {
  margin-top: 2rem;
  text-align: center;
}

.media-caption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
}

/* Swapping placeholders with real media — use these classes */
.tut-media-gif img,
.tut-media-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Power user section */
.tut-power {
  background: linear-gradient(160deg, #fff7ed 0%, #fff 60%, var(--teal-light) 100%);
  border-top: 3px solid var(--orange);
}

/* Next steps section */
.tut-next {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
}

.tut-next-inner {
  max-width: 900px;
  margin: 0 auto;
}

.tut-next h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tut-next p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.tut-next-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.tut-next-card {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  backdrop-filter: blur(4px);
}

.tut-next-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0.75rem 0 0.4rem;
}

.tut-next-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.tut-next-card a {
  color: var(--teal-light);
}

.tut-next .btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
  margin-left: 0.75rem;
}

.tut-next .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ─── Help / FAQ page ───────────────────────────────────────────────────── */

.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
}

.tut-step-alt .faq-item {
  background: var(--gray-50);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.faq-item a {
  color: var(--teal-dark);
  font-weight: 500;
}

/* Privacy pillars inside FAQ */
.faq-privacy {
  padding: 0 1.25rem 1.25rem;
}

.faq-privacy > p {
  padding: 0;
  margin-bottom: 1rem;
}

.privacy-pillar {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}

.privacy-pillar:last-child {
  margin-bottom: 0;
}

.privacy-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.privacy-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.privacy-pillar-header strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}

.privacy-pillar > p {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0;
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.privacy-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Contact / demo card */
.help-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.tut-step-alt .help-contact-card {
  background: var(--gray-50);
}

.help-contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.15rem;
}

.help-contact-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.help-contact-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.help-contact-card a:not(.btn) {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.help-contact-card a:not(.btn):hover {
  text-decoration: underline;
}

/* ─── Tutorial Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tut-hero h1 {
    font-size: 1.9rem;
  }

  .tut-toc {
    gap: 0.4rem;
  }

  .tut-step {
    padding: 3rem 1.25rem;
  }

  .tut-next-cards {
    grid-template-columns: 1fr;
  }

  .tut-next .btn-secondary {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.05rem;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  section {
    padding: 3rem 1.5rem;
  }

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
