@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

/* =========================================================================
   Hanioo — navy, red & white "flag" corporate theme
   Deep navy as the structural base colour, a crisp flag-red as the sole
   accent (used at several tints for hierarchy) on crisp white surfaces.
   Flatter, more restrained shadows, tighter corner radii and clean
   1px rules give the whole site a grid-based, business-like feel.
   Colours are shared across every language pack so the theme never flips
   when the language does.
   ========================================================================= */

.hn-root {
  --maroon: #04277B;
  --maroon-deep: #021A54;
  --maroon-rgb: 4, 39, 123;
  --gold: #C8102E;
  --gold-soft: #FBE7EA;
  --gold-rgb: 200, 16, 46;
  --saffron: #E4002B;
  --forest: #0F2C61;
  --forest-deep: #071640;
  --forest-rgb: 15, 44, 97;
  --ivory: #FFFFFF;
  --ink: #041D52;

  /* Light navy-and-white surface system layered on top of the palette
     above, so every spot-colour, gradient and dark "inverted" section
     keeps working. */
  --bg: #FFFFFF;
  --bg-deep: #F1F3F8;
  --panel: #F5F7FB;
  --surface: rgba(4, 39, 123, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --text: #041D52;
  --ink-soft: #4C5A78;
  --line: rgba(4, 39, 123, 0.14);
  --glass-blur: blur(22px) saturate(160%);
  --accent-glow: 0 0 0 1px rgba(4, 39, 123, 0.16), 0 5px 13px rgba(4, 39, 123, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
.hn-root * { box-sizing: border-box; }

.hn-root ::selection {
  background: var(--gold);
  color: #FFFFFF;
}

/* Ambient background — a few soft, fixed gradient blooms that drift behind
   every page so the whole site reads as one continuous premium surface
   instead of flat panels stacked on top of each other. */
.hn-root::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg);
}
.hn-root > * { position: relative; z-index: 1; }

.hn-display { font-family: 'Playfair Display', serif; letter-spacing: -0.01em; }

/* ---------------------------------------------------------------------
   Eyebrow labels
   --------------------------------------------------------------------- */
.hn-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hn-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  box-shadow: 0 6px 15px rgba(var(--gold-rgb), 0.22);
}

.hn-ribbon {
  width: 84px;
  height: 6px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--forest) 0 33%, var(--saffron) 33% 66%, var(--gold) 66% 100%);
}

.hn-title-underline {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.hn-service-card-title-underline {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.hn-service-offerings-illustration {
  width: 260px;
  max-width: 100%;
}
.hn-service-offerings-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .hn-service-offerings-illustration { width: 320px; }
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.hn-btn-primary {
  background: var(--maroon);
  color: #FFFFFF;
  border: 1px solid var(--maroon);
  transition: background 0.25s var(--ease-soft), border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
  box-shadow: 0 2px 6px rgba(4, 39, 123, 0.18);
  position: relative;
  overflow: hidden;
}
.hn-btn-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 4px 10px rgba(4, 39, 123, 0.24);
}
.hn-btn-primary:active { background: var(--maroon-deep); }
.hn-btn-primary svg { transition: transform 0.25s var(--ease); }
.hn-btn-primary:hover svg { transform: translateX(3px); }

.hn-btn-secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 1.5px solid var(--line);
  transition: background 0.25s var(--ease-soft), color 0.25s var(--ease-soft), border-color 0.25s var(--ease-soft);
}
.hn-btn-secondary:hover {
  background: var(--maroon-deep);
  border-color: var(--maroon-deep);
  color: #FFFFFF;
}

/* ---------------------------------------------------------------------
   Navbar
   --------------------------------------------------------------------- */
.hn-topbar {
  background: linear-gradient(90deg, #101B3E, #071E42);
  color: #E7ECF5;
  font-size: 0.78rem;
  font-weight: 500;
}
.hn-topbar > div {
  padding-top: 8px;
  padding-bottom: 8px;
}
.hn-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E7ECF5;
  text-decoration: none;
  transition: color 0.2s var(--ease-soft);
}
.hn-topbar-link:hover {
  color: #FFFFFF;
}

.hn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  background: #FFFFFF;
  border-bottom: 2px solid var(--line);
}
.hn-nav.scrolled {
  box-shadow: 0 4px 0 rgba(15, 27, 45, 0.08);
  background: #FFFFFF;
  border-bottom: 2px solid var(--maroon);
}
.hn-nav .hn-nav-inner {
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.4s var(--ease);
}
.hn-nav.scrolled .hn-nav-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.hn-link {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 3px;
  transition: color 0.25s var(--ease);
}
.hn-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transition: width 0.3s var(--ease);
}
.hn-link:hover { color: var(--saffron); }
.hn-link:hover::after,
.hn-link.active::after { width: 100%; }
.hn-link.active { color: var(--saffron); font-weight: 600; }

.hn-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  margin-top: 1px;
}

.hn-logo-badge {
  background: linear-gradient(135deg, var(--maroon), var(--saffron) 55%, var(--gold));
  background-size: 220% 220%;
  color: var(--ink);
  animation: hn-gradient-shift 7s ease infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 6px 15px rgba(var(--maroon-rgb), 0.5);
}
.hn-logo:hover .hn-logo-badge {
  transform: rotate(-8deg) scale(1.07);
  box-shadow: 0 6px 15px rgba(var(--maroon-rgb), 0.6);
}
@keyframes hn-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

 .hn-below-nav-video {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin: 0;
  padding: 0;
}

.hn-below-nav-video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
}
/* Austria theme line */


/* next CSS starts here */

@media (max-width: 767px) {
  .hn-below-nav-video {
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hn-below-nav-video {
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .hn-below-nav-video {
    height: 150px;
  }
}
.hn-lang-trigger { padding: 6px 10px; border-radius: 999px; transition: background 0.25s var(--ease); }
.hn-lang-trigger:hover { background: rgba(15, 27, 45, 0.05); }
.hn-chevron { transition: transform 0.3s var(--ease); }
.hn-chevron.open { transform: rotate(180deg); }

.hn-burger { transition: transform 0.2s var(--ease); }
.hn-burger:active { transform: scale(0.88); }

.hn-mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease);
}
.hn-mobile-menu.open {
  max-height: 90vh;
  overflow-y: auto;
  opacity: 1;
}

/* Language dropdown */
.hn-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--surface-strong);
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
  min-width: 210px;
  overflow: hidden;
  z-index: 60;
  animation: hn-menu-in 0.22s var(--ease) both;
}
@keyframes hn-menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hn-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  transition: background 0.2s var(--ease);
}
.hn-lang-option:hover { background: rgba(15, 27, 45, 0.05); }
.hn-lang-option.active { background: var(--gold-soft); color: var(--maroon-deep); }

/* ---------------------------------------------------------------------
   Page hero banner (About / Service / How It Works / Contact)
   --------------------------------------------------------------------- */
