.girem-b2b-demo {
  --demo-bg: #f6f6f6;
  --demo-surface: #ffffff;
  --demo-text: var(--wd-title-color, #242424);
  --demo-muted: var(--wd-text-color, #777777);
  --demo-border: rgba(0, 0, 0, 0.08);
  --demo-accent: var(--wd-primary-color, #d86d31);
  --demo-accent-strong: var(--wd-primary-color, #d86d31);
  --demo-accent-rgb: 216, 109, 49;
  --demo-accent-soft: rgba(var(--demo-accent-rgb), 0.08);
  --demo-accent-soft-strong: rgba(var(--demo-accent-rgb), 0.14);
  --demo-primary-text: #ffffff;
  --demo-secondary-bg: #ffffff;
  --demo-secondary-text: var(--demo-text);
  --demo-secondary-border: rgba(0, 0, 0, 0.12);
  --demo-panel-bg: #ffffff;
  --demo-subtle-bg: #fafafa;
  --demo-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --demo-radius-xl: 18px;
  --demo-radius-lg: 14px;
  --demo-shell: 1360px;
  background: var(--demo-bg);
  color: var(--demo-text);
  margin-bottom: -60px;
}

html {
  scroll-behavior: smooth;
}

.girem-b2b-demo *,
.girem-b2b-demo *::before,
.girem-b2b-demo *::after {
  box-sizing: border-box;
}

.girem-b2b-demo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.girem-b2b-demo h1,
.girem-b2b-demo h2,
.girem-b2b-demo h3,
.girem-b2b-demo p,
.girem-b2b-demo ul,
.girem-b2b-demo figure {
  margin: 0;
}

.girem-b2b-demo ul {
  padding: 0;
  list-style: none;
}

.girem-b2b-demo__shell {
  width: min(calc(100% - 32px), var(--demo-shell));
  margin: 0 auto;
}

#demo-brief {
  scroll-margin-top: 32px;
}

.girem-b2b-demo__hero {
  padding: 28px 0 22px;
}

.girem-b2b-demo__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.girem-b2b-demo__hero-copy,
.girem-b2b-demo__hero-figure,
.girem-b2b-demo__task-card,
.girem-b2b-demo__scenario-card,
.girem-b2b-demo__panel,
.girem-b2b-demo__proof-card,
.girem-b2b-demo__step-card,
.girem-b2b-demo__case-card,
.girem-b2b-demo__aside-card,
.girem-b2b-demo__cta-panel,
.girem-b2b-demo__content-block {
  border: 1px solid var(--demo-border);
  box-shadow: var(--demo-shadow);
}

.girem-b2b-demo__hero-copy {
  background: #ffffff;
  border-radius: var(--demo-radius-xl);
  padding: 34px;
  color: var(--demo-text);
  display: grid;
  gap: 28px;
  align-content: space-between;
}

.girem-b2b-demo__hero-main {
  max-width: 760px;
}

.girem-b2b-demo__hero-bottom {
  display: grid;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--demo-border);
}

.girem-b2b-demo__eyebrow,
.girem-b2b-demo__aside-label,
.girem-b2b-demo__task-badge,
.girem-b2b-demo__case-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.girem-b2b-demo__eyebrow {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  margin-bottom: 18px;
}

.girem-b2b-demo__hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 100%;
  text-wrap: balance;
}

.girem-b2b-demo__lead {
  color: var(--demo-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 64ch;
}

.girem-b2b-demo__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.girem-b2b-demo__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.girem-b2b-demo__button:hover {
  transform: translateY(-2px);
}

.girem-b2b-demo__button--primary {
  background: var(--demo-accent);
  color: var(--demo-primary-text) !important;
  border: 1px solid var(--demo-accent);
  box-shadow: 0 10px 24px rgba(var(--demo-accent-rgb), 0.22);
}

.girem-b2b-demo__button--secondary {
  background: var(--demo-secondary-bg);
  color: var(--demo-secondary-text) !important;
  border: 1px solid var(--demo-secondary-border);
}

.girem-b2b-demo__button--ghost {
  background: var(--demo-secondary-bg);
  color: var(--demo-secondary-text) !important;
  border: 1px solid var(--demo-secondary-border);
}

.girem-b2b-demo__button--primary:hover,
.girem-b2b-demo__button--primary:focus {
  background: color-mix(in srgb, var(--demo-accent) 88%, #000 12%);
  color: var(--demo-primary-text) !important;
  border-color: color-mix(in srgb, var(--demo-accent) 88%, #000 12%);
  box-shadow: 0 14px 28px rgba(var(--demo-accent-rgb), 0.28);
}

.girem-b2b-demo__button--secondary:hover,
.girem-b2b-demo__button--secondary:focus,
.girem-b2b-demo__button--ghost:hover,
.girem-b2b-demo__button--ghost:focus {
  background: var(--demo-accent-soft);
  color: var(--demo-text) !important;
  border-color: rgba(var(--demo-accent-rgb), 0.28);
}

.girem-b2b-demo__button--full {
  width: 100%;
}

.girem-b2b-demo__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-top: 0;
  align-items: stretch;
}

.girem-b2b-demo__signals li {
  min-height: 92px;
  height: 100%;
  border-radius: 10px;
  padding: 16px;
  background: var(--demo-subtle-bg);
  border: 1px solid var(--demo-border);
  font-size: 14px;
  line-height: 1.5;
  display: grid;
  gap: 6px;
  align-content: start;
}

.girem-b2b-demo__signals strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: var(--demo-text);
}

.girem-b2b-demo__signals span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--demo-muted);
}

