/* ══════════════════════════════════════════════════════════
   HUE-SUITE MARKETING PAGE — MAIN STYLES
   Palette: Cream, Charcoal, Gold, Pastel Earthy
   Fonts: Cormorant Garamond (display) + Montserrat (body)
   Inspired by: Fresha aesthetic (clean, modern, minimal)
   ══════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hs-font-body);
  font-weight: 400;
  color: var(--hs-charcoal);
  background: var(--hs-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

button {
  font-family: var(--hs-font-body);
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Container ─────────────────────────────────────────── */
.hs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Utility Classes ───────────────────────────────────── */
.hs-overline {
  font-family: var(--hs-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.hs-section {
  padding: var(--hs-space-4xl) 0;
}

.hs-section--dark {
  background: var(--hs-charcoal-deep);
}

.hs-section--pearl {
  background: var(--hs-warm);
}

.hs-section__header {
  text-align: center;
  margin-bottom: var(--hs-space-3xl);
}

.hs-section__title {
  font-family: var(--hs-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--hs-charcoal);
  margin-top: var(--hs-space-md);
}

.hs-section__title em {
  font-style: italic;
}

.hs-section__title--light {
  color: var(--hs-cream);
}

.hs-section__subtitle {
  font-size: 16px;
  color: var(--hs-grey-medium);
  max-width: 560px;
  margin: var(--hs-space-md) auto 0;
  line-height: 1.7;
}

.hs-section__subtitle--light {
  color: var(--hs-grey-light);
}

/* ── Buttons ───────────────────────────────────────────── */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hs-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--hs-radius-full);
  transition: all var(--hs-duration) var(--hs-ease);
  cursor: pointer;
}

.hs-btn--primary {
  background: var(--hs-gold);
  color: var(--hs-white);
}

.hs-btn--primary:hover {
  background: var(--hs-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.25);
}

.hs-btn--secondary {
  background: var(--hs-charcoal);
  color: var(--hs-cream);
}

.hs-btn--secondary:hover {
  background: var(--hs-grey-dark);
  transform: translateY(-1px);
}

.hs-btn--ghost {
  background: transparent;
  color: var(--hs-cream);
  border: 1px solid rgba(250, 248, 245, 0.25);
}

.hs-btn--ghost:hover {
  background: rgba(250, 248, 245, 0.08);
  border-color: rgba(250, 248, 245, 0.4);
}

.hs-btn--lg {
  padding: 18px 40px;
  font-size: 14px;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--hs-ease), transform 0.7s var(--hs-ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   PLACEHOLDER IMAGES
   For sections where real photos will be added later
   ══════════════════════════════════════════════════════════ */
.hs-placeholder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--hs-grey-medium);
  background: var(--hs-warm);
  border: 2px dashed var(--hs-border);
  width: 100%;
  height: 100%;
}

.hs-placeholder-image span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hs-placeholder-image--hero {
  width: 280px;
  height: 360px;
  border-radius: var(--hs-radius-xl);
}

.hs-placeholder-image--circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--hs-border);
}

.hs-placeholder-image--circle span {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   PHONE MOCKUP — Pure CSS device frame
   ══════════════════════════════════════════════════════════ */
.hs-phone {
  position: relative;
  background: #1A1A1A;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  width: 280px;
}

.hs-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.hs-phone__screen {
  background: var(--hs-cream);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Phone size variants */
.hs-phone--sm {
  width: 240px;
}

.hs-phone--md {
  width: 280px;
}

.hs-phone--marketplace {
  width: 280px;
}

.hs-phone--cta {
  width: 220px;
}

/* ══════════════════════════════════════════════════════════
   APP SCREENS — Content inside phone mockups
   ══════════════════════════════════════════════════════════ */
.hs-app-screen {
  padding: 36px 16px 16px;
  min-height: 480px;
  font-size: 12px;
}

.hs-phone--sm .hs-app-screen {
  min-height: 420px;
  padding: 32px 12px 12px;
  font-size: 11px;
}

.hs-phone--md .hs-app-screen {
  min-height: 500px;
}

.hs-phone--cta .hs-app-screen {
  min-height: 360px;
  padding: 40px 16px 16px;
}

/* ── App Screen: Top Bar ─────────────────────────────── */
.hs-app-screen__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--hs-charcoal);
}

.hs-phone--sm .hs-app-screen__topbar {
  font-size: 11px;
  margin-bottom: 12px;
}

.hs-app-screen__topbar-title {
  font-family: var(--hs-font-display);
  font-size: 16px;
  font-weight: 500;
}

.hs-phone--sm .hs-app-screen__topbar-title {
  font-size: 14px;
}

/* ── App Screen: Dashboard ───────────────────────────── */
.hs-app-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hs-app-screen__greeting {
  font-family: var(--hs-font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-app-screen__avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hs-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.hs-app-screen__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hs-app-screen__stat-card {
  flex: 1;
  background: var(--hs-warm);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.hs-app-screen__stat-num {
  display: block;
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-app-screen__stat-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
}

.hs-app-screen__section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
  margin-bottom: 8px;
  margin-top: 4px;
}

/* ── App Screen: Appointments ────────────────────────── */
.hs-app-screen__appointment {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
}

.hs-app-screen__appt-time {
  font-family: var(--hs-font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--hs-charcoal);
  min-width: 40px;
}

.hs-app-screen__appt-info {
  display: flex;
  flex-direction: column;
}

.hs-app-screen__appt-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-app-screen__appt-service {
  font-size: 10px;
  color: var(--hs-grey-medium);
}

.hs-app-screen__appt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hs-gold);
  margin-left: auto;
  flex-shrink: 0;
}