.hn-page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 85% 0%, #071E42 0%, #101B3E 45%, #060A1C 100%);
  color: var(--ivory);
}
.hn-page-hero .hn-ribbon {
  background: linear-gradient(90deg, var(--gold) 0 33%, var(--saffron) 33% 66%, var(--ivory) 66% 100%);
}

/* ---------------------------------------------------------------------
   Page hero v2 — light "Bridging Languages" banner
   (About / Service / How It Works / Contact)
   --------------------------------------------------------------------- */
.hn-page-hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF3FC 65%, #FFFFFF 100%);
}
.hn-page-hero-v2 .hn-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
}
.hn-page-hero-features {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hn-page-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hn-page-hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hn-page-hero-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}
.hn-page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon-deep);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 8px 20px rgba(4, 39, 123, 0.22);
}
.hn-page-hero-cta:hover {
  transform: translateY(-3px);
  background: var(--maroon);
  box-shadow: 0 12px 26px rgba(4, 39, 123, 0.32);
}

.hn-page-hero-art-wrap { position: relative; }
.hn-page-hero-art {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px rgba(4, 39, 123, 0.18);
}
.hn-page-hero-skyline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hn-page-hero-script {
  position: absolute;
  top: 20px;
  right: 22px;
  max-width: 46%;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  text-align: right;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(4, 39, 123, 0.45);
}
.hn-page-hero-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 64px;
  height: 46px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.85) 1.6px, transparent 1.6px);
  background-size: 10px 10px;
}

.hn-page-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}
.hn-page-hero-wave svg {
  width: 100%;
  height: 70px;
  display: block;
}
@media (min-width: 768px) {
  .hn-page-hero-wave svg { height: 100px; }
  .hn-page-hero-script { font-size: 1.7rem; }
}

.hn-greeting-wrap {
  position: relative;
  height: 1.3em;
  overflow: hidden;
}
.hn-greeting {
  position: absolute;
  left: 0; top: 0;
  animation: hn-slide 2s var(--ease) forwards;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes hn-slide {
  0% { transform: translateY(40%); opacity: 0; }
  15% { transform: translateY(0); opacity: 1; }
  85% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-40%); opacity: 0; }
}

.hn-float {
  animation: hn-floaty 5.5s ease-in-out infinite;
}
.hn-float-delay {
  animation: hn-floaty 5.5s ease-in-out infinite;
  animation-delay: 1.4s;
}
@keyframes hn-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Glass badge cards floating over the hero illustration */
.hn-float-card {
  background: #FFFFFF;
  border: 1.5px solid var(--maroon);
  box-shadow: 0 6px 15px rgba(15, 27, 45, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hn-float-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 15px rgba(15, 27, 45, 0.35);
}

/* ---------------------------------------------------------------------
   Cards
   --------------------------------------------------------------------- */
.hn-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
  position: relative;
  overflow: hidden;
  will-change: border-color;
}
.hn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--maroon);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.hn-card:hover::before { transform: scaleY(1); }
.hn-card:hover {
  background: var(--panel);
  box-shadow: 0 4px 10px rgba(4, 39, 123, 0.10);
  border-color: rgba(4, 39, 123, 0.28);
  border-left-color: var(--maroon);
}

.hn-icon-badge {
  width: 44px; height: 44px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--maroon);
  color: #FFFFFF;
  box-shadow: none;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-soft);
}
.hn-card:hover .hn-icon-badge {
  background: var(--forest);
}

.hn-contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 15px rgba(15, 27, 45, 0.28);
}
.hn-contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: saturate(0.9);
}

/* ---------------------------------------------------------------------
   How It Works — step cards with checklist pills
   --------------------------------------------------------------------- */
.hn-step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.hn-step-card:hover {
  transform: translateY(-2px);
  background: var(--panel);
  box-shadow: 0 4px 10px rgba(4, 39, 123, 0.10);
  border-color: rgba(4, 39, 123, 0.4);
}
.hn-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(var(--gold-rgb), 0.12);
  color: #0F2C61;
}
.hn-step-pill svg { flex-shrink: 0; color: var(--saffron); }

.hn-duration-chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--saffron);
  background: rgba(4, 39, 123, 0.12);
  border: 1px solid rgba(4, 39, 123, 0.25);
  white-space: nowrap;
}

/* Language pills grid */
.hn-lang-pill {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid rgba(11, 42, 82, 0.35);
  cursor: pointer;
  text-align: left;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.hn-lang-pill:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(90deg, var(--maroon), var(--gold) 75%, var(--saffron) 150%);
  box-shadow: 0 6px 15px rgba(11, 42, 82, 0.5);
}
.hn-lang-pill-flag {
  width: 34px; height: 34px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.hn-lang-pill-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hn-lang-pill:hover .hn-lang-pill-flag {
  opacity: 0;
  transform: scale(0.6);
}
.hn-lang-pill-globe {
  color: var(--maroon);
  background: rgba(11, 42, 82, 0.1);
}
.hn-lang-pill-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--maroon-deep);
  transition: color 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.hn-lang-pill:hover .hn-lang-pill-name {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(6, 21, 41, 0.35);
}
.hn-lang-pill-hover-flag {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(-50%) translateX(18px) scale(0.7);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.hn-lang-pill-hover-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hn-lang-pill:hover .hn-lang-pill-hover-flag {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

/* Vertical alternating timeline for How It Works */
.hn-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 640px) {
  .hn-timeline { gap: 56px; }
}
.hn-timeline::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--maroon), var(--saffron), var(--gold));
  opacity: 0.35;
}
.hn-timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 24px;
}
.hn-timeline-node {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
}
.hn-timeline-node-inner {
  width: 56px; height: 56px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--gold), var(--maroon) 130%);
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(var(--gold-rgb), 0.55), 0 13px 30px var(--bg);
}
.hn-timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.hn-timeline-card:hover {
  transform: translateY(-2px);
  background: var(--panel);
  box-shadow: 0 4px 10px rgba(4, 39, 123, 0.10);
  border-color: rgba(4, 39, 123, 0.4);
}

@media (min-width: 768px) {
  .hn-timeline::before { left: 50%; margin-left: -1px; }
  .hn-timeline-row {
    grid-template-columns: 1fr 56px 1fr;
  }
  .hn-timeline-node { grid-column: 2; justify-self: center; }
  .hn-timeline-row-left .hn-timeline-card { grid-column: 1; grid-row: 1; text-align: left; }
  .hn-timeline-row-left .hn-timeline-card ul { justify-content: flex-start; }
  .hn-timeline-row-left .hn-timeline-card .flex.items-center.gap-3 { justify-content: flex-start; }
  .hn-timeline-row-right .hn-timeline-card { grid-column: 3; grid-row: 1; }
}

/* Single-column variant — used on the How It Works page, where the
   timeline sits in the right column next to a sticky video, so it keeps
   the icon-left / card-right layout at every width instead of alternating. */
