@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');
/* ---------- Design tokens ---------- */
  .hybrid-cloud-builder-module {
    --primary: #d946ef;
    --primary-600: #c026d3;
    --secondary: #2563eb;
    --secondary-600: #1d4ed8;
    --bg: #f8fafc;
    --surface: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 6px rgba(15,23,42,0.04);
    --shadow-lg: 0 12px 32px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.06);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hybrid-cloud-builder-module * { box-sizing: border-box; }
  

  .hybrid-cloud-builder-module {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    background: #f4f4f4
      var(--bg);
    color: var(--slate-900);
    line-height: 1.5;
    
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 80px;
  }

  /* ---------- Header ---------- */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .brand-mark {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: grid; place-items: center;
    color: white; font-weight: 800;
    box-shadow: var(--shadow-md);
  }
  .pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--surface);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 12px;
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
  }
  .pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e;
  }

  /* ---------- Screens ---------- */
  .screen { display: none; animation: fadeIn 400ms ease both; }
  .screen.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ---------- Landing ---------- */
  .hero { text-align: center; max-width: 760px; margin: 0 auto 48px; }
  .hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--secondary) 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--slate-500);
    margin: 0;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .intent-card {
    background: #ececec(--surface);
    border: noner(--slate-200);
    border-radius: 32px(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
  }
  .intent-card:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
    border-color: rgba(217,70,239,0.25);
  }
  .intent-card .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(217,70,239,0.12), rgba(37,99,235,0.12));
    display: grid; place-items: center;
    margin-bottom: 16px;
    font-size: 24px;
  }
  .intent-card h3 {
    font-size: 17px;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  .intent-card p {
    font-size: 14px;
    color: var(--slate-500);
    margin: 0 0 20px;
    flex-grow: 1;
  }
  .intent-card .start {
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    background: var(--slate-900);
    color: white;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
  }
  .intent-card:hover .start { background: var(--primary); }

  /* ---------- Wizard ---------- */
  .wizard-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    padding: 32px;
    max-width: 760px;
    margin: 0 auto;
  }

  .progress-wrap { margin-bottom: 28px; }
  .progress-meta {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--slate-500);
    margin-bottom: 8px;
  }
  .progress-bar {
    height: 8px;
    background: var(--slate-100);
    border-radius: 999px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    width: 0%;
    transition: width 400ms ease;
    border-radius: 999px;
  }

  .section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .question {
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  .option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--surface);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 15px;
    text-align: left;
    width: 100%;
  }
  .option:hover {
    border-color: var(--secondary);
    transform: translateX(2px);
  }
  .option.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(217,70,239,0.06), rgba(37,99,235,0.06));
  }
  .option .radio {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--slate-300);
    flex-shrink: 0;
    position: relative;
    transition: border-color var(--transition);
  }
  .option.selected .radio { border-color: var(--primary); }
  .option.selected .radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--primary);
    border-radius: 50%;
  }
  .option-text { font-weight: 500; }

  .wizard-actions {
    display: flex; justify-content: space-between; gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: inherit;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    box-shadow: 0 4px 12px rgba(217,70,239,0.25);
  }
  .btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(217,70,239,0.35);
  }
  .btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
  }
  .btn-ghost:hover { background: var(--slate-100); }

  /* ---------- Results ---------- */
  .results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  @media (max-width: 720px) { .results-grid { grid-template-columns: 1fr; } }

  .panel {
    background: var(--surface);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .panel h2 {
    margin: 0 0 6px;
    font-size: 20px;
    letter-spacing: -0.01em;
  }
  .panel .subtle {
    color: var(--slate-500);
    font-size: 14px;
    margin-bottom: 20px;
  }

  .results-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .results-header h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
  }
  .results-header p { color: var(--slate-500); margin: 0; }

  /* Progress bars */
  .platform-row { margin-bottom: 18px; }
  .platform-row:last-child { margin-bottom: 0; }
  .platform-row .label {
    display: flex; justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
  }
  .platform-row .label .pct { color: var(--slate-500); }
  .bar-track {
    height: 10px;
    background: var(--slate-100);
    border-radius: 999px;
    overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bar-azure { background: linear-gradient(90deg, #0078d4, #2563eb); }
  .bar-vdc { background: linear-gradient(90deg, #d946ef, #a21caf); }
  .bar-private { background: linear-gradient(90deg, #0f172a, #475569); }
  .bar-colo { background: linear-gradient(90deg, #f59e0b, #d97706); }

  /* Platform explanation cards */
  .platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
  }
  .platform-card {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--slate-200);
    transition: transform var(--transition);
  }
  .platform-card:hover { transform: translateY(-2px); }
  .platform-card .ptitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-500);
    margin-bottom: 4px;
  }
  .platform-card .pct-large {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .platform-card .pdesc {
    font-size: 13px;
    color: var(--slate-700);
  }

  /* Insights */
  .insight {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(217,70,239,0.04));
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-size: 14px;
  }
  .insight:last-child { margin-bottom: 0; }
  .insight .check {
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    display: grid; place-items: center;
    font-size: 12px;
    font-weight: 700;
  }

  /* Node4 glue */
  .glue-panel {
    background:
      linear-gradient(135deg, rgba(217,70,239,0.04), rgba(37,99,235,0.04)),
      var(--surface);
    border: 1px solid var(--slate-200);
    position: relative;
    overflow: hidden;
  }
  .glue-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
  }
  .glue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .glue-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .glue-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .glue-item .glue-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(217,70,239,0.15), rgba(37,99,235,0.15));
    display: grid; place-items: center;
    font-size: 18px;
  }
  .glue-item .glue-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .glue-item .glue-desc {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.45;
  }

  /* Next step */
  .next-step {
    background: linear-gradient(135deg, var(--slate-900), #1e293b);
    color: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .next-step .ns-content { flex-grow: 1; min-width: 220px; }
  .next-step h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
    opacity: 0.6;
  }
  .next-step .ns-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  /* CTA */
  .cta {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(217,70,239,0.08));
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
  }
  .cta h2 { margin: 0 0 8px; letter-spacing: -0.01em; }
  .cta p { color: var(--slate-700); margin: 0 0 20px; }
.form-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
}


  }
  .form-grid input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--slate-200);
    font-size: 14px;
    font-family: inherit;
    background: var(--surface);
    transition: border-color var(--transition);
  }
  .form-grid input:focus {
    outline: none;
    border-color: var(--primary);
  }
  .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--slate-900);
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    transition: transform 300ms ease;
    z-index: 100;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  .footer-actions {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    margin-top: 16px;
  }

  /* Mobile tweaks */
  @media (max-width: 600px) {
    .hybrid-cloud-builder-module .container { padding: 20px 16px 60px; }
    .wizard-card { padding: 24px 20px; }
    .panel, .cta { padding: 22px; }
    .next-step { padding: 22px; }
  }