.hs-app-screen__appt-dot--sage {
  background: var(--hs-sage);
}

/* ── App Screen: Quick Actions ───────────────────────── */
.hs-app-screen__actions {
  display: flex;
  gap: 6px;
}

.hs-app-screen__action-btn {
  flex: 1;
  background: var(--hs-charcoal);
  color: var(--hs-cream);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── App Screen: Search ──────────────────────────────── */
.hs-app-screen__search {
  background: var(--hs-warm);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--hs-grey-medium);
}

/* ── App Screen: Formula Cards ───────────────────────── */
.hs-app-screen__formula-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
}

.hs-app-screen__formula-colors {
  display: flex;
  gap: 3px;
}

.hs-app-screen__formula-colors span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.hs-app-screen__formula-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-app-screen__formula-sub {
  font-size: 10px;
  color: var(--hs-grey-medium);
}

/* ── App Screen: Calendar ────────────────────────────── */
.hs-app-screen__calendar-week {
  display: flex;
  justify-content: space-around;
  margin-bottom: 4px;
}

.hs-app-screen__calendar-week span {
  font-size: 10px;
  font-weight: 500;
  color: var(--hs-grey-medium);
  text-align: center;
  width: 36px;
}

.hs-app-screen__cal-today {
  color: var(--hs-gold) !important;
  font-weight: 600 !important;
}

.hs-app-screen__calendar-dates {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

.hs-app-screen__calendar-dates span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-app-screen__cal-active {
  background: var(--hs-gold) !important;
  color: white !important;
}

/* ── App Screen: Timeline ────────────────────────────── */
.hs-app-screen__timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-app-screen__timeline-slot {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.hs-app-screen__timeline-time {
  font-size: 11px;
  font-weight: 500;
  color: var(--hs-grey-medium);
  min-width: 36px;
  padding-top: 6px;
}

.hs-app-screen__timeline-event {
  flex: 1;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}

.hs-app-screen__timeline-event span {
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-app-screen__timeline-event small {
  font-size: 10px;
  color: var(--hs-grey-medium);
}

.hs-app-screen__timeline-event--gold {
  background: rgba(201, 169, 98, 0.12);
  border-left: 3px solid var(--hs-gold);
}

.hs-app-screen__timeline-event--sage {
  background: rgba(221, 229, 221, 0.5);
  border-left: 3px solid #a8c4a8;
}

.hs-app-screen__timeline-event--rose {
  background: rgba(232, 212, 212, 0.5);
  border-left: 3px solid #d4a0a0;
}

.hs-app-screen__timeline-event--lavender {
  background: rgba(228, 224, 236, 0.5);
  border-left: 3px solid #b0a4c8;
}

/* ── App Screen: Inventory ───────────────────────────── */
.hs-app-screen__inv-alert {
  background: rgba(201, 169, 98, 0.1);
  color: var(--hs-gold);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.hs-app-screen__inv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--hs-border-light);
}

.hs-app-screen__inv-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hs-app-screen__inv-info {
  flex: 1;
  min-width: 0;
}

.hs-app-screen__inv-info span {
  font-size: 11px;
  font-weight: 500;
  color: var(--hs-charcoal);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-app-screen__inv-bar {
  height: 3px;
  background: var(--hs-border-light);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.hs-app-screen__inv-bar div {
  height: 100%;
  background: var(--hs-gold);
  border-radius: 2px;
}

.hs-app-screen__inv-qty {
  font-size: 12px;
  font-weight: 700;
  color: var(--hs-charcoal);
  min-width: 20px;
  text-align: right;
}

.hs-app-screen__inv-qty--low {
  color: #c0392b;
}

.hs-app-screen__inv-order-btn {
  background: var(--hs-gold);
  color: white;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* ── App Screen: Shop / Marketplace ──────────────────── */
.hs-app-screen--shop {
  padding-top: 36px;
}

.hs-app-screen__shop-banner {
  background: var(--hs-charcoal);
  color: var(--hs-grey-light);
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.hs-app-screen__shop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: 10px;
  margin-bottom: 6px;
}

.hs-app-screen__shop-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.hs-app-screen__shop-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hs-app-screen__shop-info span:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--hs-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-app-screen__shop-price {
  font-size: 11px;
  color: var(--hs-grey-medium);
}

.hs-app-screen__shop-add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hs-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--hs-grey-medium);
  flex-shrink: 0;
}

.hs-app-screen__shop-add--active {
  background: var(--hs-gold);
  color: white;
  border-color: var(--hs-gold);
  font-size: 11px;
}

.hs-app-screen__shop-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin-top: 6px;
  border-top: 1px solid var(--hs-border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-app-screen__shop-checkout {
  background: var(--hs-gold);
  color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── App Screen: Welcome (CTA phone) ────────────────── */
.hs-app-screen--welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 40px 20px;
}

.hs-app-screen__welcome-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--hs-charcoal);
  color: var(--hs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hs-font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hs-app-screen__welcome-title {
  font-family: var(--hs-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--hs-charcoal);
  margin-bottom: 6px;
}

.hs-app-screen__welcome-sub {
  font-size: 12px;
  color: var(--hs-grey-medium);
  margin-bottom: 24px;
}

.hs-app-screen__welcome-btn {
  background: var(--hs-gold);
  color: white;
  border-radius: var(--hs-radius-full);
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════ */
.hs-announce {
  background: linear-gradient(135deg, var(--hs-charcoal-deep) 0%, #1e1b17 100%);
  color: var(--hs-cream);
  padding: 10px 40px;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.hs-announce::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.08), transparent);
  background-size: 200% 100%;
  animation: announceShimmer 3s ease-in-out infinite;
}

@keyframes announceShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hs-announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  position: relative;
}

.hs-announce__badge {
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  color: var(--hs-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: var(--hs-radius-full);
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 98, 0); }
}

.hs-announce__text {
  color: rgba(250, 248, 245, 0.85);
  line-height: 1.4;
}

.hs-announce__text strong {
  color: var(--hs-gold);
  font-weight: 600;
}

.hs-announce__link {
  color: var(--hs-gold);
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--hs-duration) var(--hs-ease);
  flex-shrink: 0;
}

.hs-announce__link:hover {
  color: var(--hs-gold-light);
}

.hs-announce__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(250, 248, 245, 0.4);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--hs-duration) var(--hs-ease);
}