.hn-timeline--single::before {
  left: 27px !important;
  margin-left: 0 !important;
}
.hn-timeline--single .hn-timeline-row {
  grid-template-columns: 56px 1fr !important;
}
.hn-timeline--single .hn-timeline-node {
  grid-column: 1 !important;
  justify-self: start !important;
}
.hn-timeline--single .hn-timeline-card {
  grid-column: 2 !important;
  grid-row: 1 !important;
  text-align: left !important;
}
.hn-timeline--single .hn-timeline-card ul,
.hn-timeline--single .hn-timeline-card .flex.items-center.gap-3 {
  justify-content: flex-start !important;
}

.hn-steps-video-col { max-width: 340px; }
.hn-video-showcase--inline {
  padding: 0;
  justify-content: flex-start;
}
.hn-video-showcase--inline .hn-video-frame--phone {
  width: min(240px, 100%);
}
.hn-video-showcase--inline .hn-video-showcase-glow {
  top: -40px;
  left: 30%;
  width: 380px;
  height: 380px;
}

/* Unified "How It Works" panel — ties the sticky video and the step
   list together as one component instead of two visually separate
   halves. */
.hn-howitworks-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
}
@media (min-width: 640px) {
  .hn-howitworks-panel { padding: 40px 32px; }
}
@media (min-width: 1024px) {
  .hn-howitworks-panel { padding: 48px 44px; }
}
.hn-howitworks-watch-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--maroon);
}
.hn-howitworks-watch-tag svg { color: var(--saffron); flex-shrink: 0; }

/* Compact list style for the single-column (How It Works detail) variant —
   simple divided rows instead of boxed cards. */
.hn-timeline--single {
  gap: 4px !important;
}
.hn-timeline--single::before {
  display: none;
}
.hn-timeline--single .hn-timeline-row {
  gap: 22px;
  padding: 28px 24px 28px 28px;
  border-radius: 14px;
  border-bottom: none;
  border-left: 4px solid var(--gold);
  transition: background 0.3s var(--ease);
}
.hn-timeline--single .hn-timeline-row:nth-child(odd) {
  background: var(--panel);
}
.hn-timeline--single .hn-timeline-row:nth-child(2) { border-left-color: var(--maroon); }
.hn-timeline--single .hn-timeline-row:nth-child(3) { border-left-color: var(--gold); }
.hn-timeline--single .hn-timeline-row:nth-child(4) { border-left-color: var(--maroon); }
.hn-timeline--single .hn-timeline-row:hover {
  background: var(--gold-soft);
}
.hn-timeline--single .hn-timeline-node {
  width: 44px;
  height: 44px;
}
.hn-timeline--single .hn-timeline-node-inner {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: none;
}
.hn-timeline--single .hn-timeline-card {
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: none;
}
.hn-timeline--single .hn-timeline-card:hover {
  box-shadow: none;
  transform: none;
  background: transparent;
}
.hn-timeline--single .hn-timeline-node-inner {
  border-radius: 12px;
}
.hn-timeline--single .hn-timeline-node {
  position: relative;
}
.hn-timeline--single .hn-timeline-node-n {
  width: 17px;
  height: 17px;
  font-size: 0.58rem;
}
.hn-timeline--single h3 {
  margin-bottom: 8px;
}
.hn-timeline--single .hn-timeline-card p {
  line-height: 1.6;
}
.hn-timeline--single .hn-step-pill {
  background: rgba(var(--gold-rgb), 0.08);
  border: none;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hn-timeline--single .hn-step-pill svg { color: var(--saffron); }
.hn-timeline--single ul.flex.flex-wrap {
  gap: 8px 10px !important;
  margin-top: 18px !important;
}
.hn-timeline--single .hn-duration-chip {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--saffron);
}
.hn-timeline-node-n {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--panel);
  color: var(--maroon-deep);
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hn-tab-btn {
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
}
.hn-tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(var(--gold-rgb), 0.55);
}
.hn-tab-btn:not(.active) {
  color: var(--ink-soft);
  border-color: var(--line);
}
.hn-tab-btn:not(.active):hover {
  border-color: rgba(200, 16, 46, 0.4);
  color: var(--saffron);
}

.hn-testimonial-quote {
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

/* Glass panel used behind the testimonial quote on the dark section */
.hn-glass-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* ---------------------------------------------------------------------
   Hero photo frame — soft rotating gradient ring (replaces the old
   dashed hn-orbit circles) + a blurred, counter-rotating glow twin
   for a calmer, more premium motion.
   --------------------------------------------------------------------- */
.hn-photo-frame {
  position: relative;
  border-radius: 8px;
}
.hn-photo-frame::before,
.hn-photo-frame::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 8px;
  padding: 3px;
  background: conic-gradient(from 0deg, var(--maroon), var(--saffron), var(--gold), var(--forest), var(--maroon));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: hn-ring-spin 16s linear infinite;
  will-change: transform;
}
.hn-photo-frame::after {
  inset: -22px;
  padding: 0;
  filter: blur(20px);
  opacity: 0.45;
  -webkit-mask: none;
  mask: none;
  animation: hn-ring-spin 22s linear infinite reverse;
}
@keyframes hn-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hn-photo-img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(15, 27, 45, 0.45), 0 13px 30px var(--ivory);
}

.hn-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.hn-service-card:hover {
  transform: translateY(-2px);
  background: var(--panel);
  box-shadow: 0 4px 10px rgba(4, 39, 123, 0.10);
  border-color: rgba(4, 39, 123, 0.4);
}
.hn-service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: grab;
}
.hn-service-card-img:active {
  cursor: grabbing;
}
.hn-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.hn-service-card:hover .hn-service-card-img img {
  transform: scale(1.06);
}
.hn-service-card-link {
  color: var(--saffron);
  transition: gap 0.25s var(--ease);
}
.hn-service-card-link:hover {
  gap: 6px;
}

/* Stacked "offerings" card — full-width photo on top with a colored
   number ribbon sitting on its bottom-left corner, then a circular
   tinted icon badge, title with a matching accent underline, copy,
   a "Learn more" link, and a faint decorative dot-grid in the corner —
   matches the "Six ways to get the language support you need" reference
   layout (photo-over-content cards, navy/red alternating accents). */
.hn-service-card--stacked {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(4, 39, 123, 0.06), 0 14px 30px rgba(4, 39, 123, 0.07);
}
.hn-service-card--stacked .hn-service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.hn-service-card--stacked .hn-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.hn-service-card--stacked:hover .hn-service-card-media img {
  transform: scale(1.06);
}
.hn-service-card--stacked .hn-service-card-body {
  position: relative;
  flex: 1;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
}

/* Colored number tag overlapping the photo's bottom-left corner. */
.hn-service-num-ribbon {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  min-width: 46px;
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 0 12px 0 0;
}
.hn-service-num-ribbon--blue {
  background: var(--maroon);
}
.hn-service-num-ribbon--pink {
  background: var(--gold);
}