.girem-b2b-demo__hero-figure,
.girem-b2b-demo__wide-figure,
.girem-b2b-demo__audience-figure,
.girem-b2b-demo__feature-figure,
.girem-b2b-demo__proof-figure,
.girem-b2b-demo__case-card figure {
  background: var(--demo-surface);
  border-radius: var(--demo-radius-xl);
  overflow: hidden;
}

.girem-b2b-demo__hero-figure img,
.girem-b2b-demo__wide-figure img,
.girem-b2b-demo__audience-figure img,
.girem-b2b-demo__feature-figure img,
.girem-b2b-demo__proof-figure img,
.girem-b2b-demo__case-card figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.girem-b2b-demo__hero-figure img {
  aspect-ratio: 4 / 4.6;
}

.girem-b2b-demo__wide-figure img {
  aspect-ratio: 16 / 8.8;
}

.girem-b2b-demo__proof-figure img {
  aspect-ratio: 5 / 6;
}

.girem-b2b-demo__feature-figure img {
  aspect-ratio: 5 / 4;
}

.girem-b2b-demo__audience-figure img {
  aspect-ratio: 4 / 3.1;
}

.girem-b2b-demo__feature-diagram {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--demo-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.girem-b2b-demo__feature-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(220px, 0.9fr) 28px minmax(
      0,
      1fr
    );
  gap: 14px;
  align-items: center;
}

.girem-b2b-demo__feature-node {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--demo-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
}

.girem-b2b-demo__feature-node--muted {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.girem-b2b-demo__feature-node--accent {
  border-color: rgba(var(--demo-accent-rgb), 0.28);
  background: linear-gradient(
    180deg,
    rgba(var(--demo-accent-rgb), 0.11) 0%,
    rgba(var(--demo-accent-rgb), 0.04) 100%
  );
}

.girem-b2b-demo__feature-node-step {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__feature-node p {
  margin: 0;
  color: var(--demo-text);
  font-size: 15px;
  line-height: 1.55;
}

.girem-b2b-demo__feature-icon-row {
  display: grid;
  grid-template-columns: 44px 1fr 44px 1fr 44px 1fr;
  gap: 12px 10px;
  align-items: center;
}

.girem-b2b-demo__feature-icon-row--compact {
  grid-template-columns: 44px 1fr;
}

.girem-b2b-demo__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  border: 1px solid rgba(var(--demo-accent-rgb), 0.14);
}

.girem-b2b-demo__feature-icon svg {
  width: 24px;
  height: 24px;
}

.girem-b2b-demo__feature-icon-row span:not(.girem-b2b-demo__feature-icon) {
  color: var(--demo-text);
  font-size: 14px;
  line-height: 1.4;
}

.girem-b2b-demo__feature-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.girem-b2b-demo__feature-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.girem-b2b-demo__feature-point-card {
  padding: 16px;
  border: 1px solid var(--demo-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.girem-b2b-demo__feature-point-card h3 {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--demo-text);
}

.girem-b2b-demo__feature-point-card p {
  margin-top: 10px;
  color: var(--demo-muted);
  font-size: 14px;
  line-height: 1.6;
}

.girem-b2b-demo__feature-route-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--demo-accent-strong);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.55;
}

