/* ============================================================
   ZMIENNE CSS
   ============================================================ */
:root {
  --background:        #E8E6E1;
  --card:              #F5F4F1;
  --primary:           #0B6951;
  --foreground:        #1A1A1A;
  --muted-foreground:  #6B7280;
  --border:            #D4D1CB;
  --secondary:         #D4D1CB;
  --radius:            0.25rem;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);

  --font-base: 'Space Grotesk', sans-serif;
}

/* ============================================================
   RESET & BOX MODEL
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================================
   BAZOWE STYLE DOKUMENTU
   ============================================================ */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   TYPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--foreground);
}

p {
  color: var(--foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   LAYOUT — CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================================
   KOMPONENTY BAZOWE
   ============================================================ */

/* Card */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.88;
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: var(--foreground);
  border-color: var(--border);
}

/* Muted text */
.text-muted {
  color: var(--muted-foreground);
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 1.5rem;
}

/* ============================================================
   NAV — STICKY
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.site-nav.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
}

.nav-logo {
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 0.5em;
  color: var(--foreground);
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--foreground);
  text-decoration: none;
}

.nav-cta {
  font-size: 14px;
  padding: 8px 16px;
  flex-shrink: 0;
}

/* ============================================================
   MAIN
   ============================================================ */
.main {
  min-height: calc(100vh - 120px);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--background);
  padding: 120px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-cta-secondary {
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s ease;
}

.hero-cta-secondary:hover {
  color: var(--foreground);
  text-decoration: none;
}

.hero-trust {
  font-size: 12px;
  color: var(--muted-foreground);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted-foreground);
  text-align: center;
}

.screenshot-dashboard {
  width: 120%;
  border-radius: var(--radius);
  justify-self: center;
  display: block;
 }
.screenshot-historia {
  width: 100%;
  border-radius: var(--radius);
  justify-self: center;
  display: block;
 }
.screenshot-pasek {
  width: 50%;
  border-radius: var(--radius);
  justify-self: center;
  display: block;
 }
.screenshot-anon {
  width: 120%;
  border-radius: var(--radius);
  justify-self: center;
  display: block;
 }

/* ============================================================
   PROBLEM
   ============================================================ */
#problem {
  background: #EDECEA;
  padding: 80px 0;
}

.problem-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid #E24B4A;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.pain-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================================
   AI ACT TIMELINE
   ============================================================ */
.aiact-timeline {
  position: relative;
  padding: 32px 0 24px;
  margin-top: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding-inline: 24px;
}

.aiact-line {
  position: absolute;
  left: calc(23px + 90px + 16px + 4px);
  top: 22px;
  bottom: 222px;
  width: 2px;
  background: #D4D1CB;
}

.aiact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}

.aiact-date {
  min-width: 90px;
  text-align: right;
  font-size: 12px;
  color: var(--muted-foreground);
  padding-top: 2px;
  flex-shrink: 0;
}

.aiact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.aiact-dot--past {
  background: #D4D1CB;
}

.aiact-dot--now {
  background: #0B6951;
  box-shadow: 0 0 0 3px rgba(11, 105, 81, 0.2), 0 0 0 6px rgba(11, 105, 81, 0.08);
  width: 10px;
  height: 10px;
  margin-top: 4px;
}

.aiact-dot--danger {
  background: #E24B4A;
}

.aiact-dot--future {
  background: #D4D1CB;
}

.aiact-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.aiact-content strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
}

.aiact-content p {
  width: 100%;
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-top: 2px;
}

.aiact-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--radius);
  line-height: 1.6;
}

.aiact-badge--past {
  background: #E8E6E1;
  color: #6B7280;
}

.aiact-badge--now {
  background: #E1F5EE;
  color: #0B6951;
}

.aiact-badge--soon {
  background: #FEF3C7;
  color: #92400E;
}

.aiact-badge--future {
  background: #F3F4F6;
  color: #6B7280;
}

.aiact-penalties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.aiact-penalty {
  text-align: center;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius);
}

.aiact-penalty-label {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

.aiact-penalty-amount {
  font-size: 20px;
  font-weight: 500;
  color: #E24B4A;
  line-height: 1.2;
}

.aiact-penalty-desc {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 4px;
}

.aiact-source {
  font-size: 11px;
  color: var(--muted-foreground);
  text-align: right;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .aiact-penalties {
    grid-template-columns: 1fr;
  }

  .aiact-line {
    left: calc(23px + 72px + 16px + 4px);
    bottom: 460px;
  }

  .aiact-date {
    min-width: 72px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SOLUTION
   ============================================================ */
#solution {
  background: var(--background);
  padding: 80px 0;
}

.solution-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 24px;
  text-align: center;
}

.solution-desc {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 32px;
  text-align: center;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--foreground);
  font-weight: 500;
}