.hs-announce__close:hover {
  color: var(--hs-cream);
}

.hs-announce--hidden {
  display: none;
}

/* ── Nav AI link special styling ─────────────────────────── */
.hs-nav__link--ai {
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.hs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 0 40px;
}

.hs-nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hs-border-light);
}

.hs-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.hs-nav__logo {
  display: flex;
  align-items: center;
}

.hs-nav__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.hs-nav__logo-img--white {
  display: block;
}

.hs-nav__logo-img--dark {
  display: none;
}

.hs-nav.scrolled .hs-nav__logo-img--white {
  display: none;
}

.hs-nav.scrolled .hs-nav__logo-img--dark {
  display: block;
}

.hs-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hs-nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.8);
  transition: color 0.3s ease;
}

.hs-nav.scrolled .hs-nav__link {
  color: var(--hs-grey-dark);
}

.hs-nav__link:hover {
  color: var(--hs-gold);
}

.hs-nav__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--hs-gold);
  color: var(--hs-white);
  border-radius: var(--hs-radius-full);
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.hs-nav__cta:hover {
  background: var(--hs-gold-light);
  transform: translateY(-1px);
}

/* ── Hamburger ─────────────────────────────────────────── */
.hs-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hs-nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--hs-cream);
  transition: background 0.3s ease;
}

.hs-nav.scrolled .hs-nav__hamburger span {
  background: var(--hs-charcoal);
}

/* ── Mobile Menu ───────────────────────────────────────── */
.hs-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--hs-cream);
  padding: var(--hs-space-lg) 40px var(--hs-space-2xl);
  z-index: 99;
  flex-direction: column;
  gap: var(--hs-space-md);
  border-bottom: 1px solid var(--hs-border-light);
  box-shadow: var(--hs-shadow-lg);
}

.hs-mobile-menu.open {
  display: flex;
}

.hs-mobile-menu__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-charcoal);
  padding: var(--hs-space-sm) 0;
  border-bottom: 1px solid var(--hs-border-light);
}

.hs-mobile-menu__cta {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--hs-gold);
  color: var(--hs-white);
  border-radius: var(--hs-radius-full);
  padding: 14px 32px;
  margin-top: var(--hs-space-sm);
}

/* ── Language Dropdown (Desktop) ────────────────────────── */
.hs-lang {
  position: relative;
  display: flex;
  align-items: center;
}

.hs-lang__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.hs-lang__toggle:hover {
  color: var(--hs-charcoal);
  background: var(--hs-warm);
}

.hs-lang__current {
  font-size: 11px;
}

.hs-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--hs-white);
  border: 1px solid var(--hs-grey-pale);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 4px;
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.hs-lang.open .hs-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hs-lang__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hs-grey-medium);
  border-radius: 6px;
  transition: all 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.hs-lang__option:hover {
  background: var(--hs-warm);
  color: var(--hs-charcoal);
}

.hs-lang__option.active {
  color: var(--hs-gold);
  font-weight: 600;
}

.hs-lang__flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--hs-white);
  background: var(--hs-charcoal);
  border-radius: 3px;
  padding: 2px 5px;
  min-width: 24px;
  text-align: center;
}

.hs-lang__option.active .hs-lang__flag {
  background: var(--hs-gold);
}

/* ── Language Switcher (Mobile) ────────────────────────── */
.hs-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  justify-content: center;
}

