:root {
  --bg: #1b0910;
  --bg-soft: #2a0d17;
  --text: #f8eef3;
  --text-soft: #e0c6d0;
  --primary: #7e1f3d;
  --primary-strong: #591328;
  --accent: #f2b3c9;
  --danger: #ff6b95;
  --card: #2d1020;
  --card-border: rgba(255, 218, 230, 0.2);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #5a1f36, var(--bg) 48%);
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.3rem 0 0.7rem;
}

.section-head p {
  color: var(--text-soft);
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: #d96b9a;
  top: -100px;
  right: -100px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: #91254a;
  bottom: -80px;
  left: -90px;
}

.topbar {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-collab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  flex-wrap: wrap;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #9f2f57);
}

.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.collab-x {
  color: #ffd8e5;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 4.1rem);
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
}

.hero-copy h1 span {
  color: #ffc9dc;
}

.hero-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 64ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 180, 206, 0.65);
  background: rgba(255, 180, 206, 0.15);
  color: #ffd7e6;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 1.2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-metrics div {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: #fff3f7;
}

.hero-metrics span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero-card {
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.8rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(126, 31, 61, 0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 30px rgba(126, 31, 61, 0.35);
}

.btn-secondary {
  border-color: var(--card-border);
  color: #ffe7f0;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  border-color: rgba(255, 221, 232, 0.35);
  color: #fff;
  background: transparent;
}

.btn-accent {
  background: linear-gradient(130deg, #ffb0cd, #ea88af);
  color: #2a0514;
  box-shadow: 0 12px 30px rgba(255, 155, 195, 0.3);
}

.btn-full {
  width: 100%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(126, 31, 61, 0.2);
  border: 1px solid rgba(255, 174, 208, 0.35);
}

.steps h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.section-builder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.builder-form,
.live-preview {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.2rem;
  background: rgba(33, 12, 21, 0.78);
}

.builder-form {
  position: relative;
}

.wizard-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.wizard-step {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  font-weight: 700;
  padding: 0.55rem;
}

.wizard-step.active {
  color: #fff;
  border-color: rgba(255, 176, 206, 0.7);
  background: rgba(126, 31, 61, 0.25);
}

.wizard-panel {
  display: none;
  margin-top: 1rem;
}

.wizard-panel.active {
  display: block;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 230, 239, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.94rem;
  padding: 0.72rem 0.8rem;
}

input[type="color"] {
  height: 44px;
  padding: 0.2rem;
}

input::placeholder,
textarea::placeholder {
  color: #c6a7b4;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 176, 206, 0.5);
  border-color: rgba(255, 176, 206, 0.6);
}

.wizard-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.checkout-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 184, 211, 0.45);
  background: rgba(126, 31, 61, 0.18);
}

.checkout-box h3 {
  margin: 0;
}

.checkout-box p {
  color: var(--text-soft);
}

.checkout-box small {
  color: #ffdce9;
  display: block;
  margin-top: 0.7rem;
}

.live-preview h3 {
  margin: 0.2rem 0 1rem;
}

.preview-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.preview-header img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 14px;
}

.preview-header h4 {
  margin: 0;
}

.preview-header p {
  margin: 0.1rem 0 0;
  color: var(--text-soft);
}

.preview-color-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem !important;
  font-size: 0.82rem;
}

#previewColorChip {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  background: #6b1730;
}

#previewDescription {
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0.8rem 0;
}

#previewHighlights {
  margin: 0;
  padding-left: 1rem;
  color: #f5dce6;
}

#previewHighlights li {
  margin-bottom: 0.3rem;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.9rem 0;
}

.preview-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-contact {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0.7rem;
  padding-top: 0.7rem;
}

.preview-contact p {
  margin: 0.35rem 0;
}

.preview-card footer {
  margin-top: 1rem;
  font-size: 0.76rem;
  color: #e7bfce;
}

.banner-cta {
  padding: 2rem 0;
}

.banner-inner {
  border-radius: 24px;
  border: 1px solid rgba(255, 225, 236, 0.2);
  background: linear-gradient(130deg, rgba(117, 31, 57, 0.95), rgba(40, 10, 22, 0.98));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.banner-inner h2 {
  margin: 0.4rem 0;
}

.banner-inner p {
  margin: 0;
  color: var(--text-soft);
}

.custom-section {
  padding-top: 4rem;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.custom-grid article,
.contact-form {
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
}

.custom-grid h3 {
  margin-top: 0;
}

.custom-grid ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.note {
  color: #ffd8e7;
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
}

.direct-contact {
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 189, 213, 0.38);
  background: rgba(126, 31, 61, 0.22);
  padding: 1.1rem;
}

.direct-contact p {
  margin: 0;
  color: #ffe2ec;
}

.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.main-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2rem;
  padding: 1.6rem 0 3rem;
  color: var(--text-soft);
}

.main-footer p {
  margin: 0.2rem 0;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
}

.floating-cta .btn {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.status-success {
  color: #ffd6e6 !important;
}

.status-error {
  color: #ffc5d6 !important;
}

.status-neutral {
  color: #f5dce6 !important;
}

@media (max-width: 960px) {
  .hero-grid,
  .builder-grid,
  .custom-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
  }
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.3rem 0 0.7rem;
}

