@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

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

:root {
  --navy:   #060d1a;
  --navy2:  #0a1628;
  --navy3:  #0d2045;
  --pink:   #e8196a;
  --pink2:  #d4186a;
  --blue:   #1d65e0;
  --blue2:  #6fa0f8;
  --white:  #ffffff;
  --gray:   rgba(255,255,255,0.55);
  --gray2:  rgba(255,255,255,0.25);
  --gray3:  rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --mono:   'JetBrains Mono', monospace;
  --sans:   'Poppins', sans-serif;
  --glow-pink: 0 0 40px rgba(232,25,106,0.3);
  --glow-blue: 0 0 40px rgba(29,101,224,0.25);
  --max: 1160px;
}

html { scroll-behavior: smooth; }
.hbspt-form .hs-form-iframe > body{
    background:transparent!important;
  }
body {
  font-family: var(--sans);
  
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
section {background: var(--navy);}

/* ── Custom cursor ── */
#cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--pink); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(232,25,106,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(6,13,26,0.97); }

.nav-logo img { height: 26px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--gray);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--pink); color: var(--white);
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  padding: 10px 24px; border-radius: 9999px; border: none;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(232,25,106,0.3);
}
.nav-cta:hover { background: var(--pink2); transform: translateY(-1px); box-shadow: var(--glow-pink); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 100px 40px 60px;
}

#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width:100%!important; height:100%!important;
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-label {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--blue2); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px; opacity: 0;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900; line-height: 1.02;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 28px; opacity: 0;
  animation: fadeUp 0.9s 0.5s ease both;
  text-wrap: pretty;
}
.hero-headline .pink { color: var(--pink); }
.hero-headline .blue { color: var(--blue2); }

.typewriter-wrap {
  font-size: 20px; font-weight: 400; color: var(--gray);
  margin-bottom: 44px; min-height: 32px; opacity: 0;
  animation: fadeUp 0.9s 0.75s ease both;
}
.typewriter-prefix { color: rgba(255,255,255,0.4); }
.typewriter-text { color: var(--white); font-weight: 600; }
.tw-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--pink); vertical-align: text-bottom;
  border-radius: 1px; animation: blink 1s step-end infinite;
  margin-left: 2px;
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  margin-bottom: 72px; opacity: 0;
  animation: fadeUp 0.9s 1s ease both;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--pink); color: var(--white);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  padding: 16px 36px; border-radius: 9999px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 28px rgba(232,25,106,0.4);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--pink2); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(232,25,106,0.55); }

.btn-ghost {
  background: transparent; color: var(--white);
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 15px 36px; border-radius: 9999px;
  border: 1.5px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }

/* Stats bar */
.hero-stats {
  display: flex; gap: 0; justify-content: center; align-items: stretch;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; opacity: 0;
  animation: fadeUp 0.9s 1.2s ease both;
}
.stat-item {
  padding: 20px 36px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-num {
  font-size: 32px; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1;
}
.stat-num span { color: var(--pink); }
.stat-label { font-size: 11px; color: var(--gray2); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--mono); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 2s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(232,25,106,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label { font-family: var(--mono); font-size: 10px; color: var(--gray2); letter-spacing: 0.1em; }

/* ── CLIENTS ── */
#clients {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}
.clients-label {
  text-align: center; font-family: var(--mono); font-size: 11px;
  color: var(--gray2); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }

.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 52px;
  font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em; white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item a{font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.18); letter-spacing: -0.01em; white-space: nowrap; text-decoration:none;}

.marquee-item:hover { color: rgba(255,255,255,0.55); }
.marquee-dot { width: 5px; height: 5px; background: var(--pink); border-radius: 50%; opacity: 0.5; flex-shrink: 0; }

/* ── SECTION SHARED ── */
section { padding: 120px 40px; max-width: none; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--blue2); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-headline {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.025em; color: var(--white);
  margin-bottom: 16px; text-wrap: pretty;
}
.section-headline .pink { color: var(--pink); }
.section-headline .blue { color: var(--blue2); }
.section-sub {
  font-size: 16px; color: var(--gray); line-height: 1.65;
  max-width: 520px; margin-bottom: 60px;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--navy2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 17/14; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7) saturate(0.8);
}
.portfolio-card:hover img { transform: scale(1.06); filter: brightness(0.5) saturate(0.6); }

.portfolio-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(0deg, rgba(6,13,26,0.95) 0%, rgba(6,13,26,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}
.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(0deg, rgba(6,13,26,0.98) 0%, rgba(6,13,26,0.7) 100%);
}

.portfolio-tag {
  font-family: var(--mono); font-size: 10px; color: var(--pink);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.portfolio-title {
  font-size: 20px; font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 0;
}
.portfolio-desc {
  font-size: 13px; color: var(--gray); line-height: 1.5;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
}
.portfolio-card:hover .portfolio-desc { max-height: 80px; margin-top: 10px; }

.portfolio-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(232,25,106,0); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
  transition: all 0.3s; opacity: 0; transform: scale(0.8);
}
.portfolio-card:hover .portfolio-arrow {
  background: var(--pink); border-color: var(--pink);
  opacity: 1; transform: scale(1);
}

/* ── PROCESS ── */
#process { background: var(--navy); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}

.process-connector {
  position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--pink));
  opacity: 0.25;
}
.process-connector-fill {
  position: absolute; top: 32px; left: 12.5%; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  transition: width 1.5s ease;
  z-index: 1;
}
.process-connector-fill.animated { width: 75%; }