.hs-mobile-lang__btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
  padding: 6px 14px;
  border-radius: var(--hs-radius-full);
  border: 1px solid var(--hs-grey-pale);
  transition: all 0.2s ease;
}

.hs-mobile-lang__btn.active {
  background: var(--hs-gold);
  color: var(--hs-white);
  border-color: var(--hs-gold);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hs-hero {
  position: relative;
  min-height: 100vh;
  background: var(--hs-charcoal-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hs-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 30%, #3a332a 60%, #1A1A1A 100%);
}

.hs-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(201, 169, 98, 0.10), transparent),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(232, 212, 212, 0.04), transparent);
}

.hs-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hs-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hs-hero__left {
  animation: fadeUp 0.8s var(--hs-ease) 0.1s both;
}

.hs-hero__title {
  font-family: var(--hs-font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--hs-cream);
  margin: var(--hs-space-lg) 0;
}

.hs-hero__title em {
  font-style: italic;
  color: var(--hs-gold);
}

.hs-hero__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hs-grey-light);
  max-width: 480px;
  margin-bottom: var(--hs-space-xl);
}

.hs-hero__actions {
  display: flex;
  gap: var(--hs-space-md);
  flex-wrap: wrap;
}

.hs-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--hs-space-md);
  margin-top: var(--hs-space-2xl);
}

.hs-hero__trust-avatars {
  display: flex;
}

.hs-hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-left: -8px;
  border: 2px solid var(--hs-charcoal-deep);
}

.hs-hero__avatar:first-child {
  margin-left: 0;
}

.hs-hero__trust-text {
  font-size: 13px;
  color: var(--hs-grey-medium);
  letter-spacing: 0.5px;
}

/* ── Hero Phone Scene ────────────────────────────────── */
.hs-phone-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s var(--hs-ease) 0.3s both;
}

.hs-phone-scene__image {
  position: absolute;
  left: -20px;
  top: 30px;
  z-index: 0;
}

.hs-phone-scene .hs-phone {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* ── Hero Scroll Indicator ─────────────────────────────── */
.hs-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hs-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 98, 0.4);
  position: relative;
  overflow: hidden;
}

.hs-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--hs-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   APP PREVIEW SECTION — Browser frame dashboard
   ══════════════════════════════════════════════════════════ */
.hs-app-preview {
  background: var(--hs-white);
  overflow: hidden;
}

/* ── Browser Frame ───────────────────────────────────── */
.hs-browser-frame {
  background: var(--hs-cream);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-lg);
  overflow: hidden;
  box-shadow: var(--hs-shadow-xl);
}

.hs-browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--hs-white);
  border-bottom: 1px solid var(--hs-border-light);
}

.hs-browser-frame__dots {
  display: flex;
  gap: 6px;
}

.hs-browser-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hs-border);
}

.hs-browser-frame__dots span:first-child { background: #ff5f57; }
.hs-browser-frame__dots span:nth-child(2) { background: #febc2e; }
.hs-browser-frame__dots span:last-child { background: #28c840; }

.hs-browser-frame__url {
  flex: 1;
  background: var(--hs-cream);
  border-radius: var(--hs-radius-full);
  padding: 5px 14px;
  font-size: 12px;
  color: var(--hs-grey-medium);
  text-align: center;
  max-width: 280px;
}

.hs-browser-frame__content {
  display: flex;
  min-height: 380px;
}

/* ── Dashboard Sidebar ───────────────────────────────── */
.hs-dash-sidebar {
  width: 52px;
  background: var(--hs-charcoal-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
  flex-shrink: 0;
}

.hs-dash-sidebar__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--hs-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hs-font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hs-dash-sidebar__item {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-grey-medium);
  transition: all 0.2s;
}

.hs-dash-sidebar__item--active {
  background: rgba(201, 169, 98, 0.2);
  color: var(--hs-gold);
}

/* ── Dashboard Main ──────────────────────────────────── */
.hs-dash-main {
  flex: 1;
  padding: 20px 24px;
  background: var(--hs-cream);
  min-width: 0;
}

.hs-dash-main__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hs-dash-main__greeting {
  font-family: var(--hs-font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-dash-main__date {
  font-size: 12px;
  color: var(--hs-grey-medium);
  margin-top: 2px;
}

.hs-dash-main__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hs-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.hs-dash-main__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hs-dash-stat {
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.hs-dash-stat__num {
  display: block;
  font-family: var(--hs-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--hs-charcoal);
}

.hs-dash-stat__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
}

.hs-dash-stat--alert {
  border-color: rgba(201, 169, 98, 0.3);
  background: rgba(201, 169, 98, 0.04);
}

.hs-dash-main__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Dashboard Panels ────────────────────────────────── */
.hs-dash-panel {
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: 10px;
  padding: 16px;
}

.hs-dash-panel__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
  margin-bottom: 12px;
}

/* ── Dashboard Timeline ──────────────────────────────── */
.hs-dash-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hs-dash-timeline__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-dash-timeline__time {
  font-size: 11px;
  font-weight: 500;
  color: var(--hs-grey-medium);
  min-width: 34px;
}

.hs-dash-timeline__event {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-dash-timeline__event--gold {
  background: rgba(201, 169, 98, 0.1);
  border-left: 3px solid var(--hs-gold);
}

.hs-dash-timeline__event--sage {
  background: rgba(221, 229, 221, 0.5);
  border-left: 3px solid #a8c4a8;
}

.hs-dash-timeline__event--rose {
  background: rgba(232, 212, 212, 0.5);
  border-left: 3px solid #d4a0a0;
}

.hs-dash-timeline__event--lavender {
  background: rgba(228, 224, 236, 0.5);
  border-left: 3px solid #b0a4c8;
}

/* ── Dashboard Formula List ──────────────────────────── */
.hs-dash-formula {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hs-border-light);
}

.hs-dash-formula:last-child {
  border-bottom: none;
}

.hs-dash-formula__dots {
  display: flex;
  gap: 3px;
}

.hs-dash-formula__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.hs-dash-formula__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-dash-formula__detail {
  font-size: 11px;
  color: var(--hs-grey-medium);
}

/* ══════════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════════ */
.hs-features {
  background: var(--hs-cream);
  position: relative;
  overflow: hidden;
}

.hs-features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hs-features::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 123, 247, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hs-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hs-space-lg);
  position: relative;
  z-index: 1;
}

.hs-feature-card {
  background: var(--hs-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--hs-radius-xl);
  padding: 32px;
  transition: all 0.4s var(--hs-ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.hs-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hs-gold-subtle), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--hs-ease);
}

.hs-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: rgba(201, 169, 98, 0.1);
}

