/*
 * Osman Munir Coaching Landing Page
 * Design system: Starter-site session-landing (Ali Abdaal-inspired)
 * Warm cream palette, serif headlines, hand-drawn accents
 */

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* ===== Design Tokens ===== */
:root {
  --bg-cream: #F6F6F4;
  --bg-card: #EDE8E3;
  --bg-white: #ffffff;
  --text-dark: #093428;
  --text-body: #3D3D4E;
  --text-muted: #6B6B7B;
  --primary: #0B4132;
  --primary-hover: rgba(253, 151, 109, 0.85);
  --accent-coral: #0B4132;
  --accent-yellow: #F5B731;
  --accent-blue-light: #FDE8DF;
  --radius-card: 16px;
  --radius-btn: 50px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
}

/* ===== Global ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0 0 1rem 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== Utility Classes ===== */
.section-wrapper {
  max-width: 80rem;
  margin: 0 auto;
}

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

.mt-12 {
  margin-top: 48px;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 2.25rem;
  margin-bottom: 32px;
}

.blue-highlight {
  color: var(--primary);
}

.highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  color: #EB7D42;
}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #0B4132;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #0D5A45;
  color: #ffffff;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* ===== Animation Classes ===== */
.reveal-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.reveal-item.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* ===== Sticky Scarcity Indicator ===== */
.scarcity-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #0B4132;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(11, 65, 50, 0.25);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.scarcity-sticky:hover {
  background-color: #0D5A45;
  color: #ffffff;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.scarcity-sticky__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #EB7D41;
  -webkit-animation: scarcityPulse 2s ease-in-out infinite;
  animation: scarcityPulse 2s ease-in-out infinite;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@-webkit-keyframes scarcityPulse {
  0%, 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
  50% { opacity: 0.6; -webkit-transform: scale(1.2); transform: scale(1.2); }
}

@keyframes scarcityPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@media (max-width: 549px) {
  .scarcity-sticky {
    bottom: 16px;
    right: 16px;
    left: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.8125rem;
  }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background-color: var(--bg-cream);
}

.site-header.scrolled {
  background-color: var(--bg-cream);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 800;
}

.main-nav {
  display: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-left: 2rem;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--text-dark);
  z-index: 100;
  padding: 2rem;
  -webkit-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 48px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  color: white;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.cta {
  margin-top: 16px;
  background-color: #0B4132;
  color: #ffffff;
  border-radius: var(--radius-btn);
  text-align: center;
  padding: 1rem;
  border-bottom: none;
}

/* ===== Hero Section ===== */
.hero-section {
  background-color: var(--bg-cream);
  padding: 140px 16px 80px 16px;
}

.hero-content {
  max-width: 80rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.hero-photo-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

.hero-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

.hero-photo-placeholder,
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-card);
  border-radius: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-photo-placeholder {
  border-radius: var(--radius-card);
}

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

.hero-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.6;
  display: inline-block;
  text-align: left;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 4px;
}

.hero-bullets li::before {
  content: "•";
  color: #EB7D41;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  line-height: inherit;
}

.hero-action-row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-action-row .scarcity-line {
  margin-bottom: 0;
}

.scarcity-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: #EB7D41;
  margin-bottom: 1.5rem;
}

.hero-cta {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hand-drawn underline */
.underline-deco {
  position: relative;
  display: inline-block;
}

.underline-deco::after {
  display: none;
}

/* Hand-drawn circle */
.circle-deco {
  position: relative;
  display: inline-block;
}

.circle-deco::before {
  display: none;
}

/* Hand-drawn arrow down */
.arrow-down-deco {
  display: none;
}

/* Hand-drawn arrow (points down-right) */
.arrow-deco {
  display: inline-block;
  position: relative;
}

.arrow-deco::after {
  display: none;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  background-color: var(--bg-white);
  padding: 80px 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.testimonial-content {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-body);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.6;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #EB7D41;
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0A3428;
  border: 2px solid #EB7D41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author-role {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-section--white {
  background-color: var(--bg-cream);
}

/* YouTube Video Embed */
.video-embed {
  max-width: 720px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== Problem Section (stats-section) ===== */
.stats-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 16px;
}


.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.problem-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px;
}

.problem-card-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.problem-card-description {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--bg-cream);
  padding: 80px 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius-card);
  display: block;
}

.about-text p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* ===== Feature / Steps Section ===== */
.feature-section {
  background-color: var(--bg-white);
  padding: 80px 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.step-connector {
  display: none;
}

.step-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.step-description {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 280px;
  margin: 0 auto;
}

.steps-footnote {
  margin-top: 48px;
  font-size: 1.125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Feature cards (Who this is for) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px;
}

.feature-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-body);
  line-height: 1.6;
}

.feature-section--alt {
  background-color: var(--bg-white);
}

/* ===== Contact / Booking Section ===== */
.contact-section {
  background-color: var(--bg-white);
  padding: 80px 16px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== FAQ Section ===== */
.faq-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 16px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0;
  overflow: hidden;
}

.faq-question {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-top: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-item.faq-active .faq-answer {
  max-height: 300px;
}

/* ===== Video Carousel Section ===== */
.video-carousel-section {
  background-color: var(--bg-cream);
  padding: 80px 16px;
}

.video-slide {
  padding: 0 4px;
}

.video-slide .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.video-slide .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-slide-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 12px;
  text-align: center;
}

/* Splide arrow overrides */
.video-splide .splide__arrow {
  background-color: var(--bg-white);
  border: 1px solid var(--primary);
  width: 40px;
  height: 40px;
  opacity: 1;
}

.video-splide .splide__arrow svg {
  fill: var(--primary);
}

.video-splide .splide__arrow:hover {
  background-color: var(--primary);
}

.video-splide .splide__arrow:hover svg {
  fill: var(--text-dark);
}

.video-splide .splide__pagination__page.is-active {
  background-color: var(--primary);
}

/* ===== Legal Pages ===== */
.legal-section {
  background-color: var(--bg-cream);
  padding: 140px 16px 80px 16px;
}

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-container p,
.legal-container li {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-container ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-container ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-container a {
  color: #EB7D41;
  text-decoration: underline;
}

.legal-container a:hover {
  color: var(--text-dark);
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

.footer-single-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 32px 0 8px;
  gap: 16px;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--text-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--primary);
}

.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-link {
  color: var(--text-dark);
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 4rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-photo-wrapper {
    max-width: 100%;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .main-nav {
    display: block;
  }

  .header-cta {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .step-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 6'%3E%3Cpath d='M0 3 C40 0, 80 6, 120 3 C160 0, 200 6, 200 3' stroke='%230B4132' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 6px;
    z-index: 0;
  }

  .step-card:last-child .step-connector {
    display: none;
  }

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .hero-photo-wrapper {
    max-width: 280px;
  }

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

@media (max-width: 549px) {
  main .btn-primary {
    display: block;
    width: 100%;
  }

  .hero-action-row {
    display: flex;
    width: 100%;
    max-width: 100%;
  }
}
