@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:wght@100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  /* Color Palette matching original site */
  --bg-primary: #000a15;
  --bg-secondary: #0a141e;
  --bg-card: rgba(10, 20, 30, 0.6);
  --accent-blue-light: #77c4ff;
  --accent-blue-mid: #30a6ff;
  --accent-blue-dark: #006dd0;
  --accent-royal: #0056a8;
  --text-primary: #ffffff;
  --text-secondary: #b7deff;
  --text-muted: rgba(183, 222, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(48, 166, 255, 0.4);
  
  /* Layout and spacing */
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Background Effects */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-primary);
}

/* Neon glow blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.blob-1 {
  top: -10%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-blue-mid) 0%, transparent 70%);
  animation: float-blob-1 25s infinite alternate ease-in-out;
}

.blob-2 {
  bottom: 10%;
  right: 10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-blue-dark) 0%, transparent 70%);
  animation: float-blob-2 20s infinite alternate ease-in-out;
}

.blob-3 {
  top: 40%;
  left: -5%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--accent-royal) 0%, transparent 70%);
  animation: float-blob-1 30s infinite alternate-reverse ease-in-out;
}

/* Glowing grid lines */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  /* Vignette / mask that fades grid at edges */
  mask-image: radial-gradient(circle 60vw at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 60vw at 50% 50%, black 30%, transparent 100%);
}

/* CSS cursor-spotlight effect container */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(48, 166, 255, 0.03), transparent 80%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

p {
  line-height: 1.6;
}