.hs-feature-card:hover::before {
  opacity: 1;
}

.hs-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--hs-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--hs-space-lg);
}

.hs-feature-card__icon--copper {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
  color: var(--hs-gold);
}

.hs-feature-card__icon--blue {
  background: linear-gradient(135deg, rgba(74, 123, 247, 0.08), rgba(74, 123, 247, 0.03));
  color: #4A7BF7;
}

.hs-feature-card__title {
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: var(--hs-space-sm);
  color: var(--hs-charcoal);
}

.hs-feature-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hs-grey-medium);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════════ */
.hs-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hs-space-lg);
}

.hs-testimonial {
  background: var(--hs-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--hs-radius-xl);
  padding: var(--hs-space-2xl);
  text-align: center;
  transition: all 0.4s var(--hs-ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: relative;
}

.hs-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--hs-font-display);
  font-size: 60px;
  color: rgba(201, 169, 98, 0.12);
  line-height: 1;
  pointer-events: none;
}

.hs-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.hs-testimonial__photo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--hs-space-lg);
}

.hs-testimonial__quote {
  font-family: var(--hs-font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--hs-charcoal);
  margin-bottom: var(--hs-space-lg);
}

.hs-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hs-testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-testimonial__role {
  font-size: 12px;
  color: var(--hs-grey-medium);
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.hs-how__steps {
  display: flex;
  align-items: flex-start;
  gap: var(--hs-space-xl);
}

.hs-how__step {
  flex: 1;
  text-align: center;
}

.hs-how__number {
  font-family: var(--hs-font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--hs-gold);
  margin-bottom: var(--hs-space-md);
}

.hs-how__step-title {
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--hs-cream);
  margin-bottom: var(--hs-space-sm);
}

.hs-how__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hs-grey-light);
}

.hs-how__divider {
  width: 1px;
  height: 100px;
  background: rgba(201, 169, 98, 0.2);
  flex-shrink: 0;
  margin-top: 20px;
}

/* ══════════════════════════════════════════════════════════
   MARKETPLACE SECTION
   ══════════════════════════════════════════════════════════ */
.hs-marketplace {
  background: var(--hs-white);
}

.hs-marketplace__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hs-space-3xl);
  align-items: center;
}

.hs-marketplace__list {
  list-style: none;
  margin: var(--hs-space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--hs-space-md);
}

.hs-marketplace__list li {
  display: flex;
  align-items: center;
  gap: var(--hs-space-md);
  font-size: 15px;
  color: var(--hs-grey-dark);
}

.hs-marketplace__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hs-gold-subtle);
  color: var(--hs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.hs-marketplace__visual {
  display: flex;
  justify-content: center;
}

.hs-marketplace__card {
  background: var(--hs-cream);
  border: 1px solid var(--hs-border-light);
  border-radius: var(--hs-radius-lg);
  padding: var(--hs-space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--hs-space-md);
  width: 100%;
  max-width: 440px;
}

.hs-marketplace__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--hs-space-sm);
}

.hs-marketplace__card-title {
  font-family: var(--hs-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

.hs-marketplace__card-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--hs-charcoal);
  color: var(--hs-grey-light);
  padding: 4px 10px;
  border-radius: var(--hs-radius-full);
}

.hs-marketplace__product {
  display: flex;
  align-items: center;
  gap: var(--hs-space-md);
  padding: var(--hs-space-md);
  background: var(--hs-white);
  border-radius: var(--hs-radius-md);
  border: 1px solid var(--hs-border-light);
  transition: all 0.3s ease;
}

.hs-marketplace__product:hover {
  border-color: var(--hs-gold);
  box-shadow: var(--hs-shadow-sm);
}