.girem-b2b-demo__hero-figure figcaption,
.girem-b2b-demo__wide-figure figcaption,
.girem-b2b-demo__audience-figure figcaption,
.girem-b2b-demo__feature-figure figcaption,
.girem-b2b-demo__proof-figure figcaption,
.girem-b2b-demo__case-card figcaption {
  padding: 14px 18px 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--demo-muted);
}

.girem-b2b-demo__section {
  padding: 14px 0 32px;
}

.girem-b2b-demo__section--tight {
  padding-top: 0;
}

.girem-b2b-demo__section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.girem-b2b-demo__section-head h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 28ch;
}

.girem-b2b-demo__section-intro {
  color: var(--demo-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 70ch;
  margin-bottom: 20px;
}

.girem-b2b-demo__audience {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.girem-b2b-demo__task-grid,
.girem-b2b-demo__scenario-grid,
.girem-b2b-demo__proof-grid,
.girem-b2b-demo__steps-grid {
  display: grid;
  gap: 18px;
}

.girem-b2b-demo__task-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.girem-b2b-demo__audience-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.girem-b2b-demo__task-card,
.girem-b2b-demo__scenario-card,
.girem-b2b-demo__proof-card,
.girem-b2b-demo__step-card {
  background: var(--demo-panel-bg);
  border-radius: var(--demo-radius-lg);
  padding: 22px;
}

.girem-b2b-demo__task-card {
  display: grid;
  gap: 0;
  align-content: start;
}

.girem-b2b-demo__task-badge {
  color: var(--demo-accent-strong);
  background: var(--demo-accent-soft);
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.girem-b2b-demo__task-card h3,
.girem-b2b-demo__scenario-card h3,
.girem-b2b-demo__panel h3,
.girem-b2b-demo__proof-card h3,
.girem-b2b-demo__step-card h3,
.girem-b2b-demo__cta-panel h3,
.girem-b2b-demo__aside-card h2,
.girem-b2b-demo__case-copy h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.girem-b2b-demo__task-card p,
.girem-b2b-demo__scenario-card p,
.girem-b2b-demo__panel p,
.girem-b2b-demo__proof-card p,
.girem-b2b-demo__step-card p,
.girem-b2b-demo__case-copy p,
.girem-b2b-demo__aside-card p,
.girem-b2b-demo__feature-copy,
.girem-b2b-demo__feature-offer,
.girem-b2b-demo__feature-cta p,
.girem-b2b-demo__task-outcomes {
  color: var(--demo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.girem-b2b-demo__task-card p,
.girem-b2b-demo__scenario-card p,
.girem-b2b-demo__proof-card p,
.girem-b2b-demo__step-card p,
.girem-b2b-demo__case-copy p,
.girem-b2b-demo__feature-copy,
.girem-b2b-demo__feature-offer,
.girem-b2b-demo__aside-card p {
  margin-top: 12px;
}

.girem-b2b-demo__task-card ul,
.girem-b2b-demo__check-list,
.girem-b2b-demo__aside-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.girem-b2b-demo__task-card li,
.girem-b2b-demo__check-list li,
.girem-b2b-demo__aside-list li {
  position: relative;
  padding-left: 22px;
  color: var(--demo-text);
  font-size: 15px;
  line-height: 1.6;
}

.girem-b2b-demo__task-card li::before,
.girem-b2b-demo__check-list li::before,
.girem-b2b-demo__aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--demo-accent);
}

.girem-b2b-demo__check-list li strong {
  color: var(--demo-text);
  font-weight: 700;
}

.girem-b2b-demo__task-outcomes {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--demo-border);
  font-size: 14px;
  line-height: 1.6;
}

.girem-b2b-demo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.girem-b2b-demo__layout--single {
  grid-template-columns: 1fr;
}

.girem-b2b-demo__main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.girem-b2b-demo__content-block {
  background: rgba(255, 255, 255, 0.98);
  border-radius: calc(var(--demo-radius-xl) + 2px);
  padding: 28px;
  min-width: 0;
}

.girem-b2b-demo__content-block--feature,
.girem-b2b-demo__content-block--cta {
  background: rgba(255, 255, 255, 0.98);
}

.girem-b2b-demo__content-block--cta {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(var(--demo-accent-rgb), 0.08) 0, rgba(var(--demo-accent-rgb), 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.girem-b2b-demo__content-block--cta .girem-b2b-demo__section-head {
  max-width: 820px;
}

.girem-b2b-demo__scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.girem-b2b-demo__proof-wrap,
.girem-b2b-demo__order-grid,
.girem-b2b-demo__cta-panel {
  display: grid;
  gap: 20px;
}

.girem-b2b-demo__proof-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.girem-b2b-demo__content-block--feature {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.girem-b2b-demo__feature-copy-block {
  display: grid;
  align-content: start;
}

.girem-b2b-demo__feature-offer {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.75;
  max-width: 62ch;
}

.girem-b2b-demo__feature-cta {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(var(--demo-accent-rgb), 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  align-self: stretch;
}

.girem-b2b-demo__feature-cta p {
  margin: 0;
  max-width: 28ch;
}

.girem-b2b-demo__promise-note {
  align-self: end;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-top: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--demo-accent-rgb), 0.14);
  color: var(--demo-muted);
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
}

.girem-b2b-demo__promise-note::before {
  content: "↳";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--demo-accent-strong);
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}

.girem-b2b-demo__order-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.girem-b2b-demo__order-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  border: 1px solid rgba(var(--demo-accent-rgb), 0.14);
}

.girem-b2b-demo__order-card-icon svg {
  width: 24px;
  height: 24px;
}

.girem-b2b-demo__order-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.girem-b2b-demo__order-card-step {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__brand-strip {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  padding: 4px 0;
  width: 100%;
  min-width: 0;
}

.girem-b2b-demo__brand-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: girem-b2b-brand-marquee 34s linear infinite;
  will-change: transform;
}

.girem-b2b-demo__brand-strip:hover .girem-b2b-demo__brand-track {
  animation-play-state: paused;
}

.girem-b2b-demo__brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 168px;
  min-height: 64px;
  padding: 4px 6px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--demo-text);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.girem-b2b-demo__brand-tile--image img {
  max-width: 156px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.girem-b2b-demo__brand-tile--text {
  color: var(--demo-text);
}

.girem-b2b-demo__brand-tile--svg svg {
  display: block;
  width: 156px;
  height: 52px;
}

.girem-b2b-demo__order-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 14px;
  margin-top: 18px;
}

.girem-b2b-demo__order-gallery-swiper {
  min-width: 0;
  grid-column: 2 / -1;
  width: 100%;
  overflow: hidden;
}

.girem-b2b-demo__order-gallery,
.girem-b2b-demo__order-gallery.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.girem-b2b-demo__order-gallery-pagination {
  display: none;
  margin-top: 16px;
  position: static;
  justify-content: center;
}

.girem-b2b-demo__order-gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(var(--demo-accent-rgb), 0.28);
  opacity: 1;
}