/* ======================================================
   REMOVE PAGE BACKGROUND / KEEP NODE4 PAGE COLOUR
   ====================================================== */

.hybrid-cloud-builder-module {
  background: transparent !important;
  background-image: none !important;
}

.hybrid-cloud-builder-module .container {
  background: transparent !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.form-grid input {
    width: 100%;
    height: 48px;

    border: 1px solid #d9dde8;
    border-radius: 12px;

    background: #ffffff;

    padding: 0 16px;

    font-size: 16px;
}

/* ======================================================
   REMOVE HEADER / LOGO
   ====================================================== */

.header {
  display: none !important;
}

.pill,
.pill .dot {
  display: none !important;
}

/* ======================================================
   REMOVE HERO SECTION
   ====================================================== */

.hero {
  display: none !important;
}

/* ======================================================
   CARD LAYOUT
   ====================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 0 !important;
}

/* ======================================================
   INTENT CARDS
   ====================================================== */

.intent-card {
  position: relative;
  background: #f3f3f3 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 36px !important;
  min-height: 290px;
  box-shadow: none !important;
  transition: all .25s ease;
}

.intent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
}

/* ======================================================
   ICONS
   ====================================================== */

.intent-card .icon {
  position: absolute;
  top: 34px;
  right: 34px;

  width: 48px;
  height: 48px;

  background: #8f1fc4 !important;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 !important;
}
.intent-card .icon .material-symbols-outlined {
color: #ffffff;
font-size: 24px;
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24;
}
/* ======================================================
   HEADINGS
   ====================================================== */

