:root {
  --bg: #f6efe5;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1d2238;
  --muted: #61718f;
  --line: rgba(29, 34, 56, 0.12);
  --primary: #0f766e;
  --primary-strong: #0b5f58;
  --accent: #d96d4e;
  --accent-soft: rgba(217, 109, 78, 0.14);
  --shadow: 0 28px 80px rgba(29, 34, 56, 0.12);
  --shadow-soft: 0 14px 40px rgba(29, 34, 56, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 109, 78, 0.16), transparent 24rem),
    radial-gradient(circle at right 20%, rgba(15, 118, 110, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbf5ee 0%, #f6efe5 42%, #f3ebdf 100%);
}

[id] {
  scroll-margin-top: 118px;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto 28px;
}

.topbar,
.trust-band,
.section,
.cta-panel,
.footer {
  backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  width: 148px;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text strong,
.footer-brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topnav a:hover,
.ghost-link:hover,
.inline-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ghost-link,
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.primary-link,
.button-primary {
  background: var(--text);
  color: white;
  box-shadow: 0 18px 30px rgba(29, 34, 56, 0.16);
}

.primary-link:hover,
.button-primary:hover,
.button-secondary:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  padding: 82px 0 54px;
  align-items: center;
}

.eyebrow,
.trust-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.hero h1,
.section h2,
.cta-panel h2 {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.cta-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.app-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pipeline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.pipeline-pill.active {
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
  border-color: rgba(15, 118, 110, 0.18);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.stage-backdrop {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.9;
}

.stage-backdrop-one {
  top: 40px;
  right: 0;
  width: 230px;
  height: 230px;
  background: rgba(217, 109, 78, 0.22);
}

.stage-backdrop-two {
  bottom: 40px;
  left: 10px;
  width: 270px;
  height: 270px;
  background: rgba(15, 118, 110, 0.18);
}

.stage-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.stage-card-main {
  padding: 20px;
  z-index: 2;
}

.stage-card-side {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: min(320px, 86%);
  padding: 26px;
  background: linear-gradient(180deg, rgba(29, 34, 56, 0.94), rgba(15, 118, 110, 0.94));
  color: rgba(255, 255, 255, 0.92);
  z-index: 3;
}

.stage-card-side small,
.stage-header small {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.72rem;
}

.stage-card-side h3,
.stage-header h2 {
  margin: 10px 0 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.stage-card-side p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.window-bar {
  display: flex;
  gap: 8px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(29, 34, 56, 0.16);
}

.stage-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
}

.stage-header small {
  color: var(--muted);
}

.status-pill,
.product-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-badge.soft {
  background: rgba(15, 118, 110, 0.11);
  color: var(--primary);
}

.product-badge.warm {
  background: rgba(29, 34, 56, 0.08);
  color: var(--text);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.metric-box strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.metric-box span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.timeline-card {
  margin-top: 18px;
  padding: 10px 4px 2px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgba(29, 34, 56, 0.18);
}

.timeline-item.active .timeline-dot {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.09);
}

.trust-band,
.section,
.cta-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 26px;
}

.trust-band strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  font-size: 1rem;
}

.section {
  padding: 34px 30px;
}

.campaign-grid,
.ecosystem-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.campaign-grid,
.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.campaign-card,
.ecosystem-card,
.pricing-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.campaign-card h3,
.ecosystem-card h3,
.pricing-card strong {
  display: block;
  margin-top: 14px;
}

.campaign-card h3,
.ecosystem-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.campaign-card p,
.ecosystem-card p,
.pricing-card span {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ecosystem-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 234, 0.96));
}

.ecosystem-card-active {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.9));
}

.pricing-card small {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card strong {
  font-size: 2.2rem;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.86));
  border-color: rgba(15, 118, 110, 0.2);
}

.pricing-button {
  width: 100%;
  margin-top: 22px;
}

.pricing-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(29, 34, 56, 0.04);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.pricing-note strong {
  display: block;
  margin-bottom: 8px;
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 800;
}

.section-contrast {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(29, 34, 56, 0.92));
  color: white;
}

.section-contrast .eyebrow,
.section-contrast .section-head p,
.section-contrast .reason-card p {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  max-width: 780px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head.narrow {
  max-width: 660px;
}

.product-grid,
.reason-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.product-grid-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: start;
}

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

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.reason-card,
.process-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.section-contrast .reason-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.09), rgba(255, 255, 255, 0.8));
}

.product-card-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(29, 34, 56, 0.12);
  border-color: rgba(15, 118, 110, 0.24);
}

.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.product-card h3,
.reason-card h3,
.process-step h3 {
  margin: 14px 0 0;
  font-size: 1.42rem;
  line-height: 1.18;
}

.product-card p,
.reason-card p,
.process-step p,
.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-contrast .reason-card h3 {
  color: white;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 800;
}