.girem-b2b-demo__order-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--demo-accent);
}

.girem-b2b-demo__order-doc-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--demo-border);
  border-radius: var(--demo-radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 246, 242, 0.98) 100%
  );
  color: var(--demo-text);
  text-decoration: none;
}

.girem-b2b-demo__order-doc-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__order-doc-card h3,
.girem-b2b-demo__order-doc-card p {
  margin: 0;
}

.girem-b2b-demo__order-doc-link {
  align-self: end;
  color: var(--demo-accent-strong);
  font-size: 14px;
  font-weight: 600;
}

.girem-b2b-demo__order-collage-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--demo-radius-lg);
  background: #f5f5f5;
}

.girem-b2b-demo__order-collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.girem-b2b-demo__order-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(
      0,
      1fr
    );
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
  min-width: 0;
}

.girem-b2b-demo__order-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--demo-accent-strong);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.55;
}

.girem-b2b-demo__promise-note--order {
  margin-top: 18px;
  max-width: 72ch;
}

@keyframes girem-b2b-brand-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}

.girem-b2b-demo__panel {
  background: var(--demo-panel-bg);
  border-radius: var(--demo-radius-lg);
  padding: 24px;
}

.girem-b2b-demo__proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.girem-b2b-demo__proof-grid--advantages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.girem-b2b-demo__proof-card--advantage {
  display: grid;
  gap: 14px;
  align-content: start;
}

