/* Avenix Overseas — Modern 2026 Design System */
:root {
  --ink: #0B1426;
  --ink-2: #121C2E;
  --deep: #07101C;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --blue: #2563EB;
  --green: #25D366;
  --white: #FFFFFF;
  --off: #F7F9FC;
  --muted: #64748B;
  --text: #1E293B;
  --line: #E2E8F0;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(11, 20, 38, 0.12);
  --shadow-sm: 0 8px 24px rgba(11, 20, 38, 0.08);
  --nav-h: 78px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', Inter, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.is-menu-open { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(11, 20, 38, 0.98);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}
.navlinks a {
  color: #E2E8F0;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
}
.nav-cta { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  place-items: center;
  touch-action: manipulation;
}

/* Mobile nav */
@media (max-width: 980px) {
  .navlinks {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    z-index: 1001;
  }
  .navlinks.open { display: flex; }
  .navlinks a {
    padding: 16px 18px;
    min-height: 52px;
    font-size: 15px;
  }
  .nav-cta { display: none; }
  .menu { display: grid; margin-left: auto; }
  .brand span { display: none; }
}

/* ========== HERO with rotating images ========== */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 16, 28, 0.92) 0%, rgba(7, 16, 28, 0.7) 42%, rgba(7, 16, 28, 0.35) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(37, 99, 235, 0.15), transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold-light); }
.hero-lead {
  font-size: 1.12rem;
  color: #CBD5E1;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #94A3B8;
}
.hero-note i { color: var(--gold); margin-top: 3px; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dots button.active {
  background: var(--gold-light);
  transform: scale(1.25);
}

/* ========== SECTIONS ========== */
.section { padding: 88px 0; }
.section.alt { background: var(--off); }
.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 18px;
  background: var(--off);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.card a.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

/* Visual grid */
.visual-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-sm);
}
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.visual-card:hover img { transform: scale(1.06); }
.visual-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,16,28,0.85));
  pointer-events: none;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.step p { font-size: 14px; color: var(--muted); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.team-card .role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 4px 0 10px;
}
.team-card p { font-size: 14px; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: #94A3B8;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* Footer */
.footer {
  background: var(--deep);
  color: #94A3B8;
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand img { height: 48px; margin-bottom: 14px; }
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer a:hover { color: var(--gold-light); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

/* ========== FLOATS (Lara + WhatsApp) — keep same behaviour ========== */
.ao-lara-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0B1426, #121C2E);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.25s;
}
.ao-lara-float:hover { transform: translateY(-3px); }
.ao-lara-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--ink);
}
.ao-lara-float strong { font-size: 13px; font-family: var(--font-display); }
.ao-lara-float small { display: block; font-size: 10px; color: #94A3B8; }

.ao-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 9991;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #25D366, #128C7E);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  border: 2px solid rgba(255,255,255,0.9);
  transition: transform 0.25s;
}
.ao-whatsapp-float:hover { transform: scale(1.08); }
.ao-whatsapp-float img { width: 32px; height: 32px; }

