:root {
  /* Zendesk-like palette: clean white surfaces + ink/teal typography + green CTA */
  --bg-gradient: radial-gradient(circle at top left, rgba(31, 173, 112, 0.14), rgba(31, 115, 183, 0.1) 42%, rgba(255, 255, 255, 0) 76%);
  --accent-gradient: linear-gradient(135deg, #1fad70, #1f73b7);
  --accent-solid: #1fad70;
  --accent-solid-hover: #168a59;
  --link: #1f73b7;
  --accent-soft: rgba(31, 173, 112, 0.12);
  --accent-border: rgba(31, 173, 112, 0.26);
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(3, 54, 61, 0.12);
  --bg-surface: #ffffff;
  --bg-alt: #f6f8f9;
  --text-main: #03363d;
  --text-muted: rgba(3, 54, 61, 0.74);
  --text-soft: rgba(3, 54, 61, 0.58);
  --text-strong: #022b30;
  --shadow-soft: 0 16px 40px rgba(3, 54, 61, 0.1);
  --shadow-tight: 0 8px 18px rgba(3, 54, 61, 0.08);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --border-subtle: 1px solid rgba(3, 54, 61, 0.12);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, rgba(31, 173, 112, 0.12), rgba(31, 115, 183, 0.07) 32%, #ffffff 66%);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.7));
  border-bottom: 1px solid rgba(3, 54, 61, 0.1);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background-image: var(--accent-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(3, 54, 61, 0.12);
}

.logo-text {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0.3rem;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background-image: var(--accent-gradient);
  border-radius: 999px;
  transition: width 0.2s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(3, 54, 61, 0.75);
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.3px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.3px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 4.8rem 0 4.5rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: -200px -300px auto;
  background: var(--bg-gradient);
  opacity: 0.9;
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 300px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 55%, #f8fafc 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.17em;
  margin: 0 0 0.7rem;
  color: rgba(3, 54, 61, 0.72);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-meta span {
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.hero-showcase {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  min-height: 260px;
  background-image: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7),
      rgba(248, 250, 252, 0.8)
    ),
    radial-gradient(circle at 0 0, rgba(31, 173, 112, 0.14), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(31, 115, 183, 0.12), transparent 60%);
}

.glass-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

.small-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(3, 54, 61, 0.64);
  margin: 0 0 1rem;
}

.hero-app-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.hero-app-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.72));
  box-shadow: var(--shadow-tight);
}

.hero-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-image: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-app-name {
  font-size: 0.9rem;
  margin: 0 0 0.1rem;
  color: var(--text-strong);
}

.hero-app-tagline {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-soft);
}

.hero-scroll-hint {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #ffffff;
  background: var(--accent-solid);
  box-shadow: 0 12px 26px rgba(3, 54, 61, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-solid-hover);
  box-shadow: 0 16px 34px rgba(3, 54, 61, 0.16);
  text-decoration: none;
}

.btn-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 54, 61, 0.14);
  box-shadow: var(--shadow-tight);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}

.btn-ghost {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(3, 54, 61, 0.14);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn-outline {
  color: var(--text-main);
  background: transparent;
  border: 1px solid rgba(3, 54, 61, 0.18);
}

.btn-outline:hover {
  background: rgba(248, 250, 252, 0.9);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at 0 0, rgba(31, 173, 112, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(31, 115, 183, 0.1), transparent 55%),
    linear-gradient(to bottom, #ffffff, var(--bg-alt));
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.1rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.section-header p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.app-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.3rem;
}

.glass-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.app-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(3, 54, 61, 0.65);
}

.app-icon {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background-image: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.app-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text-strong);
}

.app-card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  padding: 0;
}

.pill-list li {
  font-size: 0.75rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.text-link {
  font-size: 0.85rem;
  color: var(--link);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.feature-card {
  padding: 1.3rem 1.2rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(3, 54, 61, 0.14);
  font-size: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--text-strong);
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  padding: 1.3rem 1.3rem 1.2rem;
}

.testimonial-card .quote {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.testimonial-card .name {
  margin: 0 0 0.1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-card .role {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.placeholder {
  border-style: dashed;
  border-color: rgba(3, 54, 61, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  border-top: 1px solid rgba(3, 54, 61, 0.12);
  background: linear-gradient(to bottom, #ffffff, var(--bg-alt));
}

.footer-grid {
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.footer-brand .footer-tagline {
  margin: 0.7rem 0 0;
  max-width: 360px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-column h3 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--text-strong);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.footer-column li + li {
  margin-top: 0.35rem;
}

.footer-column a {
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(3, 54, 61, 0.08);
}

.footer-bottom-inner {
  padding: 0.9rem 1.5rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

.page-hero {
  padding: 3.4rem 0 2.6rem;
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(3, 54, 61, 0.65);
  margin: 0 0 0.6rem;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.page-hero p {
  margin: 0 0 1.4rem;
  max-width: 520px;
  font-size: 0.97rem;
  color: var(--text-muted);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.page-section {
  padding: 0 0 3rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.feature-bullet {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(31, 173, 112, 0.95);
  margin-top: 0.12rem;
}

.subheading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(3, 54, 61, 0.65);
  margin-bottom: 0.7rem;
}

.gallery-placeholder {
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  border: 1px dashed rgba(3, 54, 61, 0.18);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.gallery-placeholder strong {
  color: var(--text-main);
}

.benefits-card {
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.benefits-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.benefits-card p {
  margin: 0 0 0.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.benefits-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.page-aside {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.app-meta-card {
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.9));
}

.app-meta-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.app-meta-title {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-strong);
}

.app-meta-chip {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  color: var(--text-soft);
}

.app-meta-body {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.app-meta-footer {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge-soft {
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 54, 61, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.secondary-links {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.secondary-links a {
  color: var(--link);
  text-decoration: none;
}

.secondary-links a:hover {
  text-decoration: underline;
}

.cta-band {
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius-xl);
  background: rgba(31, 173, 112, 0.07);
  border: 1px solid rgba(31, 173, 112, 0.18);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band-text {
  font-size: 0.92rem;
}

.cta-band-text strong {
  color: var(--text-strong);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 2rem;
}

.stacked-card {
  padding: 1.3rem 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 54, 61, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.9));
}

.stacked-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.stacked-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stacked-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--text-main);
}

.stacked-card li + li {
  margin-top: 0.25rem;
}

.contact-card {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--link);
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    box-shadow 0.2s ease-out,
    transform 0.2s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(3, 54, 61, 0.12);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-showcase {
    order: -1;
  }

  .page-layout,
  .about-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    padding-top: 2rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    padding: 0.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(3, 54, 61, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(3, 54, 61, 0.12);
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    padding: 3.3rem 0 3rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .footer-columns {
    gap: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 0.4rem;
  }
}