.hn-icon-badge-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hn-icon-badge-circle--blue {
  background: rgba(4, 39, 123, 0.08);
  color: var(--maroon);
}
.hn-icon-badge-circle--pink {
  background: var(--gold-soft);
  color: var(--gold);
}

.hn-service-card-title-underline--blue {
  background: var(--maroon);
}
.hn-service-card-title-underline--pink {
  background: var(--gold);
}

.hn-service-card-link--blue {
  color: var(--maroon);
}
.hn-service-card-link--pink {
  color: var(--gold);
}

/* Faint decorative dot-grid tucked into the card body's bottom-right
   corner, sitting behind the text — a quiet nod to the reference design. */
.hn-service-card-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 0;
  width: 84px;
  height: 56px;
  pointer-events: none;
  background-image: radial-gradient(rgba(200, 16, 46, 0.16) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  -webkit-mask-image: linear-gradient(to top left, #000 35%, transparent 75%);
  mask-image: linear-gradient(to top left, #000 35%, transparent 75%);
}

.hn-service-detail {
  animation: hn-fade-in 0.35s var(--ease);
}
@keyframes hn-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.hn-service-detail-img {
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6), 0 13px 30px rgba(255, 255, 255, 0.12);
}
.hn-service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.hn-service-detail-img:hover img {
  transform: scale(1.06);
}

.hn-glow {
  position: absolute;
  border-radius: 8px;
  filter: blur(70px);
  opacity: 0.14;
  pointer-events: none;
  animation: hn-drift 12s ease-in-out infinite;
}
@keyframes hn-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, -10px) scale(1.06); }
}

.hn-marquee-track {
  display: flex;
  gap: 3rem;
  animation: hn-marquee 24s linear infinite;
  width: max-content;
}
@keyframes hn-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hn-step-line {
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 14px);
}

/* Subtle batik-inspired dotted motif, used behind hero/page-hero sections */
.hn-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: radial-gradient(rgba(240, 220, 224, 0.09) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.hn-page-hero .hn-pattern-bg {
  opacity: 0.5;
  background-image: radial-gradient(rgba(240, 220, 224, 0.14) 1.5px, transparent 1.5px);
}

/* ---------------------------------------------------------------------
   Page transitions
   --------------------------------------------------------------------- */
.hn-page-fade {
  animation: hn-page-in 0.55s var(--ease) both;
}
@keyframes hn-page-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------
   Welcome / lead-capture popup
   --------------------------------------------------------------------- */
.hn-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 12, 0.72);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: hn-overlay-in 0.3s var(--ease-soft) both;
}
@keyframes hn-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hn-popup-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 460px;
  width: 100%;
  padding: 20px 28px;
  position: relative;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7), var(--accent-glow);
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  animation: hn-popup-in 0.4s var(--ease) both;
}
.hn-popup-card::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
@keyframes hn-popup-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hn-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--ink-soft);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.hn-popup-close:hover {
  color: var(--saffron);
  transform: rotate(90deg);
}
.hn-popup-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hn-popup-brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.hn-popup-brand span {
  font-size: 1rem;
  color: var(--text);
}
.hn-field {
  margin-bottom: 9px;
}
.hn-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.hn-field input,
.hn-field textarea {
  width: 100%;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  padding: 7px 12px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(15, 27, 45, 0.025);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.hn-field input::placeholder,
.hn-field textarea::placeholder {
  color: #000000;
  opacity: 0.55;
}
.hn-field input:focus,
.hn-field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: rgba(15, 27, 45, 0.04);
  box-shadow: 0 6px 15px rgba(4, 39, 123, 0.14);
}
.hn-field.has-error input,
.hn-field.has-error textarea {
  border-color: #C0392B;
}
.hn-field-error {
  color: #C0392B;
  font-size: 0.76rem;
  margin-top: 4px;
}
.hn-popup-success {
  text-align: center;
  padding: 20px 0;
}

/* ---------------------------------------------------------------------
   App store badges
   --------------------------------------------------------------------- */
.hn-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 138px;
  height: 42px;
  background: #000000;
  border-radius: 8px;
  padding: 0 10px;
  box-sizing: border-box;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.35));
}
.hn-store-badge:hover {
  transform: translateY(-3px) scale(1.03);
}
.hn-store-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hn-store-badge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  overflow: hidden;
}
.hn-store-badge-text small {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.85;
  white-space: nowrap;
}
.hn-store-badge-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  margin-top: 1px;
}

/* ---------------------------------------------------------------------
   Scroll to top
   --------------------------------------------------------------------- */
.hn-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
  z-index: 70;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hn-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hn-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------------------
   Floating action buttons (WhatsApp / Call / AI chat)
   Fixed to the viewport, sitting just above the scroll-to-top button,
   and always visible — they don't hide/show with scroll position.
   --------------------------------------------------------------------- */
.hn-float-stack {
  position: fixed;
  right: 22px;
  bottom: 110px;
  z-index: 71;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hn-float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: none;
  cursor: pointer;
  z-index: 1;
}

.hn-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Blinking glow ring so the buttons catch the eye */
.hn-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: inherit;
  z-index: -1;
  animation: hn-float-blink 2.2s ease-out infinite;
}

.hn-float-call::before {
  animation-delay: 0.35s;
}

.hn-float-chat::before {
  animation-delay: 0.7s;
}

@keyframes hn-float-blink {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.hn-float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4c);
  color: #ffffff;
}

.hn-float-call {
  background: linear-gradient(135deg, #34d399, #128c4c);
}

/* Small "24/7" badge tucked under the WhatsApp button, matching the
   reference screenshot — pulses gently so it catches the eye. */
.hn-float-badge {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #128c4c;
  background: #ffffff;
  border-radius: 999px;
  padding: 2px 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  animation: hn-badge-blink 1.8s ease-in-out infinite;
}

@keyframes hn-badge-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hn-float-chat {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--maroon-deep);
}

.hn-chat-panel {
  position: fixed;
  right: 22px;
  bottom: 148px;
  z-index: 90;
  width: min(340px, calc(100vw - 44px));
  height: min(440px, calc(100vh - 200px));
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: hn-popup-in 0.3s var(--ease) both;
}

.hn-chat-header {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-soft);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hn-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hn-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hn-chat-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hn-chat-subtitle {
  font-size: 0.72rem;
  color: rgba(252, 233, 180, 0.75);
}

.hn-chat-close {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.hn-chat-close:hover {
  opacity: 1;
}

.hn-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F5F8FC;
}

.hn-chat-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.hn-chat-bubble.is-bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(var(--maroon-rgb), 0.1);
  border-bottom-left-radius: 4px;
}

.hn-chat-bubble.is-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-soft);
  border-bottom-right-radius: 4px;
}

.hn-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(var(--maroon-rgb), 0.1);
  background: #fff;
}

.hn-chat-input-row input {
  flex: 1;
  border: 1px solid rgba(var(--maroon-rgb), 0.18);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.85rem;
  outline: none;
}

.hn-chat-input-row input:focus {
  border-color: var(--saffron);
}

