:root {
  --red: #E61D36;
  --black: #0A0A0A;
  --dark: #141414;
  --soft: #FFF5F6;
  --border: #F3D4D8;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
  .container {
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: max(40px, env(safe-area-inset-left, 0px));
    padding-right: max(40px, env(safe-area-inset-right, 0px));
  }
}

/* Extra breathing room on very narrow phones */
@media (max-width: 389px) {
  .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Respect device notch / status area */
  padding-top: max(0px, env(safe-area-inset-top, 0px));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.brand-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 4px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  /* Leave room for hamburger (≈44px) + gap on mobile */
  max-width: calc(100% - 56px);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

@media (min-width: 1100px) {
  .brand-logo-link {
    flex: 0 1 auto;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .brand-logo-img {
    height: 36px;
    max-height: 40px;
  }
}

.footer-logo-wrap {
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.contact-btn-wa .wa-icon {
  flex: none;
  width: 22px;
  height: 22px;
  display: block;
}

.nav {
  display: none;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.nav a:hover {
  color: #0f172a;
}

.menu-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  flex-shrink: 0;
  touch-action: manipulation;
}

.demo-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 18px;
  font-weight: 700;
}

.demo-btn {
  display: none;
  background: var(--red);
  color: #fff;
}

.mobile-nav {
  display: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--border);
  background: #fff;
  overflow-x: hidden;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: #334155;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

.mobile-nav a:hover {
  background: #f8fafc;
}

.mobile-demo {
  margin-top: 8px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .demo-btn {
    display: inline-flex;
  }
}

.hero {
  color: #fff;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 45%, var(--red) 100%);
}

.hero-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding: 112px 0;
  }
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 40px;
  line-height: 1.08;
  margin: 18px 0 0;
  font-weight: 800;
}

.hero p {
  max-width: 720px;
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 0;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 20px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.cta-primary {
  background: var(--red);
  color: #fff;
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-mini-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .hero-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge.soft {
  background: var(--soft);
  color: var(--red);
}

.icon-badge.glass {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.hero-visual {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
}

.glow.left {
  left: -20px;
  top: 40px;
  width: 160px;
  height: 160px;
  background: rgba(230, 29, 54, .22);
}

.glow.right {
  right: -10px;
  top: 30px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, .08);
}

.visual-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.visual-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 1024px) {
  .visual-grid {
    grid-template-columns: 1.05fr .95fr;
  }
}

.panel-dark {
  background: #111;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 18px;
}

.panel-light {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  color: #0f172a;
}

.panel-glass {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 18px;
}

.grid-2 {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.metric {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  color: #0f172a;
}

.metric small {
  color: #64748b;
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}

.pill.red {
  background: var(--red);
  color: #fff;
}

.fake-phone {
  max-width: 260px;
  margin: 0 auto;
  border-radius: 32px;
  background: #0f0f10;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.phone-screen {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  color: #0f172a;
}

.red-block {
  background: var(--red);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
}

.stack {
  display: grid;
  gap: 8px;
}

.soft-block {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 12px;
}

.qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 80px;
  height: 80px;
  background: #0f172a;
  padding: 8px;
  border-radius: 12px;
}

.qr div:nth-child(3n),
.qr div:nth-child(5n) {
  background: #fff;
}

.qr div {
  background: #334155;
  border-radius: 4px;
}

@media (min-width: 640px) {
  .qr {
    width: 96px;
    height: 96px;
  }
}

section {
  padding: 48px 0;
}

@media (min-width: 640px) {
  section {
    padding: 64px 0;
  }
}

.section-title p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.15;
}

.section-title.light p {
  color: #cbd5e1;
}

.section-title.light h2 {
  color: #fff;
}

@media (min-width: 640px) {
  .section-title h2 {
    font-size: 42px;
  }
}

.soft-section {
  background: var(--soft);
}