.product-card .inline-link,
.product-card .product-top,
.product-card p,
.product-card ul {
  position: relative;
  z-index: 2;
}

.inline-link::after {
  content: "→";
}

.reason-index,
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-weight: 800;
}

.process-step span {
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 109, 78, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 26px 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 150px;
  }

  [id] {
    scroll-margin-top: 150px;
  }

  .topbar {
    border-radius: 28px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
  }

  .topbar-panel {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .detail-hero,
  .tools-hero,
  .trust-band,
  .ecosystem-grid,
  .campaign-grid,
  .product-grid,
  .pricing-grid,
  .reason-grid,
  .process-grid,
  .free-tools-grid,
  .tools-preview-grid,
  .tools-preview-footer,
  .theme-demo-grid,
  .feature-columns,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
  }

  .qr-builder-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    width: 100%;
    min-width: 0;
  }

  .demo-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }

  .stage-card-side {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .stage-mini-card {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 210px;
  }

  [id] {
    scroll-margin-top: 210px;
  }

  .site-shell {
    width: min(calc(100% - 18px), var(--container));
    margin: 10px auto 20px;
  }

  .topbar {
    top: 10px;
    border-radius: 24px;
    align-items: center;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    text-align: left;
    min-width: 0;
  }

  .brand-logo {
    width: 116px;
  }

  .brand-text {
    align-items: flex-start;
    gap: 0;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .topnav {
    width: 100%;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    font-size: 0.92rem;
  }

  .topnav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(29, 34, 56, 0.04);
    border: 1px solid rgba(29, 34, 56, 0.06);
  }

  .topbar-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(29, 34, 56, 0.08);
    box-shadow: 0 18px 40px rgba(29, 34, 56, 0.08);
  }

  .topbar.menu-open .topbar-panel {
    display: flex;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    justify-content: stretch;
    gap: 10px;
    order: 2;
  }

  .topnav {
    order: 1;
  }

  .topbar-actions a,
  .topnav a {
    min-height: 52px;
  }

  .ghost-link,
  .primary-link {
    justify-content: center;
  }

  .topbar-actions a {
    flex: 1 1 0;
  }

  .hero {
    padding: 52px 0 28px;
    gap: 26px;
  }

  .detail-hero {
    padding: 36px 0 10px;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .theme-demo-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .qr-color-row {
    grid-template-columns: 1fr;
  }

  .wa-usage-grid {
    grid-template-columns: 1fr;
  }

  .tools-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-strip {
    grid-template-columns: 1fr;
  }

  .app-pipeline {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .cta-panel,
  .trust-band,
  .footer {
    padding: 24px 18px;
  }

  .qr-builder-hero {
    padding: 4px 0 6px;
  }

  .qr-builder-hero.section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .qr-builder-hero .section-head.narrow {
    max-width: none;
  }

  .qr-builder-hero .section-head p {
    margin-top: 14px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .wa-form-panel,
  .wa-preview-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .qr-accordion-toggle strong {
    margin-top: 6px;
    font-size: 1.08rem;
  }

  .qr-accordion-content {
    margin-top: 14px;
  }

  .qr-panel-head h2 {
    font-size: 1.08rem;
  }

  .qr-panel-head p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .qr-type-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }

  .qr-type-button {
    padding: 10px 12px;
    border-radius: 14px;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
  }

  .qr-type-button strong {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .qr-type-button span {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .qr-form-grid {
    margin-top: 16px;
  }

  .qr-dynamic-fields {
    gap: 12px;
  }

  .qr-field-label {
    font-size: 0.88rem;
  }

  .qr-field-input {
    min-height: 48px;
    padding: 0 13px;
    border-radius: 13px;
    font-size: 0.95rem;
  }

  textarea.qr-field-input {
    min-height: 96px;
    padding: 12px 13px;
  }

  .qr-preview-shell {
    min-height: 246px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
  }

  .qr-preview-shell canvas {
    width: min(100%, 220px);
  }

  .qr-preview-empty {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .qr-form-actions,
  .qr-download-actions {
    flex-direction: column;
    gap: 10px;
  }

  .qr-form-actions .button,
  .qr-download-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .qr-builder-hero .section-head h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .qr-builder-hero .section-head p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .wa-preview-card,
  .wa-output-box,
  .wa-usage-item {
    padding: 16px;
    border-radius: 18px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .qr-builder-layout {
    gap: 12px;
  }

  .qr-type-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .qr-type-button {
    min-width: 0;
    max-width: 100%;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .qr-color-row {
    gap: 10px;
  }

  .qr-type-button strong {
    font-size: 0.84rem;
  }

  .qr-type-button span {
    display: block;
    margin-top: 4px;
    font-size: 0.74rem;
  }

  .qr-preview-shell {
    min-height: 224px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    padding: 14px;
  }

  .qr-builder-hero.section {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.insight-pill {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 34, 56, 0.04);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.insight-pill strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.insight-pill span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.stage-mini-card {
  position: absolute;
  z-index: 1;
  padding: 18px 18px 16px;
  width: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.stage-mini-card span {
  display: block;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.stage-mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.stage-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.stage-mini-card-one {
  left: -18px;
  top: 86px;
}

.stage-mini-card-two {
  left: 18px;
  bottom: 34px;
}

.topbar-static {
  position: relative;
  top: auto;
}

.product-page {
  padding-top: 24px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 34px;
  padding: 46px 0 20px;
  align-items: center;
}

.detail-copy h1 {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.detail-visual {
  position: relative;
}

.visual-frame {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.visual-frame.dark-frame {
  background: linear-gradient(180deg, rgba(29, 34, 56, 0.95), rgba(38, 50, 89, 0.95));
  color: white;
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.visual-top strong {
  font-size: 1.12rem;
}

.visual-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.visual-panel {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(29, 34, 56, 0.05);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.visual-panel.dark {
  background: rgba(29, 34, 56, 0.92);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-panel.accent {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.11), rgba(217, 109, 78, 0.12));
}

.visual-panel h3,
.feature-list-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.visual-panel p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.8;
  line-height: 1.65;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.theme-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.theme-demo-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.theme-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.theme-demo-top strong {
  font-size: 1.08rem;
}

.theme-demo-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.phone-preview {
  position: relative;
  width: min(100%, 280px);
  margin: 20px auto 0;
  padding: 12px;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 24px 45px rgba(29, 34, 56, 0.2);
}

.phone-notch {
  width: 92px;
  height: 12px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-screen {
  padding: 18px 14px;
  border-radius: 22px;
  min-height: 260px;
}

.phone-hero-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.phone-hero-line.long {
  width: 82%;
}

.phone-hero-line.short {
  width: 54%;
  margin-top: 10px;
}

.phone-chip-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.phone-chip-row span {
  width: 58px;
  height: 26px;
  border-radius: 999px;
}

.phone-card-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.phone-card-row div {
  height: 76px;
  border-radius: 18px;
}

.phone-preview-midnight .phone-screen {
  background: linear-gradient(180deg, #0b1220, #152342);
}

.phone-preview-midnight .phone-chip-row span:nth-child(1),
.phone-preview-midnight .phone-card-row div:nth-child(1) {
  background: rgba(215, 178, 76, 0.95);
}

.phone-preview-midnight .phone-chip-row span:nth-child(2),
.phone-preview-midnight .phone-card-row div:nth-child(2) {
  background: rgba(45, 212, 191, 0.9);
}

.phone-preview-midnight .phone-chip-row span:nth-child(3) {
  background: rgba(96, 165, 250, 0.92);
}

.phone-preview-ivory {
  background: #e6e2db;
}

.phone-preview-ivory .phone-screen {
  background: linear-gradient(180deg, #f7f3ee, #ffffff);
}

.phone-preview-ivory .phone-hero-line {
  background: rgba(15, 23, 42, 0.78);
}

.phone-preview-ivory .phone-chip-row span:nth-child(1),
.phone-preview-ivory .phone-card-row div:nth-child(1) {
  background: rgba(15, 118, 110, 0.92);
}

.phone-preview-ivory .phone-chip-row span:nth-child(2),
.phone-preview-ivory .phone-card-row div:nth-child(2) {
  background: rgba(37, 99, 235, 0.86);
}

.phone-preview-ivory .phone-chip-row span:nth-child(3) {
  background: rgba(16, 185, 129, 0.88);
}

.phone-preview-graphite .phone-screen {
  background: linear-gradient(180deg, #0b0c10, #1f2937);
}

.phone-preview-graphite .phone-chip-row span:nth-child(1),
.phone-preview-graphite .phone-card-row div:nth-child(1) {
  background: rgba(251, 113, 133, 0.94);
}

.phone-preview-graphite .phone-chip-row span:nth-child(2),
.phone-preview-graphite .phone-card-row div:nth-child(2) {
  background: rgba(56, 189, 248, 0.9);
}

.phone-preview-graphite .phone-chip-row span:nth-child(3) {
  background: rgba(167, 139, 250, 0.92);
}

.phone-preview-cafe {
  background: #efe9df;
}

.phone-preview-cafe .phone-screen {
  background: linear-gradient(180deg, #faf8f5, #fff6e9);
}

.phone-preview-cafe .phone-hero-line {
  background: rgba(17, 24, 39, 0.78);
}

.phone-preview-cafe .phone-chip-row span:nth-child(1),
.phone-preview-cafe .phone-card-row div:nth-child(1) {
  background: rgba(141, 110, 99, 0.94);
}

.phone-preview-cafe .phone-chip-row span:nth-child(2),
.phone-preview-cafe .phone-card-row div:nth-child(2) {
  background: rgba(255, 107, 0, 0.88);
}

.phone-preview-cafe .phone-chip-row span:nth-child(3) {
  background: rgba(37, 99, 235, 0.84);
}

.demo-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(217, 109, 78, 0.1));
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.demo-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.demo-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.metric-grid-inline {
  margin-top: 22px;
}

.metric-box.inverse {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.metric-box.inverse span {
  color: rgba(255, 255, 255, 0.7);
}

.detail-timeline {
  margin-top: 20px;
}

.tools-page {
  padding-top: 24px;
}

.tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 34px;
  padding: 44px 0 18px;
  align-items: center;
}

.tools-preview-shell {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.tools-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.tools-preview-header small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tools-preview-header strong {
  display: block;
  margin-top: 8px;
  font-size: 1.16rem;
  line-height: 1.3;
}

.tools-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tools-preview-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(29, 34, 56, 0.04);
}

.tools-preview-card-strong {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.96));
  border-color: rgba(15, 118, 110, 0.16);
}

.tools-preview-card span {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tools-preview-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
}

.tools-preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tools-preview-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.tools-preview-stat strong {
  display: block;
  font-size: 1rem;
}

.tools-preview-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.free-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.free-tool-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.free-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
}

.free-tool-icon svg {
  width: 24px;
  height: 24px;
}

.free-tool-card h3 {
  margin: 18px 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.free-tool-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.sector-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
}

.qr-builder-hero {
  padding-bottom: 18px;
}

.wa-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.wa-form-panel,
.wa-preview-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.wa-form-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.wa-country-row {
  display: grid;
}

.wa-preview-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.wa-preview-meta {
  display: grid;
  gap: 10px;
}

.wa-preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-preview-meta strong {
  font-size: 1.18rem;
  line-height: 1.3;
}

.wa-preview-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wa-output-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(29, 34, 56, 0.03);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.wa-output-field {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(29, 34, 56, 0.08);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
  word-break: break-word;
}

.wa-output-actions {
  margin-top: 18px;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.wa-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.wa-usage-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  line-height: 1.55;
}

.qr-builder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.1fr) minmax(280px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.qr-type-panel,
.qr-form-panel,
.qr-preview-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.qr-accordion-toggle {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.qr-accordion-toggle span {
  display: block;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qr-accordion-toggle strong {
  display: block;
  margin-top: 8px;
  padding-right: 36px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.qr-accordion-toggle::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.12);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.qr-accordion.is-open .qr-accordion-toggle::after {
  content: '−';
  color: var(--text);
  border-color: rgba(15, 118, 110, 0.2);
}

.qr-accordion-content {
  display: block;
}

.qr-panel-head h2 {
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.qr-panel-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.qr-type-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.qr-type-button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(29, 34, 56, 0.03);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.qr-type-button:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.18);
}

.qr-type-button.is-active {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
}

.qr-type-button strong {
  display: block;
  font-size: 0.98rem;
}

.qr-type-button span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.qr-form-grid {
  margin-top: 22px;
}

.qr-dynamic-fields {
  display: grid;
  gap: 14px;
}

.qr-field {
  display: grid;
  gap: 8px;
}

.qr-field-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.qr-field-input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 16px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.qr-field-input {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.qr-field-input:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.qr-color-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.qr-color-field {
  display: grid;
  gap: 8px;
}

.qr-color-field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.qr-color-field input[type="color"] {
  width: 100%;
  height: 52px;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: white;
  cursor: pointer;
}

.qr-form-actions,
.qr-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.qr-form-alert {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.14);
  color: #991b1b;
  font-weight: 600;
  line-height: 1.6;
}

.qr-preview-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(29, 34, 56, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.qr-preview-shell canvas {
  width: min(100%, 320px);
  height: auto;
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 36px rgba(29, 34, 56, 0.08);
}

.qr-preview-empty {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(29, 34, 56, 0.05);
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1280px) {
  .qr-builder-layout {
    display: block !important;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .qr-form-panel,
  .qr-preview-panel {
    margin-top: 18px;
  }

  .qr-accordion-toggle {
    position: relative;
    display: block;
  }

  .qr-accordion-content {
    display: none;
    margin-top: 18px;
  }

  .qr-accordion.is-open .qr-accordion-content {
    display: block;
  }

  .qr-type-list,
  .qr-dynamic-fields,
  .qr-form-grid,
  .qr-preview-shell,
  .qr-download-actions {
    width: 100%;
    min-width: 0;
  }

  .wa-builder-layout {
    grid-template-columns: 1fr;
  }

  .wa-preview-panel {
    margin-top: 18px;
  }
}