.compliance-check {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

.solution-disclaimer {
  font-size: 12px;
  color: var(--muted-foreground);
  font-style: italic;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
  line-height: 1.6;
  text-align: center;
}

.solution-screenshot {
  width: 100%;
  height: 260px;
  aspect-ratio: unset;
}

@media (max-width: 640px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: #EDECEA;
  padding: 80px 0;
}

.how-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.how-screenshot {
  width: 100%;
  height: 200px;
  aspect-ratio: unset;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FEATURES
   ============================================================ */
.section-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card .ti {
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
}

.feature-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AIZYL AI
   ============================================================ */
.myzelai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.myzelai-text {
  border-left: 3px solid var(--primary);
  padding-left: 32px;
}

.myzelai-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.myzelai-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.25;
}

.myzelai-desc {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 28px;
}

.myzelai-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.myzelai-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--foreground);
  font-weight: 500;
}

.myzelai-check {
  color: #16a34a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

.myzelai-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .myzelai-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .myzelai-text {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--primary);
    padding-top: 24px;
  }
}

/* ============================================================
   FAQ — ACCORDION
   ============================================================ */
#faq {
  background: var(--background);
  padding: 80px 0;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.faq-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  color: var(--foreground);
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  line-height: 1.4;
}

.accordion-icon {
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.accordion-answer {
  display: none;
  padding: 0 0 20px;
}

.accordion-answer p {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.7;
}

.accordion-item.open .accordion-answer {
  display: block;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta-final {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.cta-final-heading {
  color: white;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.cta-final-sub {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 15px;
}

.cta-final-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.15s ease;
}

.cta-final-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

.cta-final-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.15s ease;
}

.cta-final-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.waitlist-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.waitlist-input {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: none;
  font-size: 15px;
  font-family: var(--font-base);
  width: 300px;
  outline: none;
  color: var(--foreground);
}

.waitlist-submit {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border: 2px solid white;
  border-radius: var(--radius);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.waitlist-submit:hover {
  opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.5em;
  color: var(--foreground);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--foreground);
  text-decoration: none;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   MEDIA QUERIES — 768px (MOBILE)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Container --- */
  .container {
    max-width: 100%;
    padding-inline: 20px;
  }

  /* --- Sekcje: padding 80px → 48px --- */
  #hero {
    padding: 64px 0 48px;
  }

  #problem,
  #solution,
  #how-it-works {
    padding: 48px 0;
  }

  #features {
    padding: 48px 0 !important;
  }

  #myzelai {
    padding: 48px 0 !important;
  }

  #why-local {
    padding: 48px 0 !important;
  }

  #pricing {
    padding: 48px 0 !important;
  }

  #faq {
    padding: 48px 0;
  }

  /* --- Nav: ukryj linki środkowe, zostaje logo + CTA --- */
  .nav-links {
    display: none;
  }

  .nav-cta {
    font-size: 9px;
    padding: 6px 10px;
    white-space: nowrap;
    max-width: 180px;
  }

  /* --- Hero: jednokolumnowy, screenshot ukryty --- */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
  }

  .hero-visual .screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: 32px;
  }

  .hero-text h1 {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* --- Gridy 2-kolumnowe → 1 kolumna --- */
  .pain-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* --- Gridy 3-kolumnowe → 1 kolumna --- */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* --- AizylAI: jednokolumnowy, screenshot ukryty --- */
  .myzelai-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .myzelai-visual {
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .myzelai-text {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--primary);
    padding-top: 24px;
  }

  .screenshot-dashboard {
    width: 100%;
    border-radius: var(--radius);
    justify-self: center;
    display: block;
   }
  .screenshot-historia {
    width: 100%;
    border-radius: var(--radius);
    justify-self: center;
    display: block;
   }
  .screenshot-pasek {
    width: 100%;
    border-radius: var(--radius);
    justify-self: center;
    display: block;
   }
  .screenshot-anon {
    width: 100%;
    border-radius: var(--radius);
    justify-self: center;
    display: block;
   }

  /* --- Why-local: jednokolumnowy (inline grid → 1fr) --- */
  #why-local [style*="grid-template-columns: 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* --- Pricing: poziomy scroll zamiast gridu --- */
  #pricing [style*="grid-template-columns: repeat(3, 1fr)"] {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    grid-template-columns: unset !important;
    align-items: unset !important;
    scrollbar-width: none !important;
  }

  #pricing [style*="grid-template-columns: repeat(3, 1fr)"]::-webkit-scrollbar {
    display: none;
  }

  /* Karty cennikowe: min-width + snap */
  #pricing [style*="grid-template-columns: repeat(3, 1fr)"] > * {
    min-width: 85vw !important;
    max-width: 85vw !important;
    scroll-snap-align: center !important;
    flex-shrink: 0 !important;
  }

  /* Padding kart cennikowych na mobile */
  #pricing [style*="grid-template-columns: repeat(3, 1fr)"] > * > div[style*="border"],
  #pricing [style*="grid-template-columns: repeat(3, 1fr)"] > div[style*="border"] {
    padding: 24px 20px !important;
  }

  /* Karta Pro — padding wrappera */
  #pricing .plan-featured > div[style*="border"] {
    padding: 24px 20px !important;
  }

  /* --- CTA final: pełna szerokość, bez overflow --- */
  #cta-final {
    width: 100%;
    padding: 48px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* --- CTA final: formularz kolumnowy --- */
  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .waitlist-input {
    width: 100%;
  }

  .waitlist-submit {
    width: 100%;
  }
}