.hs-marketplace__product-img {
  width: 44px;
  height: 44px;
  border-radius: var(--hs-radius-md);
  flex-shrink: 0;
}

.hs-marketplace__product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-marketplace__product-brand {
  font-size: 12px;
  color: var(--hs-grey-medium);
}

.hs-marketplace__product-price {
  margin-left: auto;
  font-family: var(--hs-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--hs-charcoal);
}

/* ══════════════════════════════════════════════════════════
   ACADEMY SECTION
   ══════════════════════════════════════════════════════════ */
.hs-academy__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--hs-space-3xl);
  align-items: start;
}

.hs-academy__text-side .hs-section__title {
  text-align: left;
}

.hs-academy__highlights {
  display: flex;
  gap: var(--hs-space-xl);
  margin: var(--hs-space-xl) 0;
}

.hs-academy__highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hs-academy__highlight-num {
  font-family: var(--hs-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--hs-charcoal);
}

.hs-academy__highlight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
}

.hs-academy__cards-side {
  display: flex;
  flex-direction: column;
  gap: var(--hs-space-md);
}

.hs-academy__card {
  position: relative;
  background: var(--hs-white);
  border: 1px solid var(--hs-border-light);
  border-radius: var(--hs-radius-lg);
  padding: var(--hs-space-xl);
  transition: all 0.4s var(--hs-ease);
}

.hs-academy__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-lg);
}

.hs-academy__card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--hs-gold-subtle);
  color: var(--hs-gold);
  padding: 4px 12px;
  border-radius: var(--hs-radius-full);
  margin-bottom: var(--hs-space-md);
}

.hs-academy__card-badge--blue {
  background: var(--hs-accent-blue);
  color: var(--hs-grey-dark);
}

.hs-academy__card-title {
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--hs-charcoal);
  margin-bottom: var(--hs-space-sm);
}

.hs-academy__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hs-grey-medium);
  margin-bottom: var(--hs-space-lg);
}

.hs-academy__card-meta {
  display: flex;
  gap: var(--hs-space-sm);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--hs-grey-medium);
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════ */
.hs-cta-final {
  text-align: center;
}

.hs-cta-final__title {
  font-family: var(--hs-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--hs-cream);
  margin: var(--hs-space-lg) 0;
}

.hs-cta-final__title em {
  font-style: italic;
  color: var(--hs-gold);
}

.hs-cta-final__subtitle {
  font-size: 16px;
  color: var(--hs-grey-light);
  max-width: 520px;
  margin: 0 auto var(--hs-space-xl);
  line-height: 1.7;
}

.hs-cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hs-space-md);
}

.hs-cta-final__note {
  font-size: 13px;
  color: var(--hs-grey-medium);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.hs-footer {
  background: var(--hs-charcoal-deep);
  padding: var(--hs-space-3xl) 0 var(--hs-space-xl);
  border-top: 1px solid rgba(250, 248, 245, 0.06);
}

.hs-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hs-space-2xl);
  margin-bottom: var(--hs-space-2xl);
}

.hs-footer__logo {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: var(--hs-space-md);
}

.hs-footer__logo-text {
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--hs-cream);
}

.hs-footer__logo-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hs-gold);
  margin-top: 8px;
}

.hs-footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hs-grey-medium);
  max-width: 280px;
}

.hs-footer__brand-sub {
  font-size: 13px;
  color: var(--hs-grey-medium);
  margin-top: var(--hs-space-md);
}

.hs-footer__brand-link {
  color: var(--hs-gold);
  transition: color 0.3s ease;
}

.hs-footer__brand-link:hover {
  color: var(--hs-gold-light);
}

.hs-footer__col-title {
  font-family: var(--hs-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hs-cream);
  margin-bottom: var(--hs-space-lg);
}

.hs-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--hs-space-sm);
}

.hs-footer__link {
  font-size: 14px;
  color: var(--hs-grey-medium);
  transition: color 0.3s ease;
  padding: 2px 0;
}

.hs-footer__link:hover {
  color: var(--hs-gold);
}

.hs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--hs-space-xl);
  border-top: 1px solid rgba(250, 248, 245, 0.06);
  font-size: 13px;
  color: var(--hs-grey-medium);
}

/* ══════════════════════════════════════════════════════════
   PAIN POINTS SECTION
   ══════════════════════════════════════════════════════════ */
.hs-painpoints {
  background: var(--hs-warm);
  position: relative;
  overflow: hidden;
}

.hs-painpoints::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hs-painpoints::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 125, 91, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hs-painpoints__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hs-space-lg);
  position: relative;
  z-index: 1;
}

.hs-painpoint-card {
  background: var(--hs-white);
  padding: 32px;
  border-radius: var(--hs-radius-xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform var(--hs-duration) var(--hs-ease),
              box-shadow var(--hs-duration) var(--hs-ease);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.hs-painpoint-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B87D5B, #C9A962);
  opacity: 0;
  transition: opacity var(--hs-duration) var(--hs-ease);
}

.hs-painpoint-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.hs-painpoint-card:hover::before {
  opacity: 1;
}

.hs-painpoint-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hs-painpoint-card__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hs-painpoint-card__label--problem {
  color: #B87D5B;
}

.hs-painpoint-card__label--problem::before {
  background: #B87D5B;
}

.hs-painpoint-card__label--solution {
  color: #4A7BF7;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hs-grey-pale);
}

.hs-painpoint-card__label--solution::before {
  background: #4A7BF7;
}

.hs-painpoint-card__title {
  font-family: var(--hs-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--hs-charcoal);
  margin-bottom: 10px;
}

.hs-painpoint-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hs-grey-dark);
}

