:root {
  --text: #0a1528;
  --muted: #4a5d7a;
  --line: #dce6f5;
  --accent: #00a8f0;
  --accent2: #00d4aa;
  --accent-bright: #5cc8ff;
  --accent-dark: #071220;
  --brand-navy: #0c1829;
  --brand-gradient: linear-gradient(135deg, #00a8f0 0%, #00d4aa 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(0, 168, 240, 0.12) 0%, rgba(0, 212, 170, 0.1) 100%);
  --surface: #ffffff;
  --surface-alt: #f0f7ff;
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.65);
  --shadow: 0 14px 40px rgba(7, 18, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 18, 32, 0.14);
  --shadow-glow: 0 20px 50px rgba(0, 168, 240, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --header-height: 72px;
  --transition: 0.25s ease;
  --font-display: "Plus Jakarta Sans", Montserrat, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(0, 168, 240, 0.06), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(0, 212, 170, 0.05), transparent 55%),
    var(--surface);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #071220 0%, #0c1a30 50%, #071220 100%);
  font-size: 12px;
  color: #c8ddf5;
  border-bottom: 1px solid rgba(0, 168, 240, 0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}

.topbar-left {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a {
  color: #eaf2ff;
}

.topbar a:hover {
  color: #fff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right a {
  font-weight: 700;
}

.topbar-hours {
  opacity: 0.85;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0.85;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand-icon-wrap {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #060d18 0%, #0f1c32 100%);
  border: 1px solid rgba(0, 168, 240, 0.35);
  box-shadow:
    0 4px 18px rgba(0, 168, 240, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.brand:hover .brand-icon-wrap {
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow:
    0 6px 22px rgba(0, 168, 240, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.brand-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.brand-text {
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-nexa {
  color: #0a1528;
}

.brand-core {
  color: var(--accent);
}

.brand-sub {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d5575;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.nav a.active {
  color: var(--text);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

.menu-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition);
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-btn[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 20px 20px;
  background: var(--surface);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow:
    0 12px 28px rgba(0, 168, 240, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn-shine:hover::after {
  left: 140%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(0, 168, 240, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
  filter: saturate(1.08);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid rgba(0, 168, 240, 0.2);
  box-shadow: 0 8px 20px rgba(7, 18, 32, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 168, 240, 0.12);
}

.btn-call {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 8% 12%, rgba(0, 168, 240, 0.16), transparent 62%),
    radial-gradient(760px 480px at 92% 8%, rgba(0, 212, 170, 0.14), transparent 58%),
    radial-gradient(600px 400px at 50% 100%, rgba(0, 120, 212, 0.08), transparent 65%),
    linear-gradient(165deg, #eef6ff 0%, #f8fbff 42%, #ffffff 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 240, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 168, 240, 0.35);
  top: 8%;
  left: 4%;
}

.hero-orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(0, 212, 170, 0.3);
  top: 18%;
  right: 8%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(92, 200, 255, 0.25);
  bottom: 10%;
  left: 38%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -22px) scale(1.05); }
  66% { transform: translate(-14px, 16px) scale(0.96); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 240, 0.25);
  color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.88));
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 168, 240, 0.1);
  backdrop-filter: blur(10px);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.8);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 16px;
  min-height: 3.2em;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0a1528 0%, #0a1528 35%, #0078d4 62%, #00a896 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.type-text {
  display: inline;
  -webkit-text-fill-color: transparent;
}

.type-caret {
  display: inline-block;
  margin-left: 2px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: caretBlink 1s steps(2, end) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  position: relative;
  padding: 16px 18px 16px 16px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 12px 32px rgba(7, 18, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  min-width: 118px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 168, 240, 0.45), rgba(0, 212, 170, 0.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: var(--brand-gradient-soft);
  color: var(--accent);
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual-glow {
  position: absolute;
  inset: 10% 5% 15% 10%;
  background: radial-gradient(circle, rgba(0, 168, 240, 0.22), transparent 68%);
  filter: blur(24px);
  z-index: 0;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  position: relative;
  z-index: 1;
  height: 320px;
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}

.hero-visual:hover .hero-photo-main {
  transform: rotate(0deg) scale(1.01);
}

.hero-photo-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 18, 32, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-photo-float {
  position: absolute;
  width: 148px;
  height: 108px;
  z-index: 3;
  animation: photoFloat 8s ease-in-out infinite;
}

.hero-photo-a {
  top: 8px;
  right: -8px;
  transform: rotate(4deg);
}

.hero-photo-b {
  bottom: 168px;
  left: -18px;
  transform: rotate(-5deg);
  animation: photoFloatB 8s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes photoFloat {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes photoFloatB {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 24px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 24px;
  box-shadow:
    0 24px 60px rgba(7, 18, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.hero-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-card h3 {
  margin: 0;
  font-size: 18px;
}

.hero-card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 120, 212, 0.08);
  color: var(--accent);
  white-space: nowrap;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.hero-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

.hero-card-link svg {
  width: 18px;
  height: 18px;
}

/* Trust bar */
.trust-bar {
  position: relative;
  background:
    linear-gradient(90deg, #071220 0%, #0e2848 38%, #0a3d5c 62%, #071220 100%);
  color: #c8ddf5;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 168, 240, 0.2);
  border-bottom: 1px solid rgba(0, 168, 240, 0.2);
  overflow: hidden;
}

.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 240, 0.08), transparent);
  pointer-events: none;
}

.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 168, 240, 0.15);
  transition: background var(--transition), transform var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.trust-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 240, 0.25), rgba(0, 212, 170, 0.2));
  color: var(--accent-bright);
  border: 1px solid rgba(0, 168, 240, 0.3);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  opacity: 0.88;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(800px 400px at 0% 50%, rgba(0, 168, 240, 0.06), transparent 55%),
    radial-gradient(700px 350px at 100% 30%, rgba(0, 212, 170, 0.05), transparent 50%),
    var(--surface-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 168, 240, 0.08);
  border: 1px solid rgba(0, 168, 240, 0.15);
}

.section-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head.center h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--brand-gradient);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  box-shadow: 0 10px 30px rgba(7, 18, 32, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 168, 240, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 168, 240, 0.25);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--brand-gradient-soft);
  color: var(--accent);
  border: 1px solid rgba(0, 168, 240, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 168, 240, 0.15);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 700;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.service-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
}

.s1::before { background: linear-gradient(90deg, #0078d4, #00a896); }
.s2::before { background: linear-gradient(90deg, #3b82f6, #06b6d4); }
.s3::before { background: linear-gradient(90deg, #22c55e, #16a34a); }
.s4::before { background: linear-gradient(90deg, #f97316, #fb7185); }
.s5::before { background: linear-gradient(90deg, #a855f7, #6366f1); }
.s6::before { background: linear-gradient(90deg, #0ea5e9, #22c55e); }
.s7::before { background: linear-gradient(90deg, #ef4444, #f59e0b); }
.s8::before { background: linear-gradient(90deg, #111827, #2563eb); }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.why-card {
  background: linear-gradient(165deg, #fff, #f8fbff);
  border: 1px solid rgba(0, 168, 240, 0.12);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(7, 18, 32, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.why-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.process-title {
  margin: 0 0 20px;
  font-size: 18px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.process-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Cards & grid */
.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 22px rgba(10, 31, 68, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Projects */
.project-card {
  padding: 0;
  overflow: hidden;
}

.project-body {
  padding: 18px 20px 20px;
}

.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.04);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.about p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.about-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.about-box {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-box-item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.about-box-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.about-box h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.about-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Partners */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(10, 31, 68, 0.05);
  padding: 16px;
  transition: transform var(--transition);
}

.partner-logo:hover {
  transform: translateY(-2px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: all var(--transition);
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

/* Client slider */
.client-slider {
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.client-slider::before,
.client-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.client-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.client-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.client-track {
  display: flex;
  gap: 12px;
  padding: 16px;
  width: max-content;
  animation: slideClients 30s linear infinite;
}

.client-slider:hover .client-track {
  animation-play-state: paused;
}

.client-pill {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

@keyframes slideClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* CTA */
.cta {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 10% 50%, rgba(0, 168, 240, 0.35), transparent 60%),
    radial-gradient(500px 280px at 90% 40%, rgba(0, 212, 170, 0.25), transparent 55%),
    linear-gradient(135deg, #071220 0%, #0e2848 40%, #0070a8 100%);
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.cta h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta p {
  margin: 0;
  opacity: 0.88;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.contact-card {
  text-align: center;
  padding: 20px 16px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(0, 120, 212, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  line-height: 1.6;
}

.form {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form h3 {
  margin: 0 0 6px;
}

.form-intro {
  margin: 0 0 8px;
  font-size: 14px;
}

label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.label-optional {
  font-weight: 500;
  opacity: 0.75;
}

input,
textarea,
select {
  margin-top: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-msg {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.form-msg.success {
  color: #059669;
}

.form-msg.error {
  color: #dc2626;
}

.map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.small {
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #071220 0%, #0a1528 100%);
  color: #c8ddf5;
  border-top: 2px solid rgba(0, 168, 240, 0.25);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 168, 240, 0.25);
  flex-shrink: 0;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.footer-brand-title .brand-nexa {
  color: #fff;
}

.footer-brand-title .brand-core {
  color: var(--accent-bright);
}

.footer-brand-sub {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8c4e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 15px;
  color: #fff;
}

.footer-desc {
  margin: 10px 0 16px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}

.footer .muted {
  color: #a8c4e8;
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: #d8e6f8;
  font-size: 13px;
  opacity: 0.9;
}

.footer-links-col a:hover {
  color: #fff;
  opacity: 1;
}

.footer-text {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Floating actions — chat + WhatsApp */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* Chat widget */
.chat-widget {
  position: relative;
  right: auto;
  bottom: auto;
  font-family: Montserrat, system-ui, sans-serif;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow:
    0 12px 32px rgba(0, 168, 240, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: chatPulse 2.5s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% {
    box-shadow:
      0 12px 32px rgba(0, 168, 240, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 12px 32px rgba(0, 168, 240, 0.45),
      0 0 0 10px rgba(0, 168, 240, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.chat-widget.open .chat-launcher {
  animation: none;
}

.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 168, 240, 0.42);
}

.chat-launcher svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 168, 240, 0.18);
  box-shadow: 0 24px 60px rgba(7, 18, 32, 0.22);
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #071220 0%, #0e2848 55%, #0070a8 100%);
  color: #fff;
}

.chat-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-header-text strong {
  display: block;
  font-size: 14px;
  font-family: var(--font-display);
}

.chat-header-text span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.88;
}

.chat-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(0, 168, 240, 0.06), transparent 60%),
    #f8fbff;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  max-width: 92%;
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-bubble {
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
}

.chat-msg-bot .chat-bubble {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
  box-shadow: 0 4px 14px rgba(7, 18, 32, 0.05);
}

.chat-msg-user .chat-bubble {
  background: var(--brand-gradient);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 168, 240, 0.22);
}

.chat-msg-chips,
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-msg-chips {
  max-width: 100%;
}

.chat-chip,
.chat-quick-btn {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 240, 0.22);
  background: rgba(0, 168, 240, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.chat-chip:hover,
.chat-quick-btn:hover {
  background: rgba(0, 168, 240, 0.14);
  border-color: rgba(0, 168, 240, 0.35);
}

.chat-quick {
  padding: 0 16px 10px;
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.chat-footer {
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.chat-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.chat-form input {
  flex: 1;
  margin: 0;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.chat-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 168, 240, 0.12);
}

.chat-send {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 168, 240, 0.28);
}

.chat-send svg {
  width: 18px;
  height: 18px;
}

.chat-wa-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 0;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat-wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.42);
}

.chat-wa-btn svg {
  width: 18px;
  height: 18px;
}

.chat-wa-btn[hidden] {
  display: none;
}

/* Reveal animations — only hide when JS is active */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 64px 0 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-title {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 8px;
  }

  .hero-photo-main {
    height: 260px;
    transform: none;
  }

  .hero-photo-float {
    width: 120px;
    height: 88px;
  }

  .hero-photo-a {
    top: 4px;
    right: 8px;
  }

  .hero-photo-b {
    bottom: 140px;
    left: 8px;
  }

  .hero-card {
    position: relative;
    left: 0;
    right: 0;
    margin-top: -48px;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .topbar-hide-sm {
    display: none;
  }

  .topbar-hours {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .services-grid,
  .why-grid,
  .process-steps,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .chat-launcher span {
    display: inline;
  }

  .float-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .chat-panel {
    width: min(360px, calc(100vw - 24px));
    height: min(480px, calc(100vh - 120px));
  }

  .logo {
    height: 44px;
    max-width: 160px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .brand-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .nav {
    gap: 14px;
  }

  .nav a:not(.btn) {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .client-track {
    animation: none;
  }

  .type-caret {
    animation: none;
  }

  .hero-orb,
  .hero-photo-float,
  .pill-dot,
  .btn-shine::after,
  .chat-launcher {
    animation: none;
  }
}