.intent-card h3 {
  color: #8f1fc4 !important;

  max-width: 220px;

  font-size: 24px;
  line-height: 1.3;

  font-weight: 700;
  letter-spacing: -.02em;

  margin: 0 0 28px;
}

/* ======================================================
   BODY COPY
   ====================================================== */

.intent-card p {
  max-width: 250px;

  color: #000000;

  font-size: 16px;
  line-height: 1.55;

  margin-bottom: 42px;
}

/* ======================================================
   BUTTONS
   ====================================================== */

.start,
.btn-primary {
  background: #8f1fc4 !important;
  background-image: none !important;

  color: #ffffff !important;

  border: none !important;
  border-radius: 999px !important;

  min-width: 120px;
  padding: 14px 28px !important;

  font-size: 18px;
  font-weight: 700;

  box-shadow: none !important;
  transition: all .25s ease;
}

.start:hover,
.btn-primary:hover,
.start:focus,
.btn-primary:focus {
  background: #e126d9 !important;
  color: #ffffff !important;

  transform: none !important;
  box-shadow: none !important;
}

/* ======================================================
   RESULTS BUTTONS
   ====================================================== */

.next-step .btn-primary,
.cta .btn-primary {
  background: #8f1fc4 !important;
}

.next-step .btn-primary:hover,
.cta .btn-primary:hover {
  background: #e126d9 !important;
}

/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 991px) {

  .card-grid {
    grid-template-columns: 1fr !important;
  }

  .intent-card {
    min-height: auto;
  }

  .intent-card h3,
  .intent-card p {
    max-width: none;
  }

}
/* FORCE BUTTON TEXT TO SHOW */

.start,
.btn-primary,
.next-step .btn-primary,
.cta .btn-primary {
    color: #ffffff !important;
    text-indent: 0 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    opacity: 1 !important;
}

.btn-ghost {
    color: #8f1fc4 !important;
    font-size: 18px !important;
    opacity: 1 !important;
}
/* ======================================================
FINAL RESULTS PAGE STYLING
====================================================== */

/* RECOMMENDED NEXT STEP */

.next-step {
    background: #f*ffff !important;
    border: 1px s*lid #d9dde8 !important;
    border*top: 4px solid #8f1fc4 !important;*
    border-radius: 28px !importan*;

    padding: 28px 32px !importa*t;

    display: flex !important;
*   justify-content: space-between *important;
    align-items: center*!important;

    margin-bottom: 28*x !important;

    color: #111827 *important;
}

.next-step h3 {
    *olor: #8f1fc4 !important;
    font*size: 13px !important;
    font-we*ght: 700 !important;
    letter*spacing: .08em !important;
}

.nex*-step .ns-title {
    color* #111827*!important;
    font*size: 22px !important;
    font*weight: 700 *important;
}

/* DOWNLOAD BANNER */

.download-banner {
    background: #220547 !important;

    border-radius: 28px !important;

    padding: 32px 40px !important;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    min-height: 135px;

    margin-top: 24px !important;
    margin-bottom: 40px !important;
}

.download-banner h3 {
    color: rgba(255,255,255,.7) !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 0.08em !important;

    margin: 0 0 10px 0 !important;
}

.download-content {
    display: flex;
    flex-direction: column;
}

.download-title {
    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 700 !important;

    line-height: 1.3;
}

.download-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* ARCHITECT SECTION */

.cta {
    background: #f6f0f8 !important;

    border: 1px solid #d9dde8 !important;

    border-radius: 28px !important;

    padding: 32px !important;
}

.cta h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111827 !important;
}

.cta p {
    font-size: 18px !important;
    color: #334155 !important;
}

/* WHITE PANEL */

.form-panel {
    background: #ffffff !important;

    border-radius: 8px !important;

    padding: 32px !important;
}

/* FORM */

.form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}

.field {
    display: flex !important;
    flex-direction: column !important;
}

.field-full {
    grid-column: 1 / -1 !important;
}

