/* ====== Brand + Typography (Magazine style) ====== */
:root {
  --brand: #6c5ce7;
  --brand-dark: #4e3bd6;
  --ink: #1b1f24;
  --paper: #ffffff;
  --muted: #6c757d;
  --accent: #ffd166; /* warm accent for serif highlights */
}

html { scroll-behavior: smooth; }
body {
  color: #2b2f36;
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.5;
}

/* Bold Magazine Typography with Montserrat */
.display-5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.h-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand-wordmark { 
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Bold body text for magazine feel */
p, .lead, .text-secondary {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* Extra bold for emphasis */
.fw-bold {
  font-weight: 800 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}
.kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .875rem;
}

/* Links & buttons */
a.link-brand { color: var(--brand); }
a.link-brand:hover { color: var(--brand-dark); }
.btn-brand { background: #005cb9 }
.btn-brand:hover { background: #5693ce; }
.btn-register { background: #ffe803; color: #003466; }
.btn-register:hover { background: #e6d100; color: #003466; }
.text-accent {
    color: #ffe803;
    font-style: italic;
}

/* Navbar */
.bg-blur {
  backdrop-filter: saturate(180%) blur(8px);
  background: #005cb9 !important;
}

.navbar-brand {
  font-size: 1.1rem;
  color: white !important;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: white !important;
}

.navbar-nav .nav-link:hover {
  color: #ffe803 !important;
}

.navbar-toggler {
  border: none !important;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(1200px 600px at 80% -20%, rgba(108,92,231,.45), rgba(0,0,0,0)) , #0e1013;
}
.hero .bg-video,
.hero .overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero .bg-video { object-fit: cover; z-index: 0; }
.hero .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.6));
  z-index: 1;
}
.hero .content { position: relative; z-index: 2; }

/* Countdown */
.countdown .time {
  min-width: 120px;
  min-height: 100px;
  border-radius: 1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0.5rem 10px;
  }
  
  .hero .content {
    padding: 1rem 0;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  
  .countdown {
    gap: 0.75rem !important;
    flex-wrap: wrap;
    justify-content: center !important;
  }
  
  .countdown .time {
    min-width: 80px;
    min-height: 80px;
    padding: 0.75rem !important;
  }
  
  .countdown .time div {
    font-size: 1.5rem !important;
  }
  
  .countdown .time small {
    font-size: 0.75rem !important;
  }
  
  .display-5 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  .lead {
    font-size: 2.1rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0.5rem 10px;
  }
  
  .hero .content {
    max-height: calc(100vh - 1rem);
    padding: 0.5rem 0;
  }
  
  .countdown .time {
    min-width: 70px;
    min-height: 70px;
    padding: 0.5rem !important;
  }
  
  .countdown .time div {
    font-size: 1.25rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Very small screens - landscape phones */
@media (max-height: 500px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    padding: 0.25rem 10px;
  }
  
  .hero .content {
    padding: 0.25rem 0;
    max-height: calc(100vh - 0.5rem);
  }
  
  .display-5 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .countdown .time {
    min-width: 60px;
    min-height: 60px;
    padding: 0.25rem !important;
  }
  
  .countdown .time div {
    font-size: 1rem !important;
  }
}

/* Large screens - better spacing */
@media (min-height: 900px) {
  .hero .content {
    padding: 3rem 0;
  }
}

/* Cards */
.card-ghost { border: 1px solid rgba(0,0,0,.06); box-shadow: 0 10px 30px rgba(0,0,0,.05); }

/* Logos */
.logos img { filter: grayscale(1); opacity: .7; transition: opacity .2s, filter .2s; }
.logos img:hover { opacity: 1; filter: none; }

/* Footer */
.site-footer { background: #0f1115; color: #cfd3d8; }
.site-footer a { color: #e6e9ee; }

/* Live badge */
.badge-live {
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Section spacing & anchor offset */
section { scroll-margin-top: 90px; }

/* Simple reveal animations */
.reveal { opacity: 0; transform: translateY(16px); transition: all .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Floating CTA Form - Compact Design */
.floating-cta {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  width: 280px;
  max-width: calc(100vw - 40px);
  transition: all 0.3s ease;
}

.floating-cta-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.floating-cta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.floating-cta-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2b2f36;
  margin-bottom: 0;
}

.floating-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.floating-close:hover {
  background: #f8f9fa;
  color: #495057;
  transform: scale(1.1);
}

.floating-cta .form-control {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  font-family: "Montserrat", sans-serif;
}

.floating-cta .form-check-label {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
  color: #495057;
}

.floating-cta .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

/* Floating CTA Animation */
.floating-cta.hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(100%);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* Mobile responsiveness for floating CTA */
@media (max-width: 991px) {
  .floating-cta {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .floating-cta {
    right: 15px;
    width: 260px;
  }
  
  .floating-cta-content {
    padding: 1rem;
  }
}

/* Magazine-style Benefits List */
.benefits-list {
  margin-left: 0;
}

.benefit-item {
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 92, 185, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
  background: rgba(0, 92, 185, 0.2);
  transform: scale(1.1);
}

.benefit-check svg {
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check svg {
  transform: scale(1.1);
}

/* Matt Highlight - Background only behind text */
.lead.matt_hl {
  display: inline !important;
  background: #ffe803 !important;
  color: #005cb9 !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 8px rgba(255, 232, 3, 0.3) !important;
  margin-bottom: 1.5rem !important;
}

/* Fallback matt_hl styles */
.matt_hl {
  display: inline !important;
  background: #ffe803 !important;
  color: #005cb9 !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
}

/* Responsive matt_hl */
@media (max-width: 768px) {
  .lead.matt_hl {
    font-size: 1.1rem !important;
    padding: 0.2rem 0.4rem 0.2rem 0.4rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .lead.matt_hl {
    font-size: 1rem !important;
    padding: 0.15rem 0.3rem 0.15rem 0.3rem !important;
    margin-bottom: 1rem !important;
  }
}

/* Utilities */
.text-secondary { color: var(--muted) !important; }

/* Improve form appearance */
.form-control:focus, .form-check-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(108,92,231,.15);
}

/* Announcement Text - Clean and Simple */
.announcement-text {
  display: inline-block;
  background-color: #9da1aa;
  color: #ffe803;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(157, 161, 170, 0.4);
  font-family: "Montserrat", sans-serif;
}

/* Image sizing */
.img-half-size {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* Product Launch Deal Styles */
.bg-gradient-primary {
  background: #ffe803;
}

.deal-badge .badge {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.deal-badge-special {
  background-color: #9da1aa !important;
  color: #000000 !important;
  border: none;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
}

.deal-cta-button {
  background-color: #005cb9 !important;
  border-color: #005cb9 !important;
  color: #ffffff !important;
}

.deal-item {
  padding: 0.75rem 0;
}

.deal-icon svg {
  flex-shrink: 0;
}

.deal-icon svg path {
  stroke: #000000 !important;
}

.deal-highlight {
  background: #000000;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 232, 3, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.deal-amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.deal-currency {
  color: #FFE803;
  font-size: 4rem;
  vertical-align: top;
}

.deal-number {
  color: #FFE803;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-label {
  color: #FFE803;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.deal-cta .btn {
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 232, 3, 0.3);
  transition: all 0.3s ease;
}

.deal-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 232, 3, 0.4);
}

.deal-bg-decoration {
  transform: translate(50%, -50%);
  z-index: 1;
}

/* Responsive adjustments for deal section */
@media (max-width: 991.98px) {
  .deal-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .deal-amount {
    font-size: 3rem;
  }
  
  .deal-currency {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .deal-amount {
    font-size: 2.5rem;
  }
  
  .deal-currency {
    font-size: 2.5rem;
  }
  
  .deal-label {
    font-size: 1rem;
  }
}

/* ====== FORM STYLING - COMPACT & CONSISTENT ====== */

/* Base form styling for all forms */
.hs-form, .form-control, .form-check {
  font-family: "Montserrat", sans-serif !important;
}

/* Hide HubSpot branding completely */
.hs-form .hs-form-required:before,
.hs-form .hs-form-required:after,
.hs-form .hs-form-required,
.hs-form .hs-form-required * {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
}

/* Force override HubSpot inline styles */
.hs-form input[type="submit"],
.hs-form button[type="submit"],
.hs-form .hs-button,
.hs-form .hs-submit {
  background-color: #005cb9 !important;
  border-color: #005cb9 !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  border-radius: 0.375rem !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  box-sizing: border-box !important;
}

/* Override for mini form */
#mini-hubspot-form input[type="submit"],
#mini-hubspot-form button[type="submit"],
#mini-hubspot-form .hs-button,
#mini-hubspot-form .hs-submit {
  background-color: #ffe803 !important;
  border-color: #ffe803 !important;
  color: #003466 !important;
}

/* Compact HubSpot form styling - Force override */
.hs-form {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.9rem !important;
  font-family: "Montserrat", sans-serif !important;
}

.hs-form .hs-form-field {
  margin-bottom: 0.75rem !important;
}

.hs-form .hs-form-field:last-child {
  margin-bottom: 0 !important;
}

.hs-form .hs-input {
  border: 1px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  color: #495057 !important;
  background-color: #fff !important;
  transition: all 0.15s ease-in-out !important;
  width: 100% !important;
  font-family: "Montserrat", sans-serif !important;
  box-sizing: border-box !important;
}

.hs-form .hs-input:focus {
  border-color: #005cb9 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 92, 185, 0.25) !important;
}

.hs-form .hs-button {
  background-color: #005cb9 !important;
  border-color: #005cb9 !important;
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  border-radius: 0.375rem !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  width: 100% !important;
  margin-top: 0.5rem !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 2px 8px rgba(0, 92, 185, 0.2) !important;
  box-sizing: border-box !important;
}

.hs-form .hs-button:hover {
  background-color: #5693ce !important;
  border-color: #5693ce !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 92, 185, 0.4) !important;
  color: #fff !important;
}

.hs-form .hs-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 92, 185, 0.3) !important;
}

.hs-form .hs-error-msgs {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  font-weight: 600;
}

/* Form labels styling */
.hs-form .hs-form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.25rem;
  display: block;
}

/* ====== MINI REGISTRATION FORM (Hero Section) ====== */
.card-ghost {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.card-ghost .card-body {
  padding: 1.5rem;
}

.card-ghost h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b2f36;
  margin-bottom: 0.75rem;
}

.card-ghost p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Mini form specific styling */
#mini-hubspot-form .hs-form-field {
  margin-bottom: 0.75rem;
}

#mini-hubspot-form .hs-input {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 0.375rem;
}

#mini-hubspot-form .hs-button {
  background-color: #ffe803 !important;
  border-color: #ffe803 !important;
  color: #003466 !important;
  padding: 0.6rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin-top: 0.75rem !important;
  box-shadow: 0 2px 8px rgba(255, 232, 3, 0.3) !important;
  transition: all 0.2s ease-in-out !important;
  border-radius: 0.375rem !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  width: 100% !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  box-sizing: border-box !important;
}

#mini-hubspot-form .hs-button:hover {
  background-color: #e6d100 !important;
  border-color: #e6d100 !important;
  color: #003466 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 232, 3, 0.4) !important;
}