.about-card,
.label-card {
  display: grid;
  gap: 32px;
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.about-card {
  background: var(--soft);
}

.label-card {
  background: #fff;
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {

  .about-card,
  .label-card {
    grid-template-columns: 1fr 1fr;
    padding: 32px 48px;
  }

  .label-card {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .card-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .card-grid.three-xl {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.use-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .use-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.solutions-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.solution {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.industry {
  display: block;
  color: inherit;
}

a.industry:hover {
  transform: translateY(-3px);
}

.dark-section {
  background: var(--black);
  color: #fff;
}

.steps-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  border-radius: 24px;
  padding: 24px;
}

.step-no {
  font-size: 14px;
  letter-spacing: .25em;
  color: #94a3b8;
  font-weight: 700;
}

.value-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-primary {
  background: var(--red);
  color: #fff;
}

.value-soft {
  background: var(--soft);
}

.plans-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-point {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 16px;
}

.contact-band {
  background: linear-gradient(90deg, var(--black) 0%, var(--dark) 45%, var(--red) 100%);
  color: #fff;
  border-radius: 32px;
  padding: 32px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

@media (min-width: 640px) {
  .contact-band {
    padding: 48px 32px;
  }
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 640px) {
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 12px 20px;
  font-weight: 700;
}

.contact-btn.red {
  background: var(--red);
  color: #fff;
}

.contact-btn.outline {
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Extra horizontal inset so footer copy doesn’t sit flush to the viewport edge */
.site-footer > .container {
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
  .site-footer > .container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1024px) {
  .site-footer > .container {
    padding-left: max(48px, env(safe-area-inset-left, 0px));
    padding-right: max(48px, env(safe-area-inset-right, 0px));
  }
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding: 36px 0 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
    align-items: start;
  }
}

/* Mobile / tablet: centered, balanced columns */
@media (max-width: 1023px) {
  .footer-grid {
    text-align: center;
    padding: 32px 0 40px;
  }

  .site-footer .footer-logo-wrap {
    display: flex;
    justify-content: center;
  }

  .site-footer .footer-logo-img {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer p.muted,
  .site-footer h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer p.muted {
    max-width: 360px;
  }

  .site-footer .footer-extras {
    justify-content: center;
  }

  .site-footer .stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-footer .stack a,
  .site-footer .stack > div {
    text-align: center;
    max-width: 100%;
  }

  .site-footer h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.muted {
  color: var(--muted);
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.inline-list {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .inline-list {
    grid-template-columns: 1fr 1fr;
  }
}

.badge-list div {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 600;
  color: #334155;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon-lg svg {
  width: 24px;
  height: 24px;
}

.small {
  font-size: 14px;
}

.footer-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 12px;
  font-size: 14px;
}

.footer-extras a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-extras a:hover {
  color: var(--red);
}

.site-footer .stack a {
  color: inherit;
}

.site-footer .stack a:hover {
  color: var(--red);
}

.page-main {
  min-height: 40vh;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 45%, var(--red) 100%);
  padding: 48px 0 40px;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 72px 0 56px;
  }
}

.page-hero .eyebrow {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.page-hero h1 {
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 42px;
  }
}

.page-hero p {
  margin: 16px 0 0;
  max-width: 640px;
  color: #e2e8f0;
  line-height: 1.75;
  font-size: 17px;
}

.page-section {
  padding: 40px 0 64px;
}

.page-section.soft {
  background: var(--soft);
}

.contact-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}

.contact-info-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-info-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.contact-info-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  font-size: 15px;
}

.contact-info-row a {
  color: var(--red);
  font-weight: 600;
}

.contact-info-row a:hover {
  text-decoration: underline;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .form-card {
    padding: 36px 40px 40px;
  }
}

.form-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.form-intro {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}

.form-field .req {
  color: var(--red);
}

.field-input,
.field-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

.field-textarea {
  min-height: 160px;
  resize: vertical;
}

.field-input:focus,
.field-textarea:focus {
  outline: 2px solid rgba(230, 29, 54, .25);
  border-color: var(--red);
}

.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.btn-lets-talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter .2s ease, transform .15s ease;
}

.btn-lets-talk:hover {
  filter: brightness(1.06);
}

.btn-lets-talk:active {
  transform: translateY(1px);
}

.alert-success-banner {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 24px;
  font-weight: 600;
}

.validation-error-list {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.field-error {
  color: #b91c1c;
  font-size: 13px;
  margin-top: 6px;
}

.downloads-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.downloads-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.downloads-card .inner {
  padding: 28px 24px 36px;
}

@media (min-width: 640px) {
  .downloads-card .inner {
    padding: 40px 48px 48px;
  }
}

.downloads-card p {
  color: #475569;
  line-height: 1.8;
  margin: 0 0 16px;
}

.downloads-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.store-row {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .store-row {
    grid-template-columns: 1fr 1fr;
  }
}

.store-block {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--soft);
}

.store-block p {
  margin: 0 0 12px;
  font-weight: 700;
  color: #0f172a;
}

.store-block img {
  margin: 0 auto;
  max-height: 70px;
  width: auto;
}

.video-wrap {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  background: #000;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}