.playfair-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(0, 10, 21, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(0, 10, 21, 0.85);
  border-bottom: 1px solid rgba(48, 166, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
  font-family: 'Host Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.logo img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text span {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-blue-mid);
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-header {
  text-decoration: none;
  background: rgba(48, 166, 255, 0.1);
  border: 1px solid rgba(48, 166, 255, 0.3);
  color: var(--accent-blue-light);
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-header:hover {
  background: var(--accent-blue-mid);
  color: var(--bg-primary);
  border-color: var(--accent-blue-mid);
  box-shadow: 0 0 15px rgba(48, 166, 255, 0.4);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* Sub-capsule headers for sections */
.section-capsule {
  display: inline-block;
  background: rgba(48, 166, 255, 0.08);
  border: 1px solid rgba(48, 166, 255, 0.2);
  color: var(--accent-blue-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

/* Scroll reveal initial classes */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-capsule span {
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue-mid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-blue-mid);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-title .italic-glow {
  color: var(--accent-blue-light);
  text-shadow: 0 0 30px rgba(119, 196, 255, 0.2);
}

.hero-desc {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Hero CTA Button with interactive gradient and glow */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-blue-mid), var(--accent-blue-dark));
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(48, 166, 255, 0.25);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-blue-light), var(--accent-blue-mid));
  border-radius: 9999px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(48, 166, 255, 0.45);
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta svg {
  transition: transform 0.3s ease;
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards (Glassmorphism + Border Glow) */
.glow-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(350px circle at var(--card-mouse-x, 0px) var(--card-mouse-y, 0px), rgba(48, 166, 255, 0.08), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow-card:hover {
  border-color: rgba(48, 166, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(48, 166, 255, 0.05);
  transform: translateY(-4px);
}

.glow-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(48, 166, 255, 0.08);
  border: 1px solid rgba(48, 166, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-blue-mid);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Card Visual Containers (Bottom part of cards for micro-animations) */
.card-visual {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Console Simulation */
.console-box {
  padding: 12px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.console-header {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.console-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.console-dot.red { background-color: #ff5f56; }
.console-dot.yellow { background-color: #ffbd2e; }
.console-dot.green { background-color: #27c93f; }

.console-line {
  display: flex;
  justify-content: space-between;
  opacity: 0.8;
}

.console-line.error {
  color: #ff5f56;
}

.console-line.success {
  color: #27c93f;
  animation: text-pulse 1s;
}

/* Chat Simulation inside cards */
.mini-chat-box {
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.mini-chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: slide-up-bubble 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-chat-bubble.user {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.mini-chat-bubble.agent {
  background: rgba(48, 166, 255, 0.15);
  border: 1px solid rgba(48, 166, 255, 0.2);
  color: var(--accent-blue-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 3px;
  padding: 6px 12px;
  align-self: flex-start;
}

.typing-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-blue-mid);
  border-radius: 50%;
  animation: bounce-dot 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* Node flow chart simulator */
.node-flow-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
}

.flow-node {
  background: rgba(10, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.flow-node.active {
  border-color: var(--accent-blue-mid);
  box-shadow: 0 0 10px rgba(48, 166, 255, 0.2);
}

.flow-node svg {
  width: 14px;
  height: 14px;
}

.flow-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.flow-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1.5;
}

.flow-pulse {
  fill: none;
  stroke: var(--accent-blue-mid);
  stroke-width: 1.5;
  stroke-dasharray: 6 30;
  stroke-dashoffset: 100;
  animation: path-pulse 3s infinite linear;
}

/* Services Section */
.services-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.services-intro p {
  color: var(--text-muted);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.service-row.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.service-graphic {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  height: 380px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-details p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 60px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.step-num {
  font-size: 54px;
  font-weight: 800;
  color: rgba(48, 166, 255, 0.1);
  font-family: 'Host Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.process-step:hover .step-num {
  color: rgba(48, 166, 255, 0.3);
  transform: translateY(-4px);
}

.step-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* CTA / Testimonial / Trust Combo Section */
.trust-banner {
  background: radial-gradient(100vw circle at 50% 50%, rgba(48, 166, 255, 0.08), transparent 70%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
  text-align: center;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}

.stat-item h4 {
  font-size: 40px;
  color: var(--accent-blue-light);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact / Form Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-info-list svg {
  color: var(--accent-blue-mid);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue-mid);
  box-shadow: 0 0 10px rgba(48, 166, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  background-color: rgba(0, 5, 12, 0.8);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h5 {
  color: var(--accent-blue-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Custom OpenAI ChatKit Widget simulation at bottom-right */
.chatkit-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-blue-mid);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(48, 166, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.chatkit-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(48, 166, 255, 0.6);
}

.chatkit-bubble svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.chatkit-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 520px;
  background: var(--bg-secondary);
  border: 1px solid rgba(48, 166, 255, 0.3);
  border-radius: 16px;
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatkit-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatkit-header {
  background: linear-gradient(135deg, var(--accent-blue-dark), var(--bg-secondary));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

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

.chatkit-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatkit-avatar svg {
  width: 18px;
  height: 18px;
  color: white;
}

.chatkit-title h5 {
  font-size: 14px;
  font-weight: 700;
}

.chatkit-title span {
  font-size: 11px;
  color: var(--accent-blue-light);
}

.chatkit-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
}

.chatkit-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg.assistant {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 2px;
  color: var(--text-primary);
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--accent-blue-mid);
  color: var(--bg-primary);
  border-bottom-right-radius: 2px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-msg-time {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.chatkit-options {
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.1);
}

.chatkit-option-btn {
  background: rgba(48, 166, 255, 0.1);
  border: 1px solid rgba(48, 166, 255, 0.25);
  color: var(--accent-blue-light);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chatkit-option-btn:hover {
  background: var(--accent-blue-mid);
  color: var(--bg-primary);
  border-color: var(--accent-blue-mid);
}

.chatkit-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.chatkit-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
}

.chatkit-send {
  background: var(--accent-blue-mid);
  border: none;
  color: var(--bg-primary);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10vw, 5vh) scale(1.1); }
  100% { transform: translate(-5vw, -10vh) scale(0.9); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10vw, -10vh) scale(0.95); }
  100% { transform: translate(5vw, 5vh) scale(1.05); }
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(48, 166, 255, 0.5); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(48, 166, 255, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(48, 166, 255, 0); }
}

@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes slide-up-bubble {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-pulse {
  0% { background: rgba(39, 201, 63, 0.2); }
  100% { background: transparent; }
}

@keyframes path-pulse {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

/* Breakpoints & Responsive Styles */

/* TABLET VIEW */
@media (max-width: 1199.98px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-row.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-graphic {
    order: -1;
    height: 320px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* MOBILE VIEW */
@media (max-width: 809.98px) {
  :root {
    --header-height: 70px;
  }
  
  .nav-container {
    padding: 0 16px;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 10, 21, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    justify-content: flex-start;
    gap: 40px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  
  nav.open {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }
  
  .nav-links a {
    font-size: 18px;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Hamburguer transitions */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .section-container {
    padding: 60px 16px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .chatkit-window {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
    bottom: 90px;
  }
}