.field label {
    font-size: 14px !important;
    color: #111827 !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}

.form-grid input {
    background: #ffffff !important;

    border: 1px solid #d9dde8 !important;

    border-radius: 10px !important;

    height: 48px !important;

    padding: 0 16px !important;

    color: #111827 !important;
}

/* BUTTONS */

.download-banner .btn-primary,
.cta .btn-primary {
    background: #c218d4 !important;

    color: #ffffff !important;

    border-radius: 14px !important;
}

.cta-actions {
    display: flex !important;
    justify-content: flex-end !important;

    margin-top: 32px !important;
}
/* ==========================================
   DOWNLOAD BANNER FIX
   ========================================== */

.download-banner {
    background: #220547 !important;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    padding: 32px 40px !important;

    border-radius: 28px !important;
}

.download-banner .download-content {
    color: #ffffff !important;
}

.download-banner h3 {
    color: rgba(255,255,255,.75) !important;

    margin: 0 0 8px 0 !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
}

.download-banner .download-title {
    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;
}

/* Force button styling */

.download-banner .btn-primary {
    background: #c218d4 !important;

    color: #ffffff !important;

    border-radius: 16px !important;

    min-width: 180px !important;

    box-shadow: none !important;
}
/* ===============================
OVERRIDE NEXT STEP CARD
=============================== */
 
.next-step {
background: #ffffff !important;
 
border: 1px solid #d9dde8 !important;
border-top: 4px solid #8f1fc4 !important;
 
border-radius: 28px !important;
 
color: #111827 !important;
 
padding: 28px 32px !important;
}
 
.next-step h3 {
color: #8f1fc4 !important;
opacity: 1 !important;
}
 
.next-step .ns-title {
color: #111827 !important;
}
 
.next-step .btn-primary {
background: #c218d4 !important;
}
/* ==========================================
   HUBSPOT FORM COMPONENTS
   ========================================== */

.hsfc-Form {
    width: 100%;
}

.hsfc-Step {
    width: 100%;
}

.hsfc-Step__Content {
    width: 100%;
}

.hsfc-Row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    width: 100%;
}

.hsfc-TextField,
.hsfc-EmailField,
.hsfc-PhoneField,
.hsfc-TextareaField {
    flex: 1;
}

/* Labels */

.hsfc-FieldLabel {
    display: block !important;
    margin-bottom: 8px !important;

    color: #111827 !important;

    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Inputs */

.hsfc-TextInput,
.hsfc-TextareaInput {
    width: 100% !important;

    background: #ffffff !important;

    border: 1px solid #d9dde8 !important;
    border-radius: 12px !important;

    color: #111827 !important;

    padding: 0 16px !important;
}

.hsfc-TextInput {
    height: 48px !important;
}

.hsfc-TextareaInput {
    min-height: 120px !important;
    padding-top: 12px !important;
}

/* Buttons */

.hsfc-Button {
    background: #c218d4 !important;

    color: #ffffff !important;

    border: none !important;

    border-radius: 14px !important;

    min-width: 120px !important;

    padding: 12px 24px !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

.hsfc-Button:hover {
    background: #e126d9 !important;
}

/* Next / Submit buttons alignment */

.hsfc-NavigationRow {
    margin-top: 32px !important;
}

.hsfc-NavigationRow__Buttons {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}
/* ==========================================
   HUBSPOT FORM STYLING
   ========================================== */

.cta {
    background: #f6f0f8 !important;
    border: 1px solid #d9dde8 !important;
    border-radius: 28px !important;
    padding: 32px !important;
}

.cta h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 12px !important;
}

.cta p {
    color: #334155 !important;
    margin-bottom: 28px !important;
}

.form-panel {
    background: #ffffff !important;
    padding: 32px !important;
    border-radius: 8px !important;
}

/* HubSpot form fields */

.form-panel .hs-form-field {
    margin-bottom: 24px !important;
}

.form-panel label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111827 !important;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100% !important;
    height: 48px !important;
    border: 1px solid #d9dde8 !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
}

/* HubSpot button */

.form-panel .hs-button,
.form-panel input[type="submit"] {
    background: #c218d4 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
}

.form-panel .hs-button:hover,
.form-panel input[type="submit"]:hover {
    background: #e126d9 !important;
}