*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f7f5ff;
  --text: #111827;
  --text-muted: #6b7280;
  --primary: #6d28d9;
  --primary-hover: #5b21b6;
  --primary-soft: #efe9ff;
  --primary-border: #7c3aed;
  --line: #e5e7eb;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  --radius: 12px;
  --radius-pill: 999px;
  --header-h: 84px;
  --max: 1120px;
  --font: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 58px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary-border);
}

.btn-outline:hover {
  background: var(--primary-soft);
}

.btn-nav {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(109, 40, 217, 0.08), transparent 60%),
    linear-gradient(180deg, #faf9ff 0%, #ffffff 55%);
  padding: 72px 24px 88px;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
  margin-bottom: 48px;
}

.partner-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.partner-logo-google {
  height: 56px;
}

.partner-logo-meta {
  height: 52px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.page-main > .who,
.page-main > .roles,
.page-main > .process,
.page-main > .faq {
  min-height: calc(100vh - 220px);
}

.who {
  padding: 88px 24px;
  background: #fff;
}

.who-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.who-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.who-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 22ch;
}

.who-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 48ch;
}

.who-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.who-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: #312e81;
  font-size: 0.95rem;
  font-weight: 600;
}

.who-points li::before {
  content: "✓";
  color: #1e3a8a;
  font-weight: 700;
}

.who-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.roles {
  padding: 88px 24px 96px;
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 40%);
}

.roles-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.roles-heading {
  text-align: center;
  margin-bottom: 28px;
}

.roles-rule {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--primary);
}

.roles-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.roles-lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
}

.roles-note {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 18px 22px;
  border: 1px solid #d8c9ff;
  border-radius: 14px;
  background: var(--primary-soft);
  color: #4c1d95;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
}

.roles-note-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roles-note-title {
  font-weight: 700;
  font-size: 1.02rem;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.role-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.role-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

.role-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.role-meta {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.role-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 18px;
}

.role-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
}

.role-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3730a3;
  font-size: 0.95rem;
  font-weight: 600;
}

.role-tags li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

.role-apply {
  width: 100%;
  min-height: 50px;
}

.apply-cta {
  padding: 72px 24px 96px;
  background: #fff;
}

.apply-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.apply-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.apply-cta-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.apply-cta-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.apply-cta-text {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 500;
}

.apply-cta-btn {
  min-height: 52px;
  padding: 0 28px;
}

#wf-frame-root {
  max-height: calc(100vh - 110px) !important;
  height: calc(100vh - 110px) !important;
  width: min(420px, calc(100vw - 24px)) !important;
  bottom: 90px !important;
  overflow: hidden !important;
}

#wf-frame-root #wf-frame-container,
#wf-frame-root #wf-frame-container #wf-iframe {
  height: 100% !important;
  max-height: 100% !important;
}

.process {
  padding: 88px 24px 96px;
  background: #fff;
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.process-heading {
  text-align: center;
  margin-bottom: 48px;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.process-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.process-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: none;
  margin: 0 auto;
}

.process-title-line {
  display: block;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.process-step {
  text-align: left;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
}

.feedback {
  padding: 88px 24px 96px;
  background: #f7f8fb;
}

.feedback-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.feedback-heading {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.feedback-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feedback-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.feedback-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #374151;
  font-style: italic;
  font-weight: 500;
}

.feedback-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.feedback-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.feedback-place {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.faq {
  padding: 88px 24px 96px;
  background: #fff;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 36px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.faq-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.faq-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer p {
  padding: 0 20px 18px;
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  padding: 72px 24px;
  background: var(--primary);
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

.site-footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 48px 24px 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #d1d5db;
}

.footer-site {
  display: inline-block;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 22px;
}

.footer-site:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  padding-top: 8px;
}

.footer-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #d1d5db;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a:not(.btn) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .btn-nav {
    margin-top: 16px;
    width: 100%;
  }

  .hero {
    padding: 48px 20px 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .partner-logos {
    flex-wrap: nowrap;
    gap: 16px 24px;
    margin-bottom: 40px;
  }

  .partner-logo-google {
    height: 36px;
  }

  .partner-logo-meta {
    height: 34px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-value {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .who {
    padding: 64px 20px;
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .who-title {
    max-width: none;
  }

  .who-text {
    max-width: none;
  }

  .who-points {
    width: 100%;
  }

  .who-points li {
    width: 100%;
  }

  .roles {
    padding: 64px 20px 72px;
  }

  .role-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .role-media img {
    height: 200px;
  }

  .apply-cta {
    padding: 56px 20px 72px;
  }

  .process {
    padding: 64px 20px 72px;
  }

  .process-title {
    max-width: none;
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
  }

  .process-title-line {
    white-space: nowrap;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step {
    text-align: center;
  }

  .feedback {
    padding: 64px 20px 72px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 64px 20px 72px;
  }

  .final-cta {
    padding: 56px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  #wf-frame-root {
    max-height: calc(100vh - 100px) !important;
    height: calc(100vh - 100px) !important;
    width: calc(100vw - 16px) !important;
    right: 8px !important;
    left: 8px !important;
  }
}

.legal {
  padding: 72px 24px 96px;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(109, 40, 217, 0.06), transparent 60%),
    #fff;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.legal-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.legal-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  font-weight: 500;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-block {
  margin-bottom: 28px;
}

.legal-block h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .legal {
    padding: 48px 20px 72px;
  }

  .legal-actions {
    flex-direction: column;
  }

  .legal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 48px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero-title br {
    display: none;
  }
}