.section-head p {
  color: var(--text-soft);
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: #d96b9a;
  top: -100px;
  right: -100px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: #91254a;
  bottom: -80px;
  left: -90px;
}

.topbar {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-collab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  flex-wrap: wrap;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #9f2f57);
}

.collab-x {
  color: #ffd8e5;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 4.1rem);
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
}

.hero-copy h1 span {
  color: #ffc9dc;
}

.hero-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 64ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 180, 206, 0.65);
  background: rgba(255, 180, 206, 0.15);
  color: #ffd7e6;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 1.2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-metrics div {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: #fff3f7;
}

.hero-metrics span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero-card {
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.8rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(126, 31, 61, 0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 30px rgba(126, 31, 61, 0.35);
}

.btn-secondary {
  border-color: var(--card-border);
  color: #ffe7f0;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  border-color: rgba(255, 221, 232, 0.35);
  color: #fff;
  background: transparent;
}

.btn-accent {
  background: linear-gradient(130deg, #ffb0cd, #ea88af);
  color: #2a0514;
  box-shadow: 0 12px 30px rgba(255, 155, 195, 0.3);
}

.btn-full {
  width: 100%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(126, 31, 61, 0.2);
  border: 1px solid rgba(255, 174, 208, 0.35);
}

.steps h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.section-builder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.builder-form,
.live-preview {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.2rem;
  background: rgba(33, 12, 21, 0.78);
}

.builder-form {
  position: relative;
}

.wizard-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.wizard-step {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  font-weight: 700;
  padding: 0.55rem;
}

.wizard-step.active {
  color: #fff;
  border-color: rgba(255, 176, 206, 0.7);
  background: rgba(126, 31, 61, 0.25);
}

.wizard-panel {
  display: none;
  margin-top: 1rem;
}

.wizard-panel.active {
  display: block;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 230, 239, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.94rem;
  padding: 0.72rem 0.8rem;
}

input[type="color"] {
  height: 44px;
  padding: 0.2rem;
}

input::placeholder,
textarea::placeholder {
  color: #c6a7b4;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 176, 206, 0.5);
  border-color: rgba(255, 176, 206, 0.6);
}

.wizard-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.checkout-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 184, 211, 0.45);
  background: rgba(126, 31, 61, 0.18);
}

.checkout-box h3 {
  margin: 0;
}

.checkout-box p {
  color: var(--text-soft);
}

.checkout-box small {
  color: #ffdce9;
  display: block;
  margin-top: 0.7rem;
}

.live-preview h3 {
  margin: 0.2rem 0 1rem;
}

.preview-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.preview-header img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 14px;
}

.preview-header h4 {
  margin: 0;
}

.preview-header p {
  margin: 0.1rem 0 0;
  color: var(--text-soft);
}

.preview-color-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem !important;
  font-size: 0.82rem;
}

#previewColorChip {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  background: #6b1730;
}

#previewDescription {
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0.8rem 0;
}

#previewHighlights {
  margin: 0;
  padding-left: 1rem;
  color: #f5dce6;
}

#previewHighlights li {
  margin-bottom: 0.3rem;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.9rem 0;
}

.preview-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-contact {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0.7rem;
  padding-top: 0.7rem;
}

.preview-contact p {
  margin: 0.35rem 0;
}

.preview-card footer {
  margin-top: 1rem;
  font-size: 0.76rem;
  color: #e7bfce;
}

.banner-cta {
  padding: 2rem 0;
}

.banner-inner {
  border-radius: 24px;
  border: 1px solid rgba(255, 225, 236, 0.2);
  background: linear-gradient(130deg, rgba(117, 31, 57, 0.95), rgba(40, 10, 22, 0.98));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.banner-inner h2 {
  margin: 0.4rem 0;
}

.banner-inner p {
  margin: 0;
  color: var(--text-soft);
}

.custom-section {
  padding-top: 4rem;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.custom-grid article,
.contact-form {
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
}

.custom-grid h3 {
  margin-top: 0;
}

.custom-grid ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.note {
  color: #ffd8e7;
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
}

.direct-contact {
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 189, 213, 0.38);
  background: rgba(126, 31, 61, 0.22);
  padding: 1.1rem;
}

.direct-contact p {
  margin: 0;
  color: #ffe2ec;
}

.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.main-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2rem;
  padding: 1.6rem 0 3rem;
  color: var(--text-soft);
}

.main-footer p {
  margin: 0.2rem 0;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
}

.floating-cta .btn {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.status-success {
  color: #ffd6e6 !important;
}

.status-error {
  color: #ffc5d6 !important;
}

.status-neutral {
  color: #f5dce6 !important;
}

.contact-status {
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.contact-status.success {
  background: rgba(112, 216, 170, 0.18);
  border-color: rgba(112, 216, 170, 0.45);
  color: #d9ffef;
}

.contact-status.error {
  background: rgba(255, 134, 167, 0.18);
  border-color: rgba(255, 134, 167, 0.45);
  color: #ffe0ea;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a {
  color: #ffd8e7;
}

@media (max-width: 960px) {
  .hero-grid,
  .builder-grid,
  .custom-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
  }
}