#mini-hubspot-form .hs-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(255, 232, 3, 0.3) !important;
}

/* ====== FLOATING CTA FORM ====== */
.floating-cta .hs-form-field {
  margin-bottom: 0.75rem;
}

.floating-cta .hs-input {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 0.375rem;
}

.floating-cta .hs-button {
  background-color: #005cb9 !important;
  border-color: #005cb9 !important;
  color: #fff !important;
  padding: 0.6rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
  box-shadow: 0 2px 8px rgba(0, 92, 185, 0.2) !important;
  transition: all 0.2s ease-in-out !important;
  border-radius: 0.375rem !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  width: 100% !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  box-sizing: border-box !important;
}

.floating-cta .hs-button:hover {
  background-color: #5693ce !important;
  border-color: #5693ce !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 92, 185, 0.4) !important;
}

.floating-cta .hs-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 92, 185, 0.3) !important;
}

/* ====== MAIN REGISTRATION FORM ====== */
#main-hubspot-form .hs-form-field {
  margin-bottom: 1rem;
}

#main-hubspot-form .hs-input {
  padding: 0.6rem 0.875rem;
  font-size: 0.9rem;
  border-radius: 0.375rem;
}

#main-hubspot-form .hs-button {
  background-color: #005cb9 !important;
  border-color: #005cb9 !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-top: 0.75rem !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 16px rgba(0, 92, 185, 0.3) !important;
  transition: all 0.3s ease !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  width: 100% !important;
  font-family: "Montserrat", sans-serif !important;
  box-sizing: border-box !important;
}