/* ══════════════════════════════════════════════════════════
   WHY PROFESSIONALS SECTION
   ══════════════════════════════════════════════════════════ */
.hs-why-pro {
  background: var(--hs-charcoal-deep);
  color: var(--hs-white);
  position: relative;
  overflow: hidden;
}

.hs-why-pro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hs-why-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 125, 91, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 123, 247, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hs-why-pro .hs-section__title {
  color: var(--hs-white);
}

.hs-why-pro .hs-section__subtitle {
  color: var(--hs-grey-light);
}

.hs-why-pro .hs-overline {
  color: #B87D5B;
}

.hs-why-pro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hs-space-lg);
  margin-top: var(--hs-space-2xl);
  position: relative;
  z-index: 1;
}

.hs-why-pro__card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--hs-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--hs-duration) var(--hs-ease);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hs-why-pro__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.hs-why-pro__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 98, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.1);
}

.hs-why-pro__card-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 98, 0.08);
  border-radius: var(--hs-radius-lg);
}

.hs-why-pro__card-title {
  font-family: var(--hs-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--hs-white);
  margin-bottom: 10px;
}

.hs-why-pro__card-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════════════════ */
.hs-pricing {
  background: var(--hs-cream);
  position: relative;
  overflow: hidden;
}

.hs-pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hs-pricing__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hs-space-lg);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hs-pricing-card {
  background: var(--hs-white);
  border-radius: var(--hs-radius-xl);
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform var(--hs-duration) var(--hs-ease),
              box-shadow var(--hs-duration) var(--hs-ease);
  position: relative;
  overflow: hidden;
}

.hs-pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hs-grey-pale), var(--hs-grey-light));
  opacity: 0;
  transition: opacity var(--hs-duration) var(--hs-ease);
}

.hs-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.hs-pricing-card:hover::after {
  opacity: 1;
}

.hs-pricing-card--featured {
  border: 2px solid var(--hs-gold);
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--hs-white) 0%, rgba(201, 169, 98, 0.02) 100%);
}

.hs-pricing-card--featured::after {
  background: linear-gradient(90deg, var(--hs-gold), var(--hs-gold-light));
  opacity: 1;
}

.hs-pricing-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 32px 72px rgba(201, 169, 98, 0.15), 0 12px 28px rgba(0, 0, 0, 0.06);
}

.hs-pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  color: var(--hs-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 var(--hs-radius-md) var(--hs-radius-md);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.hs-pricing-card__header {
  text-align: center;
  margin-bottom: var(--hs-space-lg);
  padding-bottom: var(--hs-space-lg);
  border-bottom: 1px solid var(--hs-grey-pale);
}

.hs-pricing-card__title {
  font-family: var(--hs-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hs-charcoal);
  margin-bottom: 6px;
}

.hs-pricing-card__desc {
  font-size: 13px;
  color: var(--hs-grey-medium);
  margin-bottom: var(--hs-space-md);
}

.hs-pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.hs-pricing-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--hs-charcoal);
}

.hs-pricing-card__amount {
  font-family: var(--hs-font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--hs-charcoal);
  line-height: 1;
}

.hs-pricing-card__period {
  font-size: 14px;
  color: var(--hs-grey-medium);
}

.hs-pricing-card__vat {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--hs-grey-medium);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hs-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hs-pricing-card__features li {
  font-size: 13px;
  color: var(--hs-grey-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  line-height: 1.5;
}

.hs-pricing-card__features li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════
   AI ADD-ONS SECTION
   ══════════════════════════════════════════════════════════ */
.hs-ai-section {
  margin-top: var(--hs-space-4xl);
  padding-top: var(--hs-space-4xl);
  border-top: 1px solid var(--hs-grey-pale);
  position: relative;
  z-index: 1;
}

.hs-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hs-space-lg);
  margin-bottom: var(--hs-space-2xl);
}

.hs-ai-card {
  background: var(--hs-white);
  border-radius: var(--hs-radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform var(--hs-duration) var(--hs-ease),
              box-shadow var(--hs-duration) var(--hs-ease);
  display: flex;
  flex-direction: column;
}

.hs-ai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

.hs-ai-card__header {
  padding: 32px 28px 20px;
}

.hs-ai-card__emoji {
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 98, 0.08);
  border-radius: var(--hs-radius-lg);
  margin-bottom: 16px;
}