.process-step {
  padding: 0 24px 0; text-align: center; position: relative; z-index: 2;
}
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--gray2); margin: 0 auto 28px;
  transition: all 0.4s;
  position: relative;
}
.process-step.active .process-num {
  background: var(--pink); border-color: var(--pink);
  color: var(--white); box-shadow: var(--glow-pink);
}
.process-step-title {
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.process-step-desc {
  font-size: 13px; color: var(--gray); line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--navy2); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 28px;
  font-size: 64px; color: var(--pink); opacity: 0.25; font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(232,25,106,0.3); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.testimonial-text {
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-co { font-size: 12px; color: var(--pink); font-family: var(--mono); letter-spacing: 0.06em; }

.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { color: #fbbf24; font-size: 14px; }

/* ── FAQ ── */
#faq { background: var(--navy); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
.faq-col { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 24px 0; text-align: left;
  background: none; border: none; color: var(--white);
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--blue2); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300; transition: all 0.3s; color: var(--gray2);
}
.faq-item.open .faq-icon {
  background: var(--pink); border-color: var(--pink); color: var(--white); transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px; color: var(--gray); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── ENQUIRE ── */
#enquire {
  background: var(--navy2);
  position: relative; overflow: hidden;
}
#enquire::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.form-left .section-sub { margin-bottom: 40px; }

.form-trust {
  display: flex; flex-direction: column; gap: 16px;
}
.form-trust-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--gray);
}
.form-trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(232,25,106,0.1); border: 1px solid rgba(232,25,106,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.enquire-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 20px; padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  color: var(--gray2); letter-spacing: 0.1em; text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 18px;
  color: var(--white); font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pink); background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(232,25,106,0.12);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #0d2045; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; margin-top: 28px; padding: 17px;
  background: var(--pink); color: var(--white);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 4px 24px rgba(232,25,106,0.35);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--pink2); transform: translateY(-1px); box-shadow: 0 8px 36px rgba(232,25,106,0.5); }
.form-note { font-size: 11px; color: var(--gray2); text-align: center; margin-top: 14px; font-family: var(--mono); }

/* Success state */
.form-success {
  display: none; text-align: center; padding: 60px 24px;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 20px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 60px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 22px; opacity: 0.7; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 1; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--gray2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-family: var(--mono); }

/* ── Animations ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes marquee  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollPulse { 0%,100%{opacity:0.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }
@keyframes glow     { 0%,100%{box-shadow: var(--glow-pink)} 50%{box-shadow: 0 0 60px rgba(232,25,106,0.6)} }

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 80px 20px; }
  #hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1; min-width: 120px; padding: 16px 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-connector, .process-connector-fill { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .enquire-form { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media(max-width:575px){
  .process-grid{ grid-template-columns: 1fr; gap:30px;
  }
  .term-body {padding:20px 10px!important;}
  .footer-links {    flex-wrap: wrap; gap:15px; }
  footer{padding:60px 25px;}
}

/* hubspot form overrides */
  .hsfc-Step .hsfc-Step__Content{padding:0!important;}
  .enquire-form iframe .hsfc-Step__Content{padding:0!important;}
  .embedded-viral-link-ui{ display: none !important;}

  .hbspt-form body{
    background:transparent!important;
    background:#060d1a00!important;
  }
  .hbspt-form label{
    color: var(--gray2) !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }
  .hbspt-form .hs-button {
    width:100%!important;
    padding:17px!important;
    background: var(--pink) !important;
    color: var(--white) !important;
    font-family: var(--sans) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 24px rgba(232,25,106,0.35) !important;
    transition: all 0.2s !important;  
  }
  .hs-form-field input[type=text], 
  .hs-form-field input[type=email], 
  .hs-form-field input[type=phone], 
  .hs-form-field input[type=number], 
  .hs-form-field input[type=tel], 
  .hs-form-field input[type=date], 
  .hs-form-field select, 
  .hs-form-field textarea{

    background: rgba(255, 255, 255, 0.05)!important;
    border: 1px solid rgba(255, 255, 255, 0.1)!important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: var(--white) !important;
    font-family: var(--sans) 'Poppins', sans-serif!important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
    width: 100% !important;
  }
  .hbspt-form textarea.hs-fieldtype-textarea {
    height: 112px;
    resize: none;}
  .hs-form-field input[type=text]:focus, 
  .hs-form-field input[type=email]:focus, 
  .hs-form-field input[type=phone]:focus, 
  .hs-form-field input[type=number]:focus, 
  .hs-form-field input[type=tel]:focus, 
  .hs-form-field input[type=date]:focus, 
  .hs-form-field select:focus, 
  .hs-form-field textarea:focus{
    border-color: var(--pink)!important; 
    background: rgba(255,255,255,0.07)!important; 
    box-shadow: 0 0 0 3px rgba(232,25,106,0.12);
  }
  
.hbspt-form .hs-form__virality-link{
  display:none!important;
}
.hs-form-field select {height:50px!important; }
.hs-form-field select option{background:var(--navy)!important;}
.hbspt-form .submitted-message h3{font-weight:700!important; margin-bottom:12px; color:var(--white) !important; font-family: var(--sans) !important;}
.hbspt-form .submitted-message p{font-size:14px!important;  color:var(--grey) !important; font-family: var(--sans) !important;}
.hs-form-field  input::placeholder,
.hs-form-field textarea::placeholder {
  color: rgba(255,255,255,0.15) !important;
}