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

:root {
  --bg: #071622;
  --bg-soft: #0f2433;
  --bg-card: #122b3d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f4efe2;
  --text-muted: #c8bc9c;
  --brand: #d4af37;
  --brand-2: #f4d06a;
  --brand-3: #c38b2f;
  --danger: #ff6f61;
  --ok: #3ddc97;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1200px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(212, 175, 55, 0.17), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(244, 208, 106, 0.16), transparent 24%),
    linear-gradient(140deg, #070b14 0%, #111a2d 58%, #0b1222 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.48;
  font-size: 15.6px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: -1;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.top-strip {
  background: rgba(2, 215, 181, 0.12);
  border-bottom: 1px solid rgba(2, 215, 181, 0.2);
  font-size: 0.9rem;
}

.top-strip .container {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.top-strip strong {
  color: var(--brand);
}

.top-strip a {
  color: #d9fff9;
}

.ticker-zone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: min(760px, 92vw);
}

.ticker-label {
  white-space: nowrap;
}

.ticker-window {
  position: relative;
  overflow: hidden;
  width: min(840px, 72vw);
}

.review-ticker-text {
  display: inline-block;
  white-space: nowrap;
  color: #dcfff8;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.review-ticker-text.ticker-out {
  opacity: 0;
  transform: translateY(12px);
}

.review-ticker-text.ticker-in {
  opacity: 1;
  transform: translateY(0);
}

.top-strip-links {
  white-space: nowrap;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(6, 20, 32, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

header.site-header::before {
  content: '';
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(95deg, transparent, rgba(2, 215, 181, 0.12), transparent);
  animation: sweepHeader 7s linear infinite;
  pointer-events: none;
}

.nav-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand span:last-child {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.32), rgba(9, 14, 24, 0.88));
  border: 1px solid rgba(212, 175, 55, 0.6);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(244, 208, 106, 0.26), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 42%, rgba(244, 208, 106, 0.28) 52%, transparent 62%);
  animation: goldShimmer 6s linear infinite;
  border-radius: 8px;
  pointer-events: none;
}

nav.primary-nav {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

nav.primary-nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link,
button.nav-link {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.68rem 0.88rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.nav-link::after,
button.nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.34rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  opacity: 0;
  transform: scaleX(0.4);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
button.nav-link:hover::after,
button.nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.65rem);
  width: min(1040px, 94vw);
  padding: 1.2rem;
  background: #0a1e2d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: none;
}

.nav-item.mega-open .mega-menu {
  display: block;
  animation: fadeUp 0.26s ease forwards;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mega-col {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-col h4 {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--brand);
}

.mega-col a {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.mega-col a:hover {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: #02111a;
  border-radius: 999px;
  padding: 0.58rem 0.92rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.lang-cta {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.76rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.lang-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 215, 181, 0.5);
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.header-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-icon-btn.active,
.header-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 215, 181, 0.65);
  background: rgba(2, 215, 181, 0.15);
}

.header-mobile-flyouts {
  display: none;
  position: absolute;
  right: 0.5rem;
  top: calc(100% + 0.2rem);
  width: min(190px, 82vw);
  z-index: 1300;
  gap: 0.35rem;
}

.mobile-flyout {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  background: rgba(7, 25, 36, 0.95);
  padding: 0 0.5rem;
}

.mobile-flyout.open {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  padding: 0.45rem 0.5rem;
}

.mobile-flyout .theme-switch.compact,
.mobile-flyout .lang-cta.compact,
.mobile-flyout .header-cta.compact {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem;
  border-radius: 10px;
}

.page-main {
  padding-bottom: 5rem;
}

.hero-showcase {
  padding-top: 1.5rem;
}

.hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.24);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.hero-track {
  position: relative;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(3, 12, 21, 0.8));
  pointer-events: none;
}

.hero-slide-media {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 3;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.33);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-nav.prev {
  left: 0.8rem;
}

.hero-nav.next {
  right: 0.8rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.36rem;
  z-index: 6;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--brand);
}

.hero-showcase-note {
  margin-top: 0.5rem;
}

.hero {
  padding: 4.2rem 0 2.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-card,
.panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 2rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 215, 181, 0.35), transparent 65%);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 215, 181, 0.45);
  color: #a8fff2;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  font-family: 'Sora', sans-serif;
  line-height: 1.1;
  margin: 0.85rem 0 0.75rem;
  letter-spacing: -0.4px;
}

.typing-target,
.typing-target-secondary {
  position: relative;
}

.typing-target::after,
.typing-target-secondary::after {
  content: '|';
  margin-left: 0.12rem;
  color: var(--brand);
  animation: blinkCaret 0.8s steps(1) infinite;
}