#main-hubspot-form .hs-button:hover {
  background-color: #5693ce !important;
  border-color: #5693ce !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 92, 185, 0.4) !important;
}

#main-hubspot-form .hs-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(0, 92, 185, 0.3) !important;
}

/* ====== FORM RESPONSIVENESS ====== */
@media (max-width: 768px) {
  .card-ghost .card-body {
    padding: 1.25rem;
  }
  
  .floating-cta-content {
    padding: 1rem;
  }
  
  .hs-form .hs-input {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
  
  .hs-form .hs-button {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 92, 185, 0.2);
  }
  
  #mini-hubspot-form .hs-button {
    box-shadow: 0 2px 8px rgba(255, 232, 3, 0.3);
  }
  
  /* Make forms even more compact on tablets */
  #mini-hubspot-form .hs-form-field {
    margin-bottom: 0.6rem;
  }
  
  #main-hubspot-form .hs-form-field {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 576px) {
  .card-ghost .card-body {
    padding: 1rem;
  }
  
  .card-ghost h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card-ghost p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .hs-form .hs-input {
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
  }
  
  .hs-form .hs-button {
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 92, 185, 0.2);
  }
  
  #mini-hubspot-form .hs-button {
    box-shadow: 0 2px 6px rgba(255, 232, 3, 0.3);
  }
  
  /* Extra compact on mobile */
  #mini-hubspot-form .hs-form-field {
    margin-bottom: 0.5rem;
  }
  
  #main-hubspot-form .hs-form-field {
    margin-bottom: 0.75rem;
  }
  
  .floating-cta .hs-form-field {
    margin-bottom: 0.6rem;
  }
}

/* Very small screens - landscape phones */
@media (max-height: 500px) {
  .card-ghost .card-body {
    padding: 0.75rem;
  }
  
  .card-ghost h2 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .card-ghost p {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .hs-form .hs-input {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  .hs-form .hs-button {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 1px 4px rgba(0, 92, 185, 0.2);
  }
  
  #mini-hubspot-form .hs-button {
    box-shadow: 0 1px 4px rgba(255, 232, 3, 0.3);
  }
  
  .hs-form .hs-form-field {
    margin-bottom: 0.4rem;
  }
}