.hn-chat-input-row button {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--maroon-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hn-float-stack {
    right: 14px;
    bottom: 82px;
  }
  .hn-chat-panel {
    right: 14px;
    left: 14px;
    width: auto;
    bottom: 140px;
  }
}

/* ---------------------------------------------------------------------
   Footer — dark maroon theme to match the page-hero / CTA sections
   --------------------------------------------------------------------- */
.hn-footer {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--maroon);
  --gold: #F0656C;
  --gold-rgb: 240, 101, 108;
  --saffron: #EA7D82;
  background:
    radial-gradient(65% 95% at 8% 0%, rgba(200, 16, 46, 0.30), transparent 62%),
    radial-gradient(60% 85% at 95% 100%, rgba(228, 0, 43, 0.22), transparent 62%),
    linear-gradient(160deg, #071E42 0%, #030510 130%);
}
.hn-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--maroon));
  opacity: 0.9;
}
.hn-footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 44px;
  transform: translateY(-100%);
  pointer-events: none;
}
.hn-footer-globemark {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  color: rgba(240, 220, 224, 0.06);
  pointer-events: none;
}
.hn-footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30,76,138,0.14), rgba(10,46,92,0.08));
  border: 1px solid rgba(240, 174, 184, 0.25);
}
.hn-footer-cta-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 101, 108, 0.18);
  color: #AEC3E0;
}
.hn-footer-cta-text {
  flex: 1;
  min-width: 200px;
}
.hn-footer-cta-heading {
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.95rem;
}
.hn-footer-cta-sub {
  color: rgba(255, 249, 238, 0.7);
  font-size: 0.82rem;
  margin-top: 2px;
}
.hn-footer-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  margin-right: 8px;
  color: #AEC3E0;
  background: rgba(240, 101, 108, 0.16);
}
.hn-footer-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-right: 10px;
  color: #FFFFFF;
  background: linear-gradient(140deg, var(--gold), var(--maroon) 130%);
  box-shadow: 0 6px 15px rgba(var(--gold-rgb), 0.55);
  flex-shrink: 0;
}
.hn-footer-enrolled {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hn-footer-avatar-stack {
  display: flex;
  flex-shrink: 0;
}
.hn-footer-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--gold), var(--maroon) 130%);
  color: #FFFFFF;
  border: 2px solid #071E42;
  margin-left: -8px;
}
.hn-footer-avatar:first-child {
  margin-left: 0;
}
.hn-footer-totop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: rgba(255, 249, 238, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hn-footer-totop:hover {
  background: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.hn-footer-highlight {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,220,224,0.14);
  overflow: hidden;
}
.hn-footer-highlight-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 101, 108, 0.16);
  color: #AEC3E0;
}
.hn-footer-highlight-text {
  flex: 1;
  min-width: 0;
}
.hn-footer-highlight-svg {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  color: #AEC3E0;
  opacity: 0.35;
  pointer-events: none;
}
.hn-footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(240, 220, 224, 0.06);
  border: 1px solid rgba(240, 220, 224, 0.14);
}
.hn-footer-newsletter-text {
  min-width: 200px;
}
.hn-footer-newsletter-thanks {
  color: var(--gold);
  font-weight: 600;
}
.hn-footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
}
.hn-footer-newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,220,224,0.18);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.8rem;
  color: var(--ivory);
}
.hn-footer-newsletter-input::placeholder {
  color: rgba(255,249,238,0.45);
}
.hn-footer-newsletter-input:focus {
  outline: none;
  border-color: #F0656C;
  background: rgba(255,255,255,0.1);
}
.hn-footer-newsletter-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0656C, #EA7D82);
  color: #FFFFFF;
  transition: transform 0.25s var(--ease);
}
.hn-footer-newsletter-btn:hover {
  transform: translateX(2px);
}
.hn-footer-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hn-footer-lang-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,249,238,0.85);
  background: rgba(240,220,224,0.08);
  border: 1px solid rgba(240,220,224,0.14);
  border-radius: 999px;
  padding: 4px 10px;
}
.hn-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,249,238,0.1);
}
.hn-footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,249,238,0.8);
}
.hn-footer-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.hn-footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 8px;
  /* background: rgba(240, 220, 224, 0.94); */
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35); */
  width: fit-content;
}
.hn-footer-logo {
  display: block;
  border-radius: 8px;
}
.hn-footer-link {
  color: rgba(240, 220, 224, 0.75);
  transition: color 0.25s var(--ease);
}
.hn-footer-link:hover {
  color: var(--gold);
}
.hn-footer-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hn-footer-link-row > span:last-child {
  line-height: 1.45;
}
.hn-footer-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hn-footer-link-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.hn-footer-link:hover .hn-footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.hn-footer-link-arrow-static {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}
.hn-footer-service-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
}

.hn-footer-social {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}
.hn-footer-social:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}
.hn-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(240, 220, 224, 0.12);
}
.hn-footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(240, 220, 224, 0.35);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
   How It Works — video frame
   Fixed 16:9 ratio, capped width, so any video dropped into
   public/videos/how-it-works.mp4 sits at the right size automatically.
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   How It Works — browser/laptop mockup frame around the video
   --------------------------------------------------------------------- */
.hn-browser-mockup {
  max-width: 800px;
  margin: 24px auto 0;
  border-radius: 8px;
  overflow: hidden;
  background: #12233F;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7), var(--accent-glow);
  border: 1px solid rgba(200, 16, 46, 0.25);
}
.hn-browser-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hn-browser-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.hn-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}
.hn-browser-urlbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 320px;
  margin: 0 auto;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 249, 238, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
}
.hn-browser-urlbar svg,
.hn-browser-urlbar i {
  color: #34D399;
  flex-shrink: 0;
}
.hn-browser-dots-spacer {
  width: 46px;
  flex-shrink: 0;
}
.hn-video-frame--browser {
  max-width: none;
  margin: 0;
  border-radius: 8px;
  border: none;
  box-shadow: none;
}

.hn-video-frame {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #E9EEF6 0%, #DCE6F2 100%);
  box-shadow: 0 6px 15px rgba(15, 27, 45, 0.25), var(--accent-glow);
  border: 1px solid var(--line);
}

.hn-video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
}

/* ---------------------------------------------------------------------
   How It Works — phone-mockup video frame (video asset is a portrait
   9:19 screen recording, so it gets a real device frame instead of
   floating inside a wide 16:9 box).
   --------------------------------------------------------------------- */