.girem-b2b-demo__proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  border: 1px solid rgba(var(--demo-accent-rgb), 0.14);
}

.girem-b2b-demo__proof-icon svg {
  width: 24px;
  height: 24px;
}

.girem-b2b-demo__proof-advantages-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.girem-b2b-demo__proof-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.girem-b2b-demo__proof-evidence-rail {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 92px;
}

.girem-b2b-demo__proof-doc-preview {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--demo-border);
  border-radius: 16px;
  background: #fff;
  color: var(--demo-text);
  text-decoration: none;
}

.girem-b2b-demo__proof-doc-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.girem-b2b-demo__proof-doc-caption {
  display: block;
  padding: 12px 14px 14px;
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.5;
}

.girem-b2b-demo__proof-link-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--demo-border);
  border-radius: 16px;
  background: #fff;
  color: var(--demo-text);
  text-decoration: none;
}

.girem-b2b-demo__proof-link-card h3,
.girem-b2b-demo__proof-link-card p {
  margin: 0;
}

.girem-b2b-demo__proof-link-eyebrow {
  color: var(--demo-accent-strong);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__proof-link-action {
  align-self: end;
  color: var(--demo-accent-strong);
  font-size: 14px;
  font-weight: 600;
}

.girem-b2b-demo__cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.girem-b2b-demo__cases-swiper {
  overflow: hidden;
  width: 100%;
}

.girem-b2b-demo__case-card.swiper-slide {
  height: auto;
  display: grid;
  align-content: start;
  box-sizing: border-box;
  min-width: 0;
}

.girem-b2b-demo__cases-pagination {
  display: none;
  margin-top: 16px;
  position: static;
}

.girem-b2b-demo__cases-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(var(--demo-accent-rgb), 0.28);
  opacity: 1;
}

.girem-b2b-demo__cases-pagination .swiper-pagination-bullet-active {
  background: var(--demo-accent);
}

.girem-b2b-demo__case-card {
  background: var(--demo-panel-bg);
  border-radius: var(--demo-radius-lg);
  overflow: hidden;
  display: grid;
  align-content: start;
}

.girem-b2b-demo__case-card figure {
  position: relative;
}

.girem-b2b-demo__case-copy {
  padding: 20px 22px 24px;
}

.girem-b2b-demo__case-eyebrow {
  color: var(--demo-accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.girem-b2b-demo__case-metrics {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.girem-b2b-demo__case-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 18, 24, 0.74);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.girem-b2b-demo__case-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.girem-b2b-demo__case-list div {
  display: grid;
  gap: 6px;
}

.girem-b2b-demo__case-list dt {
  color: var(--demo-accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.girem-b2b-demo__case-list dd {
  margin: 0;
  color: var(--demo-text);
  font-size: 15px;
  line-height: 1.7;
}

.girem-b2b-demo__case-list-result {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--demo-border);
}

.girem-b2b-demo__section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.girem-b2b-demo__steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.girem-b2b-demo__steps-grid--process {
  position: relative;
  gap: 14px;
  align-items: stretch;
}

.girem-b2b-demo__steps-grid--process::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--demo-accent-rgb), 0.24) 0%, rgba(var(--demo-accent-rgb), 0.4) 100%);
}

.girem-b2b-demo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--demo-accent-soft-strong);
  color: var(--demo-accent-strong);
  font-weight: 800;
  margin-bottom: 18px;
}

