/* ============================================
   Arwen Data — shared stylesheet
   ============================================ */

:root {
  --navy: #0a1f44;
  --navy-deep: #061633;
  --accent: #1ea7ff;
  --accent-dark: #0b86d6;

  /* n8n chat widget — brand to the Arwen palette */
  --chat--color-primary:               #1ea7ff;
  --chat--color-primary-shade-50:      #0b86d6;
  --chat--color-primary-shade-100:     #0b86d6;
  --chat--color-secondary:             #0a1f44;
  --chat--color-white:                 #ffffff;
  --chat--color-light:                 #f4f7fb;
  --chat--color-dark:                  #0a1f44;
  --chat--toggle--background:          #1ea7ff;
  --chat--toggle--hover--background:   #0b86d6;
  --chat--toggle--active--background:  #0b86d6;
  --chat--toggle--color:               #ffffff;
  --chat--header--background:          #0a1f44;
  --chat--header--color:               #ffffff;
  --chat--message--bot--background:    #f4f7fb;
  --chat--message--bot--color:         #0a1f44;
  --chat--message--user--background:   #1ea7ff;
  --chat--message--user--color:        #ffffff;
  --chat--border-radius:               12px;
  --chat--font-family:                 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --chat--get-started--background:     #1ea7ff;
  --chat--get-started--color:          #ffffff;
  --chat--get-started--hover--background: #0b86d6;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-dark: #0a1f44;
  --text: #0a1f44;
  --text-soft: #4a5b78;
  --text-muted: #8a96ac;
  --line: #e3e8f0;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 31, 68, 0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --max: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section--soft { background: var(--bg-soft); }
.section--dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow { color: var(--accent); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 167, 255, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* ============================================
   Top navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.nav__brand img {
  height: 38px;
  width: auto;
  transition: filter .3s var(--ease);
}
.nav__brand-mark--light { display: inline-block; }
.nav__brand-mark--dark  { display: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__menu a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 26px;
  margin: 5px auto;
  background: var(--white);
  transition: all .3s var(--ease);
}

/* Solid (scrolled) state, also used on inner pages with no hero video */
.nav.is-solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(8px);
  box-shadow: 0 1px 0 var(--line), 0 6px 22px rgba(10,31,68,0.06);
  height: 72px;
}
.nav.is-solid .nav__brand { color: var(--navy); }
.nav.is-solid .nav__brand-mark--light { display: none; }
.nav.is-solid .nav__brand-mark--dark  { display: inline-block; }
.nav.is-solid .nav__menu a { color: var(--navy); }
.nav.is-solid .nav__menu a:hover,
.nav.is-solid .nav__menu a.is-active { color: var(--accent-dark); }
.nav.is-solid .nav__toggle span { background: var(--navy); }

.nav--inverted { background: rgba(255,255,255,0.96); backdrop-filter: saturate(160%) blur(8px); box-shadow: 0 1px 0 var(--line); }
.nav--inverted .nav__brand { color: var(--navy); }
.nav--inverted .nav__brand-mark--light { display: none; }
.nav--inverted .nav__brand-mark--dark  { display: inline-block; }
.nav--inverted .nav__menu a { color: var(--navy); }
.nav--inverted .nav__toggle span { background: var(--navy); }

/* ============================================
   Hero (homepage with video)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__bg,
.hero__bg video,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6,22,51,0.78) 0%, rgba(6,22,51,0.55) 50%, rgba(10,31,68,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 28px 100px;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title {
  color: var(--white);
  max-width: 880px;
  margin: 0 0 24px;
  font-weight: 800;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, #7ed3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.5);
  margin: 10px auto 0;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ============================================
   Inner page hero (no video)
   ============================================ */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 90px;
  background:
    linear-gradient(120deg, rgba(6,22,51,0.85) 0%, rgba(10,31,68,0.65) 100%),
    var(--navy-deep) center/cover no-repeat;
  color: var(--white);
  text-align: center;
}
.page-hero[data-bg] { background-blend-mode: normal; }
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   Two-column feature row (alternating)
   ============================================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature + .feature { margin-top: 110px; }
.feature--reverse .feature__media { order: 2; }

.feature__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature__body h2 { margin-bottom: 18px; }
.feature__body p  { font-size: 1.05rem; }