/* Public form mobile safety */
.ao-form, .ao-form input, .ao-form select, .ao-form textarea { box-sizing: border-box; max-width: 100%; }
@media (max-width: 560px) {
  .ao-phone-wrap { grid-template-columns: 96px minmax(0, 1fr) !important; }
  .ao-form { padding: 22px 18px !important; }
  .ao-form input, .ao-form select, .ao-form textarea { min-width: 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .visual-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; }
  .team-card img { width: 120px; height: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .ao-lara-float small { display: none; }
  .ao-lara-float { right: 14px; bottom: 88px; padding: 7px; }
  .ao-whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* === V2 refinements from feedback === */
.brand img {
  height: 64px !important;
  width: auto !important;
  max-height: 64px !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.header .brand img { height: 58px !important; max-height: 58px !important; }
.footer-brand img {
  height: 80px !important;
  width: auto !important;
  max-height: 80px !important;
  background: transparent !important;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}

/* Smaller header CTA */
.nav-cta .btn,
.nav-cta .btn-gold {
  padding: 8px 16px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* Icons without heavy backgrounds */
.card-icon {
  background: transparent !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
}

/* WhatsApp flip every 3s */
.ao-whatsapp-float {
  perspective: 600px;
}
.ao-whatsapp-float img {
  animation: aoWaFlip 3s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes aoWaFlip {
  0%, 40% { transform: rotateY(0deg); }
  50%, 90% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.page-hero .hero-slides { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.1s ease, transform 6s ease;
}
.page-hero .hero-slide.active { opacity: 1; transform: scale(1); }
.page-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(7,16,28,0.9) 0%, rgba(7,16,28,0.65) 50%, rgba(7,16,28,0.4) 100%);
  pointer-events: none;
}
.page-hero .hero-content {
  position: relative; z-index: 2;
  padding: 72px 0 56px;
  max-width: 640px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-hero .hero-lead { color: #CBD5E1; font-size: 1.05rem; }

/* Country grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.country-chip:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.country-chip img {
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Seedstars partner band */
.partner-band {
  background: var(--off);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.partner-band img {
  height: 72px;
  width: auto;
  margin: 16px auto 0;
  object-fit: contain;
}
.partner-band .kicker { margin-bottom: 8px; }

/* Admin link on reviews */
.admin-link {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  color: #94A3B8;
  opacity: 0.7;
  z-index: 5;
}
.admin-link:hover { opacity: 1; color: var(--gold); }

@media (max-width: 900px) {
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .cards[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .brand img { height: 48px !important; max-height: 48px !important; }
  .nav-cta .btn { padding: 7px 12px !important; font-size: 11px !important; }
}

/* Subtle admin link in header (reviews only) */
.admin-header-link {
  position: fixed !important;
  top: 8px !important;
  right: 12px !important;
  left: auto !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.4) !important;
  text-decoration: none;
  z-index: 9999;
  padding: 4px 8px;
  background: transparent;
}
.admin-header-link:hover {
  color: rgba(201, 162, 39, 0.55) !important;
}
.header { position: sticky; }
.header .wrap.nav { position: relative; }

.partner-band img {
  height: 80px !important;
  background: transparent !important;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}
.btn.gold{background:linear-gradient(135deg,#C9A227,#E8C547);color:#0B1426;border:0;border-radius:999px;padding:10px 16px;font-weight:700;cursor:pointer;}

/* ========== MODERN TRUST + WHY AVENIX ========== */
.trust-strip{position:relative;z-index:5;margin-top:-1px;background:var(--ink);border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trust-stat{padding:24px 18px;text-align:center;border-right:1px solid rgba(255,255,255,.08)}
.trust-stat:last-child{border-right:0}
.trust-stat strong{display:block;font-family:var(--font-display);font-size:1.65rem;line-height:1;color:var(--gold-light);margin-bottom:7px}
.trust-stat span{display:block;color:#CBD5E1;font-size:12px;font-weight:600}
.why-section{background:linear-gradient(180deg,#fff 0%,#f7f9fc 100%)}
.why-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}
.why-copy h2{font-family:var(--font-display);font-size:clamp(2rem,4vw,3rem);line-height:1.12;letter-spacing:-.035em;color:var(--ink);margin:8px 0 18px}
.why-copy>p{max-width:560px;color:var(--muted);margin-bottom:26px}
.why-points{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.why-point{display:flex;gap:14px;padding:20px;border:1px solid var(--line);background:#fff;border-radius:18px;box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s}
.why-point:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.why-icon{flex:0 0 42px;width:42px;height:42px;border-radius:13px;display:grid;place-items:center;background:rgba(201,162,39,.12);color:var(--gold);font-size:17px}
.why-point h3{font-family:var(--font-display);font-size:15px;color:var(--ink);margin-bottom:4px}
.why-point p{font-size:12.5px;color:var(--muted);line-height:1.55}
@media(max-width:850px){.trust-grid{grid-template-columns:repeat(2,1fr)}.trust-stat:nth-child(2){border-right:0}.trust-stat{border-bottom:1px solid rgba(255,255,255,.08)}.trust-stat:nth-last-child(-n+2){border-bottom:0}.why-grid{grid-template-columns:1fr;gap:34px}.why-points{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.trust-stat{padding:18px 10px}.trust-stat strong{font-size:1.4rem}.trust-stat span{font-size:11px}.why-points{grid-template-columns:1fr}.why-point{padding:16px}}
/* Mobile viewport lock: keep the site fitted to the device viewport and keep floating actions visible. */
@media (max-width: 560px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .ao-lara-float {
    position: fixed !important;
    right: 14px !important;
    bottom: calc(88px + env(safe-area-inset-bottom)) !important;
    z-index: 2147483646 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .ao-whatsapp-float {
    position: fixed !important;
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    z-index: 2147483647 !important;
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* ========== Lara AI mobile chat ========== */
.lara-chat[hidden]{display:none!important}.lara-chat{position:fixed;inset:0;z-index:2147483647}.lara-backdrop{position:absolute;inset:0;background:rgba(4,10,20,.68);backdrop-filter:blur(4px)}.lara-panel{position:absolute;right:20px;bottom:20px;width:min(430px,calc(100vw - 24px));height:min(720px,calc(100dvh - 40px));display:flex;flex-direction:column;overflow:hidden;background:#fff;border:1px solid #e2e8f0;border-radius:22px;box-shadow:0 30px 90px rgba(0,0,0,.35)}.lara-head{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;background:var(--ink);color:#fff}.lara-identity{display:flex;align-items:center;gap:10px}.lara-identity img{width:42px;height:42px;border-radius:50%;background:#fff;padding:3px}.lara-identity strong,.lara-identity small{display:block}.lara-identity strong{font-family:var(--font-display);font-size:16px}.lara-identity small{font-size:11px;color:#cbd5e1;margin-top:2px}.lara-close{width:42px;height:42px;border:0;border-radius:12px;background:rgba(255,255,255,.1);color:#fff;font-size:28px;cursor:pointer}.lara-messages{flex:1;overflow-y:auto;padding:16px;background:#f8fafc;display:flex;flex-direction:column;gap:10px}.lara-msg{display:flex}.lara-msg.user{justify-content:flex-end}.lara-bubble{max-width:86%;padding:11px 13px;border-radius:15px;background:#fff;border:1px solid #e2e8f0;color:#1e293b;font-size:14px;line-height:1.55;box-shadow:0 2px 8px rgba(15,23,42,.04)}.lara-msg.user .lara-bubble{background:var(--ink);color:#fff;border-color:var(--ink);border-bottom-right-radius:5px}.lara-msg.assistant .lara-bubble{border-bottom-left-radius:5px}.lara-form{display:flex;align-items:flex-end;gap:8px;padding:10px;border-top:1px solid #e2e8f0;background:#fff}.lara-form textarea{flex:1;resize:none;max-height:120px;min-height:46px;border:1px solid #cbd5e1;border-radius:14px;padding:12px 13px;font:inherit;font-size:14px;outline:none}.lara-form textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,39,.12)}.lara-form button{width:46px;height:46px;flex:0 0 46px;border:0;border-radius:14px;background:var(--gold);color:var(--ink);font-size:16px;cursor:pointer}.lara-form button:disabled{opacity:.5;cursor:not-allowed}.lara-note{padding:7px 12px calc(9px + env(safe-area-inset-bottom));font-size:10px;line-height:1.35;color:#64748b;background:#fff;text-align:center}.lara-open{overflow:hidden}
@media(max-width:560px){.lara-panel{right:0;bottom:0;width:100%;height:calc(100dvh - env(safe-area-inset-top));max-height:none;border-radius:20px 20px 0 0;border-bottom:0}.lara-head{padding-top:calc(12px + env(safe-area-inset-top))}.lara-messages{padding:12px}.lara-bubble{max-width:90%;font-size:14px}.lara-form{padding-bottom:8px}.lara-note{padding-bottom:calc(8px + env(safe-area-inset-bottom))}}

/* Mobile-first navigation polish */
@media (max-width:980px){
  .header{z-index:1000}
  .navlinks.open{animation:aoNavIn .16s ease-out}
  .navlinks a{display:flex;align-items:center;justify-content:space-between;border-radius:12px;margin:2px 0}
  .navlinks a:active{transform:scale(.99)}
  .menu{position:relative;z-index:1002}
}
@keyframes aoNavIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