.girem-b2b-demo__step-card--process {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.girem-b2b-demo__step-card--process::after {
  content: "→";
  position: absolute;
  top: 13px;
  right: -10px;
  z-index: 2;
  color: var(--demo-accent-strong);
  font-size: 18px;
  line-height: 1;
  opacity: 0.5;
}

.girem-b2b-demo__step-card--process:last-child::after {
  content: none;
}

.girem-b2b-demo__step-card--process .girem-b2b-demo__step-number {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.girem-b2b-demo__step-card--process h3,
.girem-b2b-demo__step-card--process p {
  margin: 0;
}

.girem-b2b-demo__response-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed rgba(var(--demo-accent-rgb), 0.26);
  border-radius: 16px;
  background: rgba(var(--demo-accent-rgb), 0.03);
}

.girem-b2b-demo__response-note-label {
  color: var(--demo-accent-strong);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__response-note p {
  margin: 0;
  color: var(--demo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.girem-b2b-demo__cta-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 245, 247, 0.96) 100%);
  color: var(--demo-text);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--demo-border);
  box-shadow: 0 18px 48px rgba(14, 20, 27, 0.06);
}

.girem-b2b-demo__cta-panel h3,
.girem-b2b-demo__cta-panel p,
.girem-b2b-demo__cta-panel li {
  color: var(--demo-text);
}

.girem-b2b-demo__cta-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 6px 4px 6px 0;
}

.girem-b2b-demo__cta-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--demo-radius-lg);
  min-height: 360px;
  background: #d9dde2;
}

.girem-b2b-demo__cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.girem-b2b-demo__cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 18, 0.04) 0%, rgba(7, 12, 18, 0.38) 100%);
}

.girem-b2b-demo__cta-visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.girem-b2b-demo__cta-visual-badge span {
  color: var(--demo-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__cta-visual-badge strong {
  color: var(--demo-text);
  font-size: 15px;
  line-height: 1.35;
}

.girem-b2b-demo__cta-copy h3 {
  margin: 2px 0 0;
  font-size: 26px;
  line-height: 1.2;
}

.girem-b2b-demo__content-block--cta .girem-b2b-demo__check-list {
  gap: 12px;
  margin-top: 0;
}

.girem-b2b-demo__content-block--cta .girem-b2b-demo__check-list li {
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(var(--demo-accent-rgb), 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.girem-b2b-demo__content-block--cta .girem-b2b-demo__check-list li::before {
  left: 16px;
  top: 16px;
  width: 14px;
  height: 14px;
  background: transparent;
  border-radius: 0;
  border-right: 2px solid var(--demo-accent-strong);
  border-bottom: 2px solid var(--demo-accent-strong);
  transform: rotate(45deg);
}

.girem-b2b-demo__demo-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(var(--demo-accent-rgb), 0.12);
  box-shadow: 0 14px 36px rgba(14, 20, 27, 0.06);
}

.girem-b2b-demo__demo-form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--demo-accent-rgb), 0.1);
}

.girem-b2b-demo__demo-form-head h3,
.girem-b2b-demo__demo-form-head p {
  margin: 0;
}

.girem-b2b-demo__demo-form-eyebrow {
  color: var(--demo-accent-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girem-b2b-demo__demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.girem-b2b-demo__demo-form-wide {
  grid-column: 1 / -1;
}

.girem-b2b-demo__demo-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--demo-text);
}

.girem-b2b-demo__demo-form label > span {
  color: var(--demo-text);
}

.girem-b2b-demo__demo-form input,
.girem-b2b-demo__demo-form textarea {
  width: 100%;
  border: 1px solid rgba(var(--demo-accent-rgb), 0.14);
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--demo-text);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.girem-b2b-demo__demo-form textarea {
  min-height: 132px;
  resize: vertical;
}

.girem-b2b-demo__demo-form input:focus,
.girem-b2b-demo__demo-form textarea:focus {
  border-color: rgba(var(--demo-accent-rgb), 0.45);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--demo-accent-rgb), 0.12);
}

