:root {
  --bg: #050505;
  --bg-soft: #0b1120;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --accent-1: #1d9bf0;
  --accent-2: #5b21b6;
  --accent-3: #f59e0b;
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 155, 240, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(91, 33, 182, 0.14), transparent 30%),
    #050505;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  color: #fff;
  box-shadow: 0 10px 30px rgba(29, 155, 240, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(29, 155, 240, 0.35);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
}

.hero,
.page-hero {
  padding: 88px 0 56px;
}

.hero-grid,
.two-col,
.contact-grid,
.services-grid,
.features-grid,
.process-grid,
.pricing-grid,
.results-grid,
.trust-grid,
.footer-grid,
.calc-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(90deg, #1d9bf0, #7c3aed, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p,
.page-hero p,
.section-subtext,
.card p,
li,
.small-note,
.footer p {
  color: var(--muted);
}

.hero p,
.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.stat-card,
.service-card,
.feature-card,
.pricing-card,
.contact-card,
.hero-panel,
.process-step,
.result-card,
.trust-card,
.contact-form,
.calculator-card,
.cta-band {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.service-card,
.feature-card,
.pricing-card,
.contact-card,
.process-step,
.result-card,
.trust-card,
.contact-form,
.calculator-card {
  padding: 28px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.hero-panel {
  padding: 28px;
  overflow: hidden;
}

.logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.logo-card::before,
.logo-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(65px);
  opacity: 0.35;
}

.logo-card::before {
  width: 180px;
  height: 180px;
  background: var(--accent-1);
  top: 30px;
  left: 10px;
}

.logo-card::after {
  width: 220px;
  height: 220px;
  background: var(--accent-3);
  bottom: 10px;
  right: 10px;
}

.logo-card img {
  width: min(90%, 420px);
  position: relative;
  z-index: 1;
  border-radius: 18px;
}

section {
  padding: 46px 0;
}

.section-head {
  margin-bottom: 28px;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid,
.process-grid,
.results-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(29,155,240,0.18), rgba(245,158,11,0.18));
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card,
.feature-card,
.pricing-card,
.contact-card,
.result-card,
.trust-card,
.card,
.process-step {
  transition: 0.28s ease;
}

.service-card:hover,
.feature-card:hover,
.pricing-card:hover,
.contact-card:hover,
.result-card:hover,
.trust-card:hover,
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.14);
  color: #fde68a;
  border: 1px solid rgba(245,158,11,0.22);
  font-size: 0.82rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 10px 0;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card ul,
.list-clean {
  list-style: none;
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.pricing-card li::before,
.list-clean li::before {
  content: "✓";
  color: #fbbf24;
  margin-right: 10px;
  font-weight: 800;
}

.calc-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.calculator-card h3 {
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(29,155,240,0.8);
  box-shadow: 0 0 0 3px rgba(29,155,240,0.12);
}

select {
  background-color: rgba(255,255,255,0.03);
  color: #fff;
}

select option {
  background-color: #111827;
  color: #ffffff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.field label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #1d9bf0;
}

.field.full label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-output {
  display: grid;
  gap: 14px;
}

.output-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.output-box strong {
  display: block;
  font-size: 1.8rem;
  margin-top: 4px;
}

.cta-band {
  padding: 34px 28px;
  display: grid;
  gap: 16px;
  background: linear-gradient(135deg, rgba(29,155,240,0.12), rgba(91,33,182,0.12), rgba(245,158,11,0.10));
}

.footer {
  padding: 34px 0 50px;
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.small-note {
  font-size: 0.92rem;
}

.center {
  text-align: center;
}

/* HubSpot form styling */
.hs-form-frame,
.hs-form-frame form,
.hs-form-frame .hs-form {
  width: 100%;
}

.hs-form-frame fieldset {
  max-width: 100% !important;
  border: 0;
  margin: 0;
  padding: 0;
}

.hs-form-frame .hs-form-field {
  margin-bottom: 18px !important;
}

.hs-form-frame,
.hs-form-frame * {
  color: #ffffff !important;
}

.hs-form-frame label,
.hs-form-frame span,
.hs-form-frame p,
.hs-form-frame legend,
.hs-form-frame .hs-richtext,
.hs-form-frame .hs-richtext p,
.hs-form-frame .hs-form-field label,
.hs-form-frame .hs-field-desc,
.hs-form-frame .input,
.hs-form-frame .inputs-list,
.hs-form-frame .hs-phone,
.hs-form-frame .hs_phone,
.hs-form-frame .hs-phone-number,
.hs-form-frame .hs-fieldtype-phonenumber,
.hs-form-frame .hs-fieldtype-phonenumber * {
  color: #ffffff !important;
}

.hs-form-frame .hs-form-required,
.hs-form-frame .hs-error-msg,
.hs-form-frame .hs-error-msgs,
.hs-form-frame .hs-error-msgs li {
  color: #f87171 !important;
}

.hs-form-frame input,
.hs-form-frame textarea,
.hs-form-frame select,
.hs-form-frame option,
.hs-form-frame .hs-input {
  background: rgba(255,255,255,0.03) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
}

.hs-form-frame input:focus,
.hs-form-frame textarea:focus,
.hs-form-frame select:focus {
  border-color: rgba(29,155,240,0.8) !important;
  box-shadow: 0 0 0 3px rgba(29,155,240,0.12) !important;
}

.hs-form-frame textarea {
  min-height: 150px !important;
  resize: vertical;
}

.hs-form-frame select option {
  background-color: #111827 !important;
  color: #ffffff !important;
}

.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder,
.hs-form-frame .hs-input::placeholder {
  color: #94a3b8 !important;
}

.hs-form-frame .actions {
  margin-top: 12px;
}

.hs-form-frame .hs-button,
.hs-form-frame input[type="submit"] {
  background: linear-gradient(135deg, #1d9bf0, #5b21b6, #f59e0b) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 30px rgba(29, 155, 240, 0.25) !important;
}

.hs-form-frame .hs-button:hover,
.hs-form-frame input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(29, 155, 240, 0.35) !important;
}

.hs-form-frame ul.no-list,
.hs-form-frame .inputs-list,
.hs-form-frame .hs-error-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-form-frame .submitted-message {
  color: #fff !important;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .calc-grid,
  .contact-grid,
  .services-grid,
  .features-grid,
  .process-grid,
  .pricing-grid,
  .results-grid,
  .trust-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .services-grid,
  .features-grid,
  .process-grid,
  .pricing-grid,
  .results-grid,
  .trust-grid,
  .hero-stats,
  .form-grid,
  .calc-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .logo-card {
    min-height: 280px;
  }
}
/* ===== FINAL HUBSPOT TEXT FIX (STRONG OVERRIDE) ===== */

.hs-form-frame,
.hs-form-frame * {
  color: #ffffff !important;
}

/* specifically fix labels that are still dark */
.hs-form-frame label,
.hs-form-frame .hs-form-field label,
.hs-form-frame .hs-input-label,
.hs-form-frame .hs-field-desc,
.hs-form-frame legend {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* fix any weird gray text */
.hs-form-frame span,
.hs-form-frame p,
.hs-form-frame div {
  color: #ffffff !important;
}

/* fix required asterisk */
.hs-form-frame .hs-form-required {
  color: #f87171 !important;
}

/* ensure inputs stay readable */
.hs-form-frame input,
.hs-form-frame textarea,
.hs-form-frame select {
  color: #ffffff !important;
}

/* placeholder */
.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder {
  color: #94a3b8 !important;
}

/* phone number + dropdown specifically */
.hs-form-frame .hs-fieldtype-phonenumber *,
.hs-form-frame select option {
  color: #ffffff !important;
  background-color: #111 !important;
}