.hs-ai-card__title {
  font-family: var(--hs-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--hs-charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hs-ai-card__desc {
  font-size: 13px;
  color: var(--hs-grey-medium);
  line-height: 1.6;
}

.hs-ai-card__pricing {
  padding: 16px 28px;
  background: var(--hs-warm);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hs-ai-card__table {
  width: 100%;
  border-collapse: collapse;
}

.hs-ai-card__table td {
  padding: 6px 0;
  font-size: 13px;
  color: var(--hs-grey-dark);
}

.hs-ai-card__table-price {
  text-align: right;
  font-weight: 600;
  color: var(--hs-charcoal);
  font-size: 15px;
}

.hs-ai-card__table-price span {
  font-weight: 400;
  font-size: 12px;
  color: var(--hs-grey-medium);
}

.hs-ai-card__single-price {
  font-family: var(--hs-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--hs-charcoal);
  text-align: center;
}

.hs-ai-card__single-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--hs-grey-medium);
}

.hs-ai-card__price-note {
  font-size: 12px;
  color: var(--hs-grey-medium);
  text-align: center;
  margin-top: 6px;
}

.hs-ai-card__features {
  list-style: none;
  padding: 20px 28px 28px;
  margin: 0;
  flex: 1;
}

.hs-ai-card__features li {
  font-size: 13px;
  color: var(--hs-grey-dark);
  padding: 6px 0;
  line-height: 1.5;
}

/* AI Bundle */
.hs-ai-bundle {
  background: linear-gradient(135deg, var(--hs-charcoal-deep) 0%, #2a2520 100%);
  border-radius: var(--hs-radius-xl);
  padding: var(--hs-space-2xl) var(--hs-space-2xl);
  margin-bottom: var(--hs-space-2xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.hs-ai-bundle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 30%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hs-ai-bundle__header {
  text-align: center;
  margin-bottom: var(--hs-space-lg);
  position: relative;
}

.hs-ai-bundle__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light));
  color: var(--hs-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--hs-radius-full);
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.hs-ai-bundle__title {
  font-family: var(--hs-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--hs-cream);
  margin-bottom: 6px;
}

.hs-ai-bundle__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hs-ai-bundle__table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
  position: relative;
}

.hs-ai-bundle__table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-ai-bundle__table th:last-child {
  text-align: right;
}

.hs-ai-bundle__table td {
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hs-ai-bundle__strike {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.hs-ai-bundle__final {
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  color: var(--hs-gold);
}

.hs-ai-bundle__note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--hs-space-md);
  position: relative;
}

/* AI Comparison Table */
.hs-ai-compare {
  background: var(--hs-white);
  border-radius: var(--hs-radius-xl);
  padding: var(--hs-space-2xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: var(--hs-space-lg);
}

.hs-ai-compare__title {
  font-family: var(--hs-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--hs-charcoal);
  text-align: center;
  margin-bottom: var(--hs-space-lg);
}

.hs-ai-compare__table {
  width: 100%;
  border-collapse: collapse;
}

.hs-ai-compare__table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-grey-medium);
  padding: 0 0 12px;
  text-align: left;
  border-bottom: 1px solid var(--hs-grey-pale);
}

.hs-ai-compare__table td {
  padding: 14px 12px 14px 0;
  font-size: 14px;
  color: var(--hs-grey-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.hs-ai-compare__table td:first-child {
  font-weight: 600;
  color: var(--hs-charcoal);
  width: 25%;
}

.hs-ai-compare__highlight {
  color: var(--hs-charcoal);
  font-weight: 500;
  background: rgba(201, 169, 98, 0.06);
  border-radius: var(--hs-radius-sm);
  padding: 14px 12px;
}

.hs-ai-section__footer {
  text-align: center;
  font-size: 13px;
  color: var(--hs-grey-medium);
  line-height: 1.8;
}

.hs-ai-section__footer strong {
  color: var(--hs-charcoal);
}

/* ══════════════════════════════════════════════════════════
   TEAM & TRIAL SECTION
   ══════════════════════════════════════════════════════════ */
.hs-team-trial {
  background: var(--hs-warm);
  position: relative;
  overflow: hidden;
}

.hs-team-trial::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 123, 247, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hs-team-trial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hs-space-3xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hs-team-trial__grid > div {
  background: var(--hs-white);
  padding: var(--hs-space-2xl);
  border-radius: var(--hs-radius-xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.hs-team-trial__col-title {
  font-family: var(--hs-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hs-charcoal);
  margin: var(--hs-space-md) 0 var(--hs-space-lg);
  line-height: 1.3;
}

.hs-team-trial__col-title em {
  font-style: italic;
}

.hs-team-trial__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hs-team-trial__list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hs-grey-dark);
  margin-bottom: 14px;
  padding-left: 8px;
  border-left: 2px solid transparent;
  transition: border-color var(--hs-duration) var(--hs-ease);
}

.hs-team-trial__list li:hover {
  border-left-color: var(--hs-gold);
}

.hs-team-trial__list li strong {
  color: var(--hs-charcoal);
}

.hs-team-trial__note {
  margin-top: var(--hs-space-lg);
  font-size: 13px;
  color: var(--hs-grey-medium);
  padding-top: var(--hs-space-md);
  border-top: 1px solid var(--hs-grey-pale);
}

.hs-team-trial .hs-overline--copper {
  color: #B87D5B;
}

.hs-team-trial .hs-overline--blue {
  color: #4A7BF7;
}