/* ============================================
   Cards grid (values, services, openings)
   ============================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-weight: 700;
}
.card h3 { margin-bottom: 10px; }
.card p  { margin: 0; }

.card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.card--dark:hover { border-color: var(--accent); }

/* Job opening cards */
.opening {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.opening__loc {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.opening__title { margin: 0; }
.opening p { flex: 1; }
.opening .btn { align-self: flex-start; }

/* ============================================
   Stats
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat__num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat__label {
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ============================================
   Partner logos — infinite marquee
   ============================================ */

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px 80px;
}
.logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

.logos-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logos-track img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.logos-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}
@media (max-width: 760px) {
  .logos-track { gap: 60px; }
  .logos-track img { height: 48px; }
}

/* ============================================
   CTA banner
   ============================================ */

.cta-banner {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 30px; }

/* ============================================
   Contact form
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-info h3 { margin-top: 0; }
.contact-info ul { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: var(--text-soft);
}
.contact-info li strong {
  color: var(--navy);
  display: block;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form__field { margin-bottom: 18px; }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 167, 255, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 1.05rem;
}
.footer__brand img { height: 42px; width: auto; }
.footer h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--accent); }
.footer p { color: rgba(255,255,255,0.7); font-size: .92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   Reveal-on-scroll animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 960px) {
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__media { order: 0; }
  .feature + .feature { margin-top: 70px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 30px rgba(10,31,68,0.12);
    padding: 14px 18px 24px;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__menu a {
    color: var(--navy) !important;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__menu li:last-child a { border-bottom: 0; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .logos { gap: 36px 50px; }
  .logos img { height: 48px; }
  .hero__content { padding-top: 120px; padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
}

/* Make the n8n chat "New Conversation" button impossible to miss */
.chat-get-started-footer button,
.chat-get-started-footer [role="button"],
.chat-get-started-footer .chat-input-send-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #1ea7ff !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 12px 22px !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  cursor: pointer !important;
  margin: 14px auto !important;
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(30,167,255,0.35);
}
.chat-get-started-footer button:hover {
  background: #0b86d6 !important;
}

/* ---- n8n chat — stronger contrast & polish ---- */

/* The panel itself: real shadow + subtle border so it floats above the page */
.chat-window-wrapper .chat-window {
  border: 1px solid rgba(10, 31, 68, 0.12) !important;
  box-shadow:
    0 24px 48px rgba(10, 31, 68, 0.18),
    0 4px 12px rgba(10, 31, 68, 0.08) !important;
  overflow: hidden;
}

/* Header → body divider */
.chat-window-wrapper .chat-header {
  border-bottom: 1px solid rgba(10, 31, 68, 0.18) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}

/* Body → footer divider */
.chat-window-wrapper .chat-footer {
  border-top: 1px solid rgba(10, 31, 68, 0.10) !important;
  background: #ffffff !important;
}

/* Bot bubble — clearer edges, soft border */
.chat-window-wrapper .chat-message-from-bot,
.chat-window-wrapper .chat-message.chat-message-from-bot {
  border: 1px solid rgba(10, 31, 68, 0.08) !important;
  box-shadow: 0 1px 2px rgba(10, 31, 68, 0.04);
}

/* User bubble — keep cerulean fill but tighten the edge */
.chat-window-wrapper .chat-message-from-user,
.chat-window-wrapper .chat-message.chat-message-from-user {
  box-shadow: 0 2px 6px rgba(30, 167, 255, 0.25);
}

/* The input textarea — visible border instead of edge-of-panel */
.chat-window-wrapper .chat-inputs-controls,
.chat-window-wrapper .chat-input,
.chat-window-wrapper textarea {
  border: 1px solid rgba(10, 31, 68, 0.18) !important;
  border-radius: 10px !important;
  background: #f4f7fb !important;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.chat-window-wrapper textarea:focus,
.chat-window-wrapper .chat-input:focus-within {
  border-color: #1ea7ff !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(30, 167, 255, 0.15) !important;
  outline: none !important;
}

/* Send button — match site CTA style */
.chat-window-wrapper .chat-input-send-button {
  background: #1ea7ff !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  transition: background .2s ease, transform .2s ease;
}
.chat-window-wrapper .chat-input-send-button:hover {
  background: #0b86d6 !important;
  transform: translateY(-1px);
}

/* Toggle bubble — bigger shadow + subtle ring on hover */
.chat-window-wrapper .chat-window-toggle {
  box-shadow:
    0 12px 28px rgba(30, 167, 255, 0.45),
    0 4px 10px rgba(10, 31, 68, 0.18) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.chat-window-wrapper .chat-window-toggle:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 16px 32px rgba(30, 167, 255, 0.55),
    0 6px 14px rgba(10, 31, 68, 0.22) !important;
}