.girem-b2b-demo__form-disclaimer {
  margin: 0;
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.girem-b2b-demo__demo-form input::placeholder,
.girem-b2b-demo__demo-form textarea::placeholder {
  color: #999999;
}

.girem-b2b-demo__file {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px dashed rgba(var(--demo-accent-rgb), 0.22);
  border-radius: 18px;
  background: rgba(var(--demo-accent-rgb), 0.03);
  cursor: pointer;
}

.girem-b2b-demo__file > input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.girem-b2b-demo__file-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(var(--demo-accent-rgb), 0.14);
  color: var(--demo-text);
  font-size: 14px;
  font-weight: 700;
}

.girem-b2b-demo__file-trigger::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(var(--demo-accent-rgb), 0.1);
  color: var(--demo-accent-strong);
  font-size: 14px;
  line-height: 1;
}

.girem-b2b-demo__file-hint {
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.5;
}

.girem-b2b-demo__demo-form .girem-b2b-demo__button {
  width: 100%;
  min-height: 52px;
}

.girem-b2b-demo__demo-form .girem-b2b-demo__button--submit,
.girem-b2b-demo__demo-form .girem-b2b-demo__button--submit:visited {
  background: var(--demo-accent) !important;
  color: var(--demo-primary-text) !important;
  border: 1px solid var(--demo-accent) !important;
  box-shadow: 0 12px 28px rgba(var(--demo-accent-rgb), 0.24) !important;
}

.girem-b2b-demo__demo-form .girem-b2b-demo__button--submit:hover,
.girem-b2b-demo__demo-form .girem-b2b-demo__button--submit:focus {
  background: color-mix(in srgb, var(--demo-accent) 88%, #000 12%) !important;
  color: var(--demo-primary-text) !important;
  border-color: color-mix(in srgb, var(--demo-accent) 88%, #000 12%) !important;
  box-shadow: 0 16px 30px rgba(var(--demo-accent-rgb), 0.3) !important;
}

.girem-b2b-demo__aside {
  position: sticky;
  top: 110px;
}

.girem-b2b-demo__aside-card {
  background: var(--demo-panel-bg);
  border-radius: calc(var(--demo-radius-xl) - 2px);
  padding: 24px;
}

.girem-b2b-demo__aside-card--inline {
  border: 1px solid var(--demo-border);
  box-shadow: none;
  max-width: 620px;
}

.girem-b2b-demo__aside-label {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--demo-accent-soft);
  color: var(--demo-accent-strong);
  margin-bottom: 18px;
}

.girem-b2b-demo a {
  color: inherit;
}

.girem-b2b-demo__aside-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--demo-border);
}

.girem-b2b-demo__hero-copy,
.girem-b2b-demo__content-block,
.girem-b2b-demo__aside-card,
.girem-b2b-demo__task-card,
.girem-b2b-demo__scenario-card,
.girem-b2b-demo__proof-card,
.girem-b2b-demo__step-card,
.girem-b2b-demo__case-card,
.girem-b2b-demo__panel,
.girem-b2b-demo__cta-panel {
  backdrop-filter: blur(1px);
}

.girem-b2b-demo__task-card,
.girem-b2b-demo__scenario-card,
.girem-b2b-demo__proof-card,
.girem-b2b-demo__step-card,
.girem-b2b-demo__panel,
.girem-b2b-demo__case-card,
.girem-b2b-demo__aside-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.girem-b2b-demo__task-card:hover,
.girem-b2b-demo__scenario-card:hover,
.girem-b2b-demo__proof-card:hover,
.girem-b2b-demo__case-card:hover {
  border-color: rgba(var(--demo-accent-rgb), 0.22);
}