.hn-video-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .hn-video-showcase { padding: 40px 0 12px; }
}
.hn-video-showcase-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,39,123,0.16) 0%, rgba(200,16,46,0.08) 45%, transparent 72%);
  pointer-events: none;
}
.hn-video-showcase-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(4,39,123,0.14) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hn-video-frame--phone {
  position: relative;
  z-index: 1;
  width: min(210px, 56vw);
  aspect-ratio: 380 / 848;
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(160deg, var(--maroon-deep), #071E42);
  box-shadow: 0 24px 60px rgba(4, 39, 123, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.hn-video-frame--phone::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  z-index: 2;
}
.hn-video-frame--phone .hn-video-el-wrap {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.hn-video-frame--phone .hn-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hn-video-frame--phone { width: 320px; }
}

/* ---------------------------------------------------------------------
   How It Works — FAQ accordion
   --------------------------------------------------------------------- */
.hn-faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.hn-faq-item.open {
  border-color: rgba(11, 42, 82, 0.35);
  background: rgba(15, 27, 45, 0.03);
}
.hn-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
}
.hn-faq-icon {
  color: var(--saffron);
  transition: transform 0.35s var(--ease);
}
.hn-faq-item.open .hn-faq-icon {
  transform: rotate(45deg);
}
.hn-faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.hn-faq-item.open .hn-faq-answer-wrap {
  grid-template-rows: 1fr;
}
.hn-faq-answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 22px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hn-faq-item.open .hn-faq-answer {
  padding: 0 12px 11px;
}

/* ---------------------------------------------------------------------
   Focus states (accessibility + polish)
   --------------------------------------------------------------------- */
.hn-root a:focus-visible,
.hn-root button:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .hn-float, .hn-float-delay, .hn-marquee-track, .hn-greeting,
  .hn-page-fade, .hn-logo-badge, .hn-photo-frame::before, .hn-photo-frame::after, .hn-glow,
  .hn-popup-card, .hn-popup-overlay, .hn-lang-menu, .hn-float-btn::before {
    animation: none !important;
  }
  .hn-btn-primary::before { display: none; }
}

/* =========================================================================
   Dark navy hero (phone-mockup variant)
   ========================================================================= */
.hn-hero-dark {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 85% 0%, #071E42 0%, #101B3E 45%, #060A1C 100%);
}
.hn-hero-dark .hn-hero-glow {
  position: absolute;
  border-radius: 8px;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.hn-hero-dark-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #AEC3E0;
}
.hn-hero-dark-eyebrow b {
  color: #FFFFFF;
}

/* Top-right "trusted by" pill */
.hn-hero-trust-pill {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #E6ECF5;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .hn-hero-trust-pill { display: none; }
}
.hn-check-list {
  display: grid;
  gap: 12px;
}
.hn-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E6ECF5;
  font-size: 0.98rem;
}
.hn-check-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.18);
  color: #9FBBDD;
}
.hn-hero-dark .hn-btn-primary {
  background: #FFFFFF;
  color: #071E42;
  border: 1px solid #FFFFFF;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.hn-hero-dark .hn-btn-primary:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.55);
}
.hn-hero-dark .hn-btn-secondary {
  color: #8FB0E8;
  border-color: rgba(255,255,255,0.35);
}
.hn-hero-dark .hn-btn-secondary:hover {
  background: #FFFFFF;
  color: #071E42;
  border-color: #FFFFFF;
}

/* Hero visual — animated language orb (replaces the old phone mockup) */
.hn-orb-stage {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hn-orb-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
}
.hn-orb-ring-1 { width: 340px; height: 340px; }
.hn-orb-ring-2 { width: 260px; height: 260px; border-style: dashed; border-color: rgba(255,255,255,0.1); animation: hn-orb-spin 40s linear infinite; }
.hn-orb-ring-3 { width: 180px; height: 180px; border-color: rgba(255,255,255,0.16); }

.hn-orb-core {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: linear-gradient(150deg, #C8102E 0%, #04277B 60%, #021A54 100%);
  box-shadow: 0 6px 15px rgba(0,0,0,0.55), 0 0 0 6px rgba(200, 16, 46, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.hn-orb-core-icon {
  color: #FFFFFF;
  animation: hn-orb-breathe 3.2s ease-in-out infinite;
}
.hn-orb-core-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  animation: hn-orb-ping 2.6s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}
.hn-orb-core-pulse-delay { animation-delay: 1.3s; }

.hn-orb-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hn-orb-orbit-a { animation: hn-orb-spin 22s linear infinite; }
.hn-orb-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(calc(var(--i) * 60deg));
}
.hn-orb-chip span {
  position: absolute;
  top: -18px;
  left: 122px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #04277B;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
  animation: hn-orb-spin-reverse 22s linear infinite;
}

.hn-orb-wave {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  z-index: 3;
}
.hn-orb-wave span {
  width: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  animation: hn-orb-wave-bar 1.1s ease-in-out infinite;
}
.hn-orb-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.hn-orb-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.hn-orb-wave span:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.hn-orb-wave span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.hn-orb-wave span:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.hn-orb-wave span:nth-child(6) { height: 10px; animation-delay: 0.5s; }
.hn-orb-wave span:nth-child(7) { height: 15px; animation-delay: 0.6s; }

.hn-orb-live {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
}
.hn-orb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34D399;
  animation: hnPulseDot 1.8s ease-in-out infinite;
}

.hn-phone-float-card {
  position: absolute;
  background: #FFFFFF;
  color: #17204A;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------------------------------------------------------------------
   Hero visual column — orb stage + surrounding service badges + a strip
   of "who you'll talk to" photo cards underneath.
   --------------------------------------------------------------------- */
.hn-hero-visual-col {
  gap: 26px;
}
.hn-hero-orbstage-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hn-hero-orbstage-wrap { width: 420px; height: 380px; }
}

.hn-service-badge {
  position: absolute;
  z-index: 5;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #17204A;
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: 0 12px 24px rgba(2, 10, 35, 0.35);
}
.hn-service-badge b {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #071E42;
}
.hn-service-badge small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #6B7694;
}
.hn-service-badge-ic {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #04277B;
  color: #FFFFFF;
}
.hn-service-badge-video { top: -6px; left: 50%; transform: translateX(-50%); }
.hn-service-badge-voice { top: 108px; left: -34px; }
.hn-service-badge-onsite { top: 108px; right: -34px; }
.hn-service-badge-court { bottom: 6px; right: -18px; }

.hn-hero-photo-row {
  gap: 14px;
  align-items: flex-end;
  justify-content: center;
}
.hn-hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #C8102E 0%, #04277B 65%, #021A54 100%);
  box-shadow: 0 16px 30px rgba(2, 10, 35, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hn-hero-photo-ic { color: rgba(255,255,255,0.85); }
.hn-hero-photo-sm { width: 118px; height: 150px; }
.hn-hero-photo-lg { width: 176px; height: 196px; }
.hn-hero-live-tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255,255,255,0.96);
  color: #071E42;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================================
   Light hero (matches the "globe + service badges + photo strip" brief).
   ========================================================================= */
.hn-hero-light {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F7FC 0%, #EEF1FA 55%, #F7F9FD 100%);
}
.hn-hero-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 5;
  background: var(--saffron);
}
.hn-hero-light::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.16) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.hn-hero-trust-pill-light {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  border: 1px solid var(--maroon);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(4, 39, 123, 0.28);
}
.hn-hero-trust-pill-light svg { color: var(--saffron) !important; }
@media (max-width: 900px) {
  .hn-hero-trust-pill-light { display: none; }
}