.hero h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  max-width: 18ch;
  min-height: 2.2em;
}

.section-heading h2 {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
}

.hero-cta-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.btn,
button.btn {
  border: none;
  border-radius: 12px;
  padding: 0.78rem 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: #021018;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.25);
}

.stat-value {
  font-size: 1.18rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.section {
  padding: 1.4rem 0;
}

.section-collapsible {
  position: relative;
  max-height: 360px;
  overflow: hidden;
  transition: max-height 0.52s ease;
}

.section-collapsible::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 28, 0.96));
  pointer-events: none;
}

.section.section-expanded .section-collapsible {
  max-height: 3000px;
}

.section.section-expanded .section-collapsible::after {
  opacity: 0;
}

.section-expand-controls {
  width: var(--container);
  margin-inline: auto;
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section-expand-btn {
  border-radius: 999px;
  padding-inline: 1.15rem;
}

.section-inquiry-reveal {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-inquiry-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-heading {
  margin-bottom: 0.9rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  max-width: 70ch;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 0.85rem;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.content-card::before {
  content: '';
  position: absolute;
  inset: -100% 40% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 215, 181, 0.25), transparent 70%);
  transition: transform 0.4s ease;
}

.content-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(2, 215, 181, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.content-card:hover::before {
  transform: translate(-8%, 12%);
}

.content-card h3,
.content-card h4 {
  margin-top: 0;
  font-size: 1rem;
  font-family: 'Sora', sans-serif;
}

.mini {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(67, 163, 255, 0.18);
  border: 1px solid rgba(67, 163, 255, 0.45);
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.timeline-item {
  margin-bottom: 0.85rem;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.timeline-item h4 {
  margin: 0;
  font-size: 0.95rem;
}

.timeline-item p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

th {
  color: #d4ecff;
  font-weight: 600;
}

.search-wrap {
  display: grid;
  gap: 0.7rem;
}

input,
select {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font: inherit;
}

input::placeholder {
  color: #9eb3c1;
}

.search-results {
  max-height: 330px;
  overflow: auto;
  display: grid;
  gap: 0.55rem;
}

.search-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.search-item p {
  margin: 0.24rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.calc-output {
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(2, 215, 181, 0.18), rgba(67, 163, 255, 0.18));
  border: 1px solid rgba(2, 215, 181, 0.4);
}

.calc-output strong {
  font-size: 1.3rem;
  display: block;
}

.keyword-pill {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  margin: 0.2rem 0.28rem 0.2rem 0;
  font-size: 0.74rem;
  color: #d8ecf8;
}

.contact-bar {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-link {
  background: rgba(2, 215, 181, 0.16);
  border: 1px solid rgba(2, 215, 181, 0.35);
  border-radius: 999px;
  padding: 0.44rem 0.84rem;
  font-size: 0.85rem;
}

.reference-list {
  margin: 0;
  padding-left: 1rem;
}

.reference-list li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.reference-list a {
  color: #99d5ff;
}

footer {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.24);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.56);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.footer-grid {
  padding: 2rem 0 2.6rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.footer-grid h4 {
  margin-top: 0;
  font-family: 'Sora', sans-serif;
}

.footer-grid p,
.footer-grid li {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: min(340px, calc(100vw - 1rem));
}

.chat-toggle {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d0b2, #21a4ff);
  color: #04202f;
  font-weight: 700;
  padding: 0.72rem 1rem;
  cursor: pointer;
}

.chat-box {
  margin-top: 0.55rem;
  background: #082033;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.8rem;
  display: none;
}

.chat-widget.open .chat-box {
  display: block;
  animation: fadeUp 0.2s ease;
}

.chat-box p {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.chat-box .btn-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

#google_translate_element {
  min-width: 210px;
}

.goog-te-gadget,
.goog-te-gadget .goog-te-combo {
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.88rem !important;
}

.goog-te-gadget .goog-te-combo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.3rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blinkCaret {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes sweepHeader {
  from {
    transform: translateX(-35%);
  }
  to {
    transform: translateX(35%);
  }
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(195, 139, 47, 0.22);
  }
  50% {
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.36);
  }
}

@keyframes goldShimmer {
  from {
    transform: translateX(-24%);
  }
  to {
    transform: translateX(24%);
  }
}

@keyframes pulseBrand {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(2, 215, 181, 0);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(2, 215, 181, 0.34);
  }
}

@media (max-width: 1060px) {
  .top-strip .container {
    align-items: flex-start;
  }

  .top-strip-links {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .ticker-zone {
    min-width: 0;
    width: 100%;
  }

  .ticker-window {
    width: 100%;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .calc-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: space-between;
    gap: 0.45rem;
    row-gap: 0.55rem;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 140px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    padding: 0.42rem 0.52rem;
    font-size: 0.74rem;
    line-height: 1;
  }

  .desktop-controls {
    display: none !important;
  }

  .header-mobile-actions {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    gap: 0.3rem;
  }

  .header-icon-btn {
    width: 28px;
    height: 28px;
    font-size: 0.56rem;
  }

  .header-mobile-flyouts {
    display: grid;
    right: 0;
    top: calc(100% + 0.26rem);
    width: min(220px, 90vw);
  }

  .mobile-flyout.open {
    max-height: 140px;
  }

  nav.primary-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  header.site-header.mobile-open nav.primary-nav {
    display: flex;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.55rem;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .header-right {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: 100%;
    overflow: hidden;
  }

  .theme-switch {
    min-width: 0;
  }

  #theme-select {
    min-width: 112px;
    max-width: 148px;
  }
}

@media (max-width: 760px) {
  .top-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-strip-links {
    width: 100%;
    white-space: normal;
  }

  .hero,
  .section {
    padding: 1.05rem 0;
  }

  .hero-slider,
  .hero-track,
  .hero-slide-media {
    min-height: 280px;
    height: 280px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .calc-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .market-row {
    grid-template-columns: 58px 1fr 30px;
  }

  .nav-row {
    min-height: 68px;
    gap: 0.45rem;
  }

  .header-mobile-actions {
    display: inline-flex;
    gap: 0.22rem;
  }

  .header-mobile-flyouts {
    display: grid;
    width: min(180px, 86vw);
  }

  .header-icon-btn {
    width: 24px;
    height: 24px;
    font-size: 0.52rem;
  }

  nav.primary-nav {
    gap: 0.2rem;
    padding: 0.56rem;
  }

  .nav-link,
  button.nav-link {
    padding: 0.52rem 0.66rem;
    font-size: 0.82rem;
  }

  .theme-switch span {
    display: none;
  }

  #theme-select {
    min-width: 96px;
    max-width: 126px;
    padding: 0.28rem 0.56rem;
    font-size: 0.74rem;
  }

  .header-cta,
  .lang-cta {
    padding: 0.46rem 0.68rem;
    font-size: 0.72rem;
  }

  .chat-widget {
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
  }
}

/* Theme system and premium button updates */
body {
  --bg-radial-left: rgba(67, 163, 255, 0.2);
  --bg-radial-right: rgba(249, 168, 38, 0.18);
  --bg-linear: linear-gradient(140deg, #04111c 0%, #0c2333 58%, #081826 100%);
  background:
    radial-gradient(circle at 8% 4%, var(--bg-radial-left), transparent 24%),
    radial-gradient(circle at 92% 12%, var(--bg-radial-right), transparent 24%),
    var(--bg-linear);
}

body[data-theme='dark'] {
  --text: #eef7ff;
  --text-muted: #b4c8d8;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --bg-radial-left: rgba(67, 163, 255, 0.2);
  --bg-radial-right: rgba(249, 168, 38, 0.18);
  --bg-linear: linear-gradient(140deg, #04111c 0%, #0c2333 58%, #081826 100%);
}

body[data-theme='royal'] {
  --text: #f8f0dc;
  --text-muted: #d9cba8;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --brand: #d4af37;
  --brand-2: #f4d06a;
  --brand-3: #be8f34;
  --bg-radial-left: rgba(212, 175, 55, 0.18);
  --bg-radial-right: rgba(244, 208, 106, 0.16);
  --bg-linear: linear-gradient(150deg, #070b14 0%, #111a2d 52%, #0b1222 100%);
}

body[data-theme='royal'] .top-strip,
body[data-theme='royal'] header.site-header {
  background: rgba(8, 13, 24, 0.82);
  border-color: rgba(212, 175, 55, 0.26);
}

body[data-theme='royal'] .top-strip a,
body[data-theme='royal'] .review-ticker-text {
  color: #f6e2ab;
}

body[data-theme='royal'] .top-strip strong,
body[data-theme='royal'] .kicker {
  color: #f4d06a;
}

body[data-theme='royal'] .header-cta,
body[data-theme='royal'] .contact-link,
body[data-theme='royal'] .btn-primary {
  background: linear-gradient(135deg, #f4d06a, #d4af37 55%, #be8f34);
  color: #15110a;
  animation: goldPulse 3.6s ease-in-out infinite;
}

body[data-theme='royal'] .btn-ghost {
  border-color: rgba(244, 208, 106, 0.35);
  background: rgba(20, 28, 44, 0.52);
}

body[data-theme='royal'] .panel,
body[data-theme='royal'] .hero-card,
body[data-theme='royal'] .content-card,
body[data-theme='royal'] .mega-col,
body[data-theme='royal'] .chat-box {
  border-color: rgba(212, 175, 55, 0.24);
}

body[data-theme='royal'] .govt-fee-chip {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.14);
}

body[data-theme='cream'] {
  --text: #1e2a34;
  --text-muted: #576978;
  --surface: rgba(255, 255, 255, 0.5);
  --surface-strong: rgba(255, 255, 255, 0.75);
  --brand: #0b9f8b;
  --brand-2: #d89a28;
  --brand-3: #2e83d3;
  --bg-radial-left: rgba(232, 236, 245, 0.95);
  --bg-radial-right: rgba(245, 232, 208, 0.9);
  --bg-linear: linear-gradient(160deg, #fffdf8 0%, #f4efe4 45%, #ebe4d8 100%);
}

body[data-theme='ocean'] {
  --text: #ecf8ff;
  --text-muted: #b6ceda;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --brand: #10d3e8;
  --brand-2: #84cc16;
  --brand-3: #4f46e5;
  --bg-radial-left: rgba(23, 190, 218, 0.25);
  --bg-radial-right: rgba(79, 70, 229, 0.18);
  --bg-linear: linear-gradient(150deg, #041521 0%, #072738 50%, #0a1f32 100%);
}

body[data-theme='emerald'] {
  --text: #ebfff8;
  --text-muted: #bddfd3;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --brand: #21c48a;
  --brand-2: #f7b32b;
  --brand-3: #4aa3ff;
  --bg-radial-left: rgba(33, 196, 138, 0.22);
  --bg-radial-right: rgba(247, 179, 43, 0.14);
  --bg-linear: linear-gradient(155deg, #061811 0%, #0c2d21 55%, #082419 100%);
}

body[data-theme='cream'] .top-strip,
body[data-theme='cream'] header.site-header {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(74, 88, 103, 0.18);
}

body[data-theme='cream'] .top-strip a,
body[data-theme='cream'] .top-strip strong {
  color: #1f4b62;
}

body[data-theme='cream'] .review-ticker-text {
  color: #35586f;
}

body[data-theme='cream'] .nav-link,
body[data-theme='cream'] button.nav-link,
body[data-theme='cream'] .brand {
  color: #1f3342;
}

body[data-theme='cream'] .panel,
body[data-theme='cream'] .hero-card,
body[data-theme='cream'] .content-card,
body[data-theme='cream'] .mega-col,
body[data-theme='cream'] .chat-box {
  border-color: rgba(62, 73, 86, 0.2);
}

body[data-theme='cream'] .btn-ghost {
  color: #173143;
  border-color: rgba(47, 73, 89, 0.25);
  background: rgba(255, 255, 255, 0.7);
}

body[data-theme='cream'] .brand-mark {
  border-color: rgba(29, 52, 71, 0.34);
  box-shadow: inset 0 0 0 2px rgba(29, 52, 71, 0.08);
}

body[data-theme='cream'] .mobile-flyout {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(55, 76, 92, 0.22);
}

body[data-theme='cream'] #theme-select,
body[data-theme='cream'] .lang-cta {
  color: #1d3447;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(55, 76, 92, 0.24);
}

body[data-theme='cream'] .section-collapsible::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(236, 228, 215, 0.96));
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.theme-switch span {
  font-weight: 600;
}

#theme-select {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  min-width: 118px;
  font-size: 0.76rem;
}

.hero-media {
  margin: 0.2rem 0 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  transform: scale(1.01);
}

.govt-fee-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 215, 181, 0.42);
  background: rgba(2, 215, 181, 0.12);
  margin-top: 0.3rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.56rem 1.02rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(2, 215, 181, 0.95), rgba(67, 163, 255, 0.92));
  color: #041521;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.analytics-controls input[type='range'] {
  accent-color: var(--brand);
}

.analytics-metrics .stat-value {
  font-size: 1.15rem;
}

.market-card {
  min-height: 100%;
}

.market-row,
.scenario-row {
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.scenario-row {
  grid-template-columns: 42px 1fr;
}

.market-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.market-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  transition: width 0.35s ease;
}

.market-fill.scenario {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.award-card {
  min-height: 260px;
}

.award-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.65rem;
}

.cert-card {
  border-color: rgba(2, 215, 181, 0.36);
}