.girem-b2b-demo__hero-figure,
.girem-b2b-demo__wide-figure,
.girem-b2b-demo__audience-figure,
.girem-b2b-demo__feature-figure,
.girem-b2b-demo__proof-figure {
  border-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1200px) {
  .girem-b2b-demo__hero-grid,
  .girem-b2b-demo__layout,
  .girem-b2b-demo__proof-wrap,
  .girem-b2b-demo__cta-panel {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__aside {
    position: static;
  }

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

  .girem-b2b-demo__steps-grid--process::before {
    display: none;
  }

  .girem-b2b-demo__step-card--process::after {
    content: none;
  }

  .girem-b2b-demo__hero-main {
    max-width: 100%;
  }

  .girem-b2b-demo__feature-route {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__feature-route-arrow {
    min-height: 24px;
    transform: rotate(90deg);
  }

  .girem-b2b-demo__feature-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .girem-b2b-demo__feature-bottom {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__order-scope {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .girem-b2b-demo__order-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .girem-b2b-demo__order-gallery-swiper {
    grid-column: 1 / -1;
  }

  .girem-b2b-demo__order-doc-card {
    grid-column: 1 / -1;
  }

  .girem-b2b-demo__order-steps {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__proof-grid--advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .girem-b2b-demo__proof-advantages-layout,
  .girem-b2b-demo__proof-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .girem-b2b-demo__proof-advantages-layout {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__proof-evidence-rail {
    position: static;
  }

  .girem-b2b-demo__order-step-arrow {
    min-height: 24px;
    transform: rotate(90deg);
  }

  .girem-b2b-demo__brand-track {
    animation-duration: 28s;
  }
}

@media (max-width: 1024px) {
  .girem-b2b-demo__cases-grid,
  .girem-b2b-demo__cases-grid.swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .girem-b2b-demo__case-card.swiper-slide {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .girem-b2b-demo__cases-pagination {
    display: flex;
    justify-content: center;
  }

  .girem-b2b-demo__order-gallery,
  .girem-b2b-demo__order-gallery.swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .girem-b2b-demo__order-collage-item.swiper-slide {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .girem-b2b-demo__order-gallery-pagination {
    display: flex;
  }
}

@media (max-width: 900px) {

  .girem-b2b-demo__task-grid,
  .girem-b2b-demo__audience-visuals,
  .girem-b2b-demo__scenario-grid,
  .girem-b2b-demo__proof-grid,
  .girem-b2b-demo__order-grid,
  .girem-b2b-demo__steps-grid,
  .girem-b2b-demo__signals {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__hero-copy,
  .girem-b2b-demo__content-block,
  .girem-b2b-demo__audience {
    padding: 24px;
  }

  .girem-b2b-demo__hero-copy h1 {
    max-width: 100%;
  }

  .girem-b2b-demo__hero-copy {
    gap: 22px;
  }

  .girem-b2b-demo__hero-bottom {
    gap: 18px;
    padding-top: 18px;
  }

  .girem-b2b-demo__feature-icon-row {
    grid-template-columns: 44px 1fr;
  }

  .girem-b2b-demo__feature-points {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__order-scope {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__order-collage {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__proof-grid--advantages,
  .girem-b2b-demo__proof-links {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__demo-form-grid {
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__cta-copy {
    display: none;
  }

  .girem-b2b-demo__cta-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .girem-b2b-demo__demo-form {
    padding: 18px;
    gap: 12px;
    border-radius: 20px;
  }

  .girem-b2b-demo__demo-form-head {
    gap: 6px;
    padding-bottom: 10px;
  }

  .girem-b2b-demo__demo-form-head h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .girem-b2b-demo__demo-form-head p,
  .girem-b2b-demo__section-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .girem-b2b-demo__brand-track {
    animation-duration: 24s;
  }
}

@media (max-width: 640px) {
  .girem-b2b-demo__shell {
    width: 100%;
    padding-inline: 5px;
  }

  .girem-b2b-demo__hero {
    padding-top: 18px;
  }

  .girem-b2b-demo__hero-copy,
  .girem-b2b-demo__content-block,
  .girem-b2b-demo__audience,
  .girem-b2b-demo__aside-card,
  .girem-b2b-demo__cta-panel {
    padding: 20px 10px;
    border-radius: 22px;
  }

  .girem-b2b-demo__content-block--cta {
    padding: 24px 10px;
  }

  .girem-b2b-demo__cta-panel {
    padding: 16px 10px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .girem-b2b-demo__demo-form {
    padding: 16px;
    border-radius: 18px;
    box-shadow: none;
  }

  .girem-b2b-demo__hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .girem-b2b-demo__button {
    width: 100%;
  }
}