.hn-eyebrow-light {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--saffron);
  display: inline-block;
  padding: 7px 16px 6px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(228, 0, 43, 0.28);
}
.hn-hero-light-accent {
  position: relative;
  color: var(--saffron);
  font-weight: 900;
  white-space: nowrap;
}
.hn-hero-light-accent::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 6px;
  height: 12px;
  background: rgba(228, 0, 43, 0.14);
  z-index: -1;
  transform: skewX(-8deg);
}

.hn-feature-list-light {
  border-top: 1px solid var(--line);
}
.hn-feature-row-light {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 4px 15px 14px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: border-color 0.2s var(--ease-soft), background 0.2s var(--ease-soft);
}
.hn-feature-row-light:hover {
  border-left-color: var(--saffron);
  background: rgba(var(--gold-rgb), 0.04);
}
.hn-feature-ic-light {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--maroon);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hn-feature-row-light:nth-child(even) .hn-feature-ic-light {
  background: var(--saffron);
}
.hn-feature-title-light {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0A1F44;
}
.hn-feature-text-light {
  font-size: 0.84rem;
  color: #5B6584;
  margin-top: 2px;
}
.hn-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #5B6584;
  display: inline-block;
  margin: 0 2px;
}

/* --- photo collage visual --- */
.hn-hero-visual-col-light { gap: 30px; }
.hn-collage-wrap {
  position: relative;
  width: 300px;
}
@media (min-width: 768px) {
  .hn-collage-wrap { width: 440px; }
}

.hn-collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 108px 108px 96px;
  gap: 10px;
}
@media (min-width: 768px) {
  .hn-collage-grid { grid-template-rows: 150px 150px 130px; gap: 14px; }
}

.hn-collage-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, #C8102E 0%, #04277B 65%, #021A54 100%);
  box-shadow: 0 16px 32px rgba(4, 39, 123, 0.18);
}
.hn-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hn-collage-item-tall { grid-column: 1; grid-row: 1 / 3; }
.hn-collage-item-wide { grid-column: 1 / 3; grid-row: 3; }

.hn-collage-live-tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255,255,255,0.96);
  color: #071E42;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hn-collage-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #17204A;
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: 0 14px 26px rgba(4, 39, 123, 0.16);
}
.hn-collage-chip b {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #071E42;
}
.hn-collage-chip small {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  color: #6B7694;
}
.hn-collage-chip-ic {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon);
  color: #FFFFFF;
}
.hn-collage-chip-a { top: -18px; left: -16px; }
.hn-collage-chip-b { bottom: -16px; right: -16px; }
@media (min-width: 768px) {
  .hn-collage-chip-a { top: -20px; left: -30px; }
  .hn-collage-chip-b { bottom: -18px; right: -30px; }
}
@media (max-width: 560px) {
  .hn-collage-chip { display: none; }
}

/* --- orb visual (photo-free hero visual for the light hero) --- */
.hn-orb-visual-wrap {
  position: relative;
  width: 300px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background:
    radial-gradient(60% 60% at 75% 20%, rgba(228, 0, 43, 0.35) 0%, transparent 60%),
    linear-gradient(155deg, #04277B 0%, #021A54 75%, #01123A 100%);
  box-shadow: 0 30px 60px -20px rgba(2, 26, 84, 0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hn-orb-visual-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hn-orb-visual-wrap { width: 440px; min-height: 420px; }
}
@media (min-width: 1024px) {
  .hn-orb-visual-wrap { width: 500px; min-height: 480px; }
}
@media (min-width: 1280px) {
  .hn-orb-visual-wrap { width: 560px; min-height: 540px; }
}

/* Southern Cross star cluster — a nod to the flag, scattered in the navy panel */
.hn-orb-star {
  position: absolute;
  color: #FFFFFF;
  opacity: 0.85;
  animation: hn-star-twinkle 2.8s ease-in-out infinite;
  pointer-events: none;
}
.hn-orb-star svg { display: block; filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
.hn-orb-star-1 { top: 14%; left: 16%; width: 13px; animation-delay: 0s; }
.hn-orb-star-2 { top: 24%; left: 32%; width: 9px; animation-delay: 0.5s; }
.hn-orb-star-3 { top: 40%; left: 12%; width: 16px; animation-delay: 1s; }
.hn-orb-star-4 { top: 58%; left: 24%; width: 8px; animation-delay: 1.5s; }
.hn-orb-star-5 { top: 16%; right: 14%; width: 10px; animation-delay: 0.8s; }
@keyframes hn-star-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hn-orb-stage-light { transform: scale(0.72); }
@media (min-width: 480px) { .hn-orb-stage-light { transform: scale(0.86); } }
@media (min-width: 768px) { .hn-orb-stage-light { transform: scale(1.05); } }
@media (min-width: 1024px) { .hn-orb-stage-light { transform: scale(1.2); } }
@media (min-width: 1280px) { .hn-orb-stage-light { transform: scale(1.35); } }

.hn-orb-stage-light .hn-orb-ring-1 { border-color: rgba(255, 255, 255, 0.22); }
.hn-orb-stage-light .hn-orb-ring-2 { border-color: rgba(255, 255, 255, 0.16); }
.hn-orb-stage-light .hn-orb-ring-3 { border-color: rgba(255, 255, 255, 0.28); }
.hn-orb-stage-light .hn-orb-core-pulse { border-color: rgba(228, 0, 43, 0.45); }
.hn-orb-stage-light .hn-orb-live {
  background: #FFFFFF;
  border: 1px solid rgba(4, 39, 123, 0.12);
  color: #071E42;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.hn-orb-stage-light .hn-orb-wave span {
  background: linear-gradient(180deg, var(--saffron), #FFFFFF);
}
.hn-orb-visual-wrap .hn-collage-chip-a { top: -6px; left: -10px; }
.hn-orb-visual-wrap .hn-collage-chip-b { bottom: -6px; right: -10px; }
@media (min-width: 768px) {
  .hn-orb-visual-wrap .hn-collage-chip-a { top: -12px; left: -20px; }
  .hn-orb-visual-wrap .hn-collage-chip-b { bottom: -10px; right: -20px; }
}

/* --- simple static hero illustration (no box wrapper) --- */
.hn-hero-illustration {
  width: 300px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .hn-hero-illustration { width: 420px; }
}
@media (min-width: 1024px) {
  .hn-hero-illustration { width: 460px; }
}
@media (min-width: 1280px) {
  .hn-hero-illustration { width: 500px; }
}

/* --- world map network visual (hero, replaces the orb) --- */
.hn-map-visual-wrap {
  position: relative;
  width: 300px;
  min-height: 300px;
  border-radius: 32px;
  background:
    radial-gradient(60% 60% at 75% 20%, rgba(228, 0, 43, 0.35) 0%, transparent 60%),
    linear-gradient(155deg, #04277B 0%, #021A54 75%, #01123A 100%);
  box-shadow: 0 30px 60px -20px rgba(2, 26, 84, 0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hn-map-visual-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}
.hn-map-svg { border-radius: 32px; overflow: hidden; }
@media (min-width: 768px) {
  .hn-map-visual-wrap { width: 440px; min-height: 420px; }
}
@media (min-width: 1024px) {
  .hn-map-visual-wrap { width: 500px; min-height: 480px; }
}
@media (min-width: 1280px) {
  .hn-map-visual-wrap { width: 560px; min-height: 540px; }
}

.hn-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hn-map-dot { fill: rgba(255, 255, 255, 0.3); }

.hn-map-line {
  fill: none;
  stroke: rgba(255, 187, 64, 0.6);
  stroke-width: 0.35;
  stroke-linecap: round;
  stroke-dasharray: 2.4 3;
  animation: hn-map-flow 2.6s linear infinite;
}
@keyframes hn-map-flow {
  to { stroke-dashoffset: -10.8; }
}

.hn-map-node {
  fill: #FFFFFF;
  animation: hn-map-node-pulse 2.6s ease-in-out infinite;
}
@keyframes hn-map-node-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.hn-map-hub { fill: url(#hn-map-hub-gradient); }
.hn-map-hub-ring {
  fill: none;
  stroke: rgba(255, 187, 64, 0.7);
  stroke-width: 0.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: hn-map-ring 2.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
  opacity: 0;
}
.hn-map-hub-ring-2 { animation-delay: 1.4s; }
@keyframes hn-map-ring {
  0% { transform: scale(0.5); opacity: 0.9; }
  80% { opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hn-map-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #04277B;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  z-index: 3;
  animation: hn-map-chip-float 4s ease-in-out infinite;
}
@keyframes hn-map-chip-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-4px); }
}

.hn-map-hub-pin {
  position: absolute;
  transform: translate(-50%, -145%);
  display: flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  color: #04277B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  z-index: 4;
  white-space: nowrap;
}
.hn-map-hub-pin-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--maroon);
}

@media (max-width: 767px) {
  .hn-map-chip { min-width: 28px; height: 25px; font-size: 0.6rem; padding: 0 7px; }
  .hn-map-hub-pin { font-size: 0.62rem; padding: 4px 9px; }
}

/* --- impact stats bar + tagline under the hero --- */
.hn-hero-impact-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0A1F44 0%, #0E2757 55%, #152A63 100%);
  border-radius: 22px;
  padding: 34px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 30px 60px -25px rgba(4, 39, 123, 0.5);
}
.hn-hero-impact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
}
.hn-hero-impact-bar::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hn-hero-impact-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
}
.hn-hero-impact-ic { color: var(--saffron); margin-bottom: 10px; opacity: 0.95; }
.hn-hero-impact-stat:nth-child(odd) .hn-hero-impact-ic { color: #FFFFFF; opacity: 0.92; }
.hn-hero-impact-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.hn-hero-impact-cap {
  font-size: 0.78rem;
  color: #AEB9DE;
  margin-top: 2px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .hn-hero-impact-bar { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
}
@media (max-width: 420px) {
  .hn-hero-impact-bar { grid-template-columns: 1fr 1fr; }
}

.hn-hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
  color: #5B6584;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------------------
   Hero visual — gentle floating stage + orbiting language chips +
   breathing core + live waveform.
   --------------------------------------------------------------------- */
@keyframes hnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hn-float {
  animation: hnFloat 5.5s ease-in-out infinite;
}
.hn-float-a {
  animation: hnFloat 4.5s ease-in-out infinite;
  animation-delay: 0.3s;
}
.hn-float-b {
  animation: hnFloat 6s ease-in-out infinite;
  animation-delay: 1.1s;
}

@keyframes hn-orb-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hn-orb-spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes hn-orb-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes hn-orb-ping {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes hn-orb-wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

@keyframes hnPulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  50% { box-shadow: 0 6px 15px rgba(52, 211, 153, 0); }
}

/* =========================================================================
   Added for the PHP conversion — these replace patterns that used to be
   done with inline styles driven by React state (Reveal, testimonial
   dots), now driven by CSS classes toggled from assets/js/main.js.
   ========================================================================= */

.hn-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hn-reveal.hn-visible {
  opacity: 1;
  transform: translateY(0);
}

.hn-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.3);
  transition: all 0.3s;
  border: 0;
  cursor: pointer;
}
.hn-testi-dot.active {
  width: 22px;
  background: var(--gold);
}

.hn-testi-nav {
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  color: inherit;
}
.hn-testi-nav:hover {
  background: rgba(255, 249, 238, 0.12);
  transform: scale(1.1);
}

.hn-icon {
  display: inline-block;
  vertical-align: middle;
}

/* ---------------------------------------------------------------------
   Corner-radius finishing pass — navy & white corporate redesign.
   Ensures every element still carrying the legacy Tailwind
   "rounded-none" utility class picks up the new structured, tightly
   rounded look instead.
   --------------------------------------------------------------------- */
.hn-btn-primary,
.hn-btn-secondary { border-radius: 8px; }
.hn-tab-group { border-radius: 8px; }
.hn-testi-nav { border-radius: 999px; }
.hn-root .rounded-none { border-radius: 8px; }
.hn-root .hn-testi-nav.rounded-none { border-radius: 999px; }

/* ---------------------------------------------------------------------
   Legal pages (Privacy Policy / Terms) — table of contents, numbered
   sub-items, and contact card. Matches the navy/red corporate theme.
   --------------------------------------------------------------------- */
.hn-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hn-legal-toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 40px;
}
.hn-legal-toc-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.hn-legal-toc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 32px;
}
@media (min-width: 640px) {
  .hn-legal-toc-grid { grid-template-columns: 1fr 1fr; }
}
.hn-legal-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--ease-soft);
}
.hn-legal-toc-link:hover { color: var(--maroon); }
.hn-legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(var(--maroon-rgb), 0.1);
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hn-legal-section { margin-bottom: 44px; scroll-margin-top: 100px; }
.hn-legal-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hn-legal-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--maroon);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hn-legal-item {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.hn-legal-item:last-child { margin-bottom: 0; }
.hn-legal-item strong { color: var(--text); }
.hn-legal-item a { color: var(--maroon); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(var(--maroon-rgb), 0.35); }
.hn-legal-item a:hover { text-decoration-color: var(--maroon); }
.hn-legal-contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
}
.hn-legal-contact-name {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.hn-legal-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.hn-legal-contact-row:last-child { margin-bottom: 0; }
.hn-legal-contact-row a { color: var(--maroon); font-weight: 600; text-decoration: none; }
.hn-legal-contact-row a:hover { text-decoration: underline; }
.hn-legal-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(var(--maroon-rgb), 0.1);
  color: var(--maroon);
  flex-shrink: 0;
  margin-top: 1px;
}
