/* ==========================================================================
   SYNTHORA SOFTWARE - CORPORATE DESIGN SYSTEM
   Inspired by Apple.com and Professional Enterprise Services
   ========================================================================== */

/* --- Fonts & Baseline Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* --- Color Palette --- */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #ffffff;
  
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --text-muted: #86868b;
  
  --accent-blue: #0071e3;
  --accent-blue-hover: #147ce5;
  --border-subtle: rgba(0, 0, 0, 0.08);
  
  /* --- Layout & Spacing --- */
  --header-height: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  
  color-scheme: light;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Reset for Lenis Smooth Scroll to prevent feedback jitter */
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #d2d2d7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #acacb0;
}

/* --- Structural Utility Classes --- */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ==========================================================================
   GLOBAL NAVIGATION BAR — Premium Redesign
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Scrolled state — deeper frost */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* --- Brand Lockup --- */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Real logo image — navbar */
.brand-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer variant — invert to show white on dark background */
.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

/* --- Menu Links --- */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: #3a3a3c;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}

.nav-link:hover {
  color: #000000;
  background: rgba(0,0,0,0.04);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* --- Nav Actions --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Nav CTA Pill Button --- */
.btn-nav-pill {
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 980px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 113, 227, 0.22);
  border: none;
}

.btn-nav-pill:hover {
  background: #005ec4;
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.36);
  transform: translateY(-1px);
}

.btn-nav-pill:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.20);
}

/* --- Hamburger --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
  padding: 2px 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #1d1d1f;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state — X icon */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
    overflow: hidden;
    border-bottom: none;
    transition: height 0.35s cubic-bezier(0.25,1,0.5,1);
    justify-content: flex-start;
  }

  .nav-menu.is-open {
    height: auto;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  }

  .nav-link {
    padding: 12px 4px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: block;
    width: 100%;
  }

  .nav-link::after { display: none; }
}



/* ==========================================================================
   BUTTONS (Understated Solid Pills)
   ========================================================================== */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--accent-blue);
  color: #ffffff;
  border-radius: 980px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-pill-primary:hover {
  background-color: var(--accent-blue-hover);
}

.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 980px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-pill-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.link-arrow {
  font-size: 16px;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link-arrow:hover {
  text-decoration: underline;
}

.link-arrow:hover .arrow {
  transform: translateX(3px);
}

.arrow {
  transition: transform 0.2s ease;
}

/* ==========================================================================
   HERO SECTION — Full Redesign (Vercel / Linear Grade)
   ========================================================================== */

.hero {
  position: relative;
  background: transparent;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: visible;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 40px;
    align-items: center;
  }
}

/* Radial spotlight that illuminates the hero independently */
.hero::before {
  content: '';
  pointer-events: none;
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 30%,
    rgba(0, 113, 227, 0.07) 0%,
    rgba(90, 156, 239, 0.04) 40%,
    transparent 70%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52fr 48fr;
  align-items: center;
  gap: 48px;
}

/* ── Left column: all text ── */
.hero-text-wrapper {
  text-align: left;
}

/* ── Eyebrow badge — pill with solid accent slab ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 980px;
  margin-bottom: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #ffffff;
  background: var(--accent-blue);
  padding: 5px 12px;
  flex-shrink: 0;
}

.hero-badge-desc {
  font-size: 12px;
  font-weight: 500;
  color: #3a3a3c;
  padding: 5px 10px 5px 10px;
}

.hero-badge-arrow {
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 700;
  padding-right: 13px;
  line-height: 1;
}

/* ── Headline ── */
.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.text-glow-gradient {
  background: linear-gradient(135deg, #0071e3 0%, #34aadc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

@media (max-width: 1200px) { .hero-title { font-size: 60px; } }
@media (max-width: 1000px) { .hero-title { font-size: 50px; } }
@media (max-width: 700px)  { .hero-title { font-size: 40px; } }
@media (max-width: 480px)  { .hero-title { font-size: 34px; } }

/* ── Description ── */
.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 28px;
}

@media (max-width: 768px) { .hero-desc { font-size: 15px; max-width: 100%; } }

/* ── Service tag pills ── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 34px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  color: #3a3a3c;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 5px 10px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-tag:hover {
  background: rgba(0,113,227,0.06);
  border-color: rgba(0,113,227,0.18);
  color: var(--accent-blue);
}

/* ── CTA row ── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

@media (max-width: 400px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* Slightly larger primary CTA in hero */
.hero-cta .btn-pill-primary {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(0,113,227,0.28);
}

.hero-cta .btn-pill-primary:hover {
  box-shadow: 0 6px 30px rgba(0,113,227,0.42);
  transform: translateY(-2px);
}

.hero-cta .btn-pill-secondary {
  padding: 13px 22px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-cta .btn-pill-secondary .cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.hero-cta .btn-pill-secondary:hover .cta-arrow {
  transform: translateX(5px);
}

/* ── Trust bar ── */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.10);
  flex-shrink: 0;
}

/* ── Right column: Device Visual ── */
.hero-visual-frame {
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
}

/* Blue halo glow behind device */
.hero-visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 40%,
    rgba(0,113,227,0.13) 0%,
    transparent 68%);
  filter: blur(36px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Device browser chrome — multi-layer shadows for depth */
.hero-device-wrapper {
  position: relative;
  z-index: 2;
  background: #ededf0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 14px 10px 10px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.05),
    0 16px 48px rgba(0,0,0,0.09),
    0 40px 90px rgba(0,0,0,0.07);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-device-wrapper:hover {
  transform: translateY(-10px) perspective(1200px) rotateX(1.5deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(0,0,0,0.04),
    0 8px 20px rgba(0,0,0,0.07),
    0 28px 70px rgba(0,0,0,0.12),
    0 60px 120px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero-device-wrapper {
    padding: 8px 6px 6px;
    border-radius: 12px;
  }
  .hero-device-wrapper:hover {
    transform: none;
  }
  .mockup-header-bar {
    margin-bottom: 6px;
    padding: 0 2px;
  }
  .mockup-dot {
    width: 6px;
    height: 6px;
  }
}

/* macOS-style traffic lights */
.mockup-header-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  margin-bottom: 10px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.14); }
.mockup-dot:nth-child(2) { background: #febc2e; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }
.mockup-dot:nth-child(3) { background: #28c840; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }

.hero-real-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

/* ── Floating metric chips ── */
.floating-widget {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 10px 28px rgba(0,0,0,0.08);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.floating-widget:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.07),
    0 20px 50px rgba(0,0,0,0.10);
  border-color: rgba(0,113,227,0.15);
}

.widget-left  { bottom: -10px; left: -22px; }
.widget-right { top: 12%;      right: -22px; }

@media (max-width: 1100px) {
  .widget-left  { left: 4px;   bottom: -18px; }
  .widget-right { right: 4px;  top:    -18px; }
}
@media (max-width: 960px) {
  .widget-left  { left: 0px;   bottom: -10px; }
  .widget-right { right: 0px;  top:    -10px; }
}
@media (max-width: 860px) {
  .widget-left  { left: 0px;   bottom: -12px; }
  .widget-right { right: 0px;  top:    -12px; }
}
@media (max-width: 560px) { .floating-widget { display: none; } }

.widget-icon-container {
  width: 32px;
  height: 32px;
  background: rgba(0,113,227,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.widget-icon-container.green-icon {
  background: rgba(40,200,64,0.09);
  color: #28c840;
}

.widget-text-col { display: flex; flex-direction: column; gap: 2px; }

.widget-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.widget-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-pulse-dot {
  width: 7px;
  height: 7px;
  background: #28c840;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Responsive: stack on tablet / mobile ── */
@media (max-width: 860px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding-top: 10px;
  }

  .hero-text-wrapper { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-badge        { justify-content: center; }
  
  /* Override GSAP on mobile to prevent missing buttons and offset image */
  .hero-cta a { transform: none !important; opacity: 1 !important; }
  .mobile-hero-image .hero-device-wrapper { transform: none !important; opacity: 1 !important; }
  .mobile-hero-image .floating-widget { transform: none !important; opacity: 1 !important; }
  .hero-tags         { justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
  .hero-cta          { justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }
  .hero-trust-bar    { justify-content: center; margin-top: 0px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08); width: 100%; }
  .hero-desc         { margin-left: auto; margin-right: auto; max-width: 90%; }
  
  .desktop-hero-image { display: none !important; }
  .mobile-hero-image { display: block; width: 100%; max-width: 460px; margin: 10px auto 20px; overflow: visible; position: relative; }
  .hero-device-wrapper { width: 100%; margin: 0; overflow: hidden; }
}

@media (min-width: 861px) {
  .mobile-hero-image { display: none !important; }
}

/* ==========================================================================
   SERVICE PANEL ROWS
   ========================================================================== */
.showcase-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 80px auto;
}

.showcase-tag {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.showcase-headline {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .showcase-headline {
    font-size: 28px;
  }
}

.showcase-subtext {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showcase-panels {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.panel-row:nth-child(even) {
  grid-template-columns: 1.05fr 1fr;
}

.panel-row:nth-child(even) .panel-content-col {
  order: 2;
}

@media (max-width: 860px) {
  .panel-row, .panel-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .panel-row:nth-child(even) .panel-content-col {
    order: 0;
  }
}

.panel-icon-box {
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.panel-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.panel-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Bullet items */
.panel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-feature-bullet {
  color: var(--accent-blue);
  font-size: 15px;
  margin-top: 2px;
  font-weight: bold;
}

.panel-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.panel-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.panel-feature-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Illustrations containers */
.panel-visual-col {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.02);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.panel-visual-inner {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Visual 1: Web Browser Wireframe --- */
.wireframe-container {
  width: 90%;
  height: 80%;
  background-color: #0b0f19;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 24px 16px 16px 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.wireframe-container .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-block;
  position: absolute;
  top: 10px;
}
.wireframe-container .dot:nth-child(1) { left: 10px; }
.wireframe-container .dot:nth-child(2) { left: 18px; }
.wireframe-container .dot:nth-child(3) { left: 26px; }

.browser-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  height: 6px;
  background-color: rgba(255,255,255,0.03);
  border-radius: 3px;
}
.skeleton-line.title { width: 40%; background-color: rgba(0, 113, 227, 0.15); }
.skeleton-line.body { width: 80%; }
.skeleton-line.half { width: 30%; }

/* --- Visual 2: Clean Schema Diagram --- */
.schema-graph-visual {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schema-node {
  background: #1c1c1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: absolute;
  z-index: 2;
}

.schema-node.central {
  background: var(--accent-blue);
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.schema-node:nth-child(2) { top: 15%; left: 10%; }
.schema-node:nth-child(3) { bottom: 15%; right: 10%; }

.schema-connector {
  position: absolute;
  background: rgba(255,255,255,0.06);
  height: 1px;
  z-index: 1;
  transform-origin: left center;
}

.schema-connector.first {
  width: 90px;
  top: 35%;
  left: 25%;
  transform: rotate(-25deg);
}

.schema-connector.second {
  width: 90px;
  bottom: 35%;
  right: 25%;
  transform: rotate(-25deg);
}

/* --- Visual 3: Desktop POS Render Frame --- */
.macbook-showcase-frame {
  width: 90%;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.macbook-inset-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SERVICES GRID (Bento Spec Grid Style)
   ========================================================================== */
.bento-intro {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 50px auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.bento-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  background-color: var(--bg-tertiary);
}

.bento-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bento-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Spans sizing */
.bento-span-2-width { grid-column: span 2; }
.bento-span-3-width { grid-column: span 3; }
.bento-span-2-height { grid-row: span 2; justify-content: space-between; }

.bento-horizontal-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, auto);
  }
  .bento-span-2-width, .bento-span-3-width { grid-column: span 1; }
  .bento-span-2-height { grid-row: span 1; }
}

/* ==========================================================================
   AI ASSISTANT DEMO WIDGET
   ========================================================================== */
.ai-demo-section {
  background: transparent;
}

.demo-wrapper {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
}

@media (max-width: 860px) {
  .demo-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* --- Left controller panel --- */
.demo-scenarios-panel {
  padding: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 860px) {
  .demo-scenarios-panel {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.scenario-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.scenario-panel-title {
  font-size: 18px;
  font-weight: 600;
}

.scenario-badge-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.green { background-color: #10b981; }

.scenarios-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-pill-btn {
  text-align: left;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.scenario-pill-btn:hover {
  background-color: #f5f5f7;
  border-color: rgba(0, 0, 0, 0.08);
}

.scenario-pill-btn.active {
  background-color: rgba(0, 113, 227, 0.05);
  border-color: var(--accent-blue);
}

.scenario-pill-num {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.scenario-pill-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* --- Right Chat panel --- */
.demo-chat-panel {
  display: flex;
  flex-direction: column;
  background-color: rgba(0,0,0,0.15);
}

.chat-header-bar {
  padding: 16px 24px;
  background-color: rgba(255,255,255,0.01);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-agent-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-agent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
}
.chat-agent-dot.active { background-color: var(--accent-blue); }

.chat-agent-name {
  font-size: 13px;
  font-weight: 600;
}

.chat-agent-sub {
  font-size: 9px;
  color: var(--text-muted);
}

.btn-chat-clear {
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-chat-clear:hover {
  color: var(--text-primary);
}

.chat-message-board {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Chat bubble aesthetics */
.chat-msg {
  max-width: 85%;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  animation: message-reveal 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes message-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.user {
  background-color: var(--accent-blue);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg.agent {
  background-color: #e8e8ed;
  color: #1d1d1f;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

/* Typing row */
.chat-typing-row {
  padding: 8px 20px;
  align-self: flex-start;
}

.chat-typing-bubble {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  gap: 3px;
}

.chat-typing-bubble .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-dot-pulse 1.4s infinite ease-in-out both;
}
.chat-typing-bubble .dot:nth-child(1) { animation-delay: -0.32s; }
.chat-typing-bubble .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-dot-pulse {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.chat-message-form {
  padding: 12px 18px;
  background-color: #ffffff;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-message-input {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12.5px;
}

.chat-message-send {
  background-color: var(--accent-blue);
  color: #ffffff;
  padding: 0 14px;
  font-size: 11px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.chat-message-send:hover {
  background-color: var(--accent-blue-hover);
}

/* Logging list */
.chat-log-panel {
  padding: 20px 24px;
  background-color: rgba(0,0,0,0.08);
  border-top: 1px solid rgba(255,255,255,0.02);
}

.log-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.log-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-step-empty {
  font-size: 11px;
  color: var(--text-muted);
}

.log-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.log-step-checkbox {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: inline-block;
  position: relative;
}

.log-step-item.checked {
  color: var(--text-primary);
}

.log-step-item.checked .log-step-checkbox {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* ==========================================================================
   FAQ SECTION (Clean Accordion Styling)
   ========================================================================== */
.faq-section {
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.faq-accordion-wrapper {
  max-width: 680px;
  margin: 50px auto 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-accordion-trigger:hover {
  color: var(--accent-blue);
}

.faq-icon {
  font-size: 18px;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

.faq-accordion-content {
  height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-accordion-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 24px;
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: rgba(22, 22, 23, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.toast.active {
  transform: translateX(0);
}

.toast-icon {
  color: var(--accent-blue);
  display: flex;
  align-items: center;
}

.toast-content h4 {
  font-size: 13px;
  font-weight: 600;
}

.toast-content p {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ==========================================================================
   MODAL SHEET DIALOG drawer
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

@media (max-width: 560px) {
  .modal-card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --- Form --- */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-input.error { border-color: #ff3b30; }
.form-input.success { border-color: #34c759; }

.form-error-msg {
  color: #ff3b30;
  font-size: 10px;
  margin-top: 4px;
  display: block;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h3.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 11.5px;
  color: #515154;
}

.footer-link:hover {
  color: #000000;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #515154;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-secondary);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.footer-legal-link {
  font-size: 11px;
  color: var(--text-secondary);
}

.footer-legal-link:hover {
  color: #000000;
}

/* ==========================================================================
   LIVE SITE SECTION ALIGNMENT STYLES
   ========================================================================== */

/* --- Expertise Section Card Grid --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }
  .grid-4 > .glass-card {
    grid-column: span 1 !important;
    width: 100%;
    max-width: 440px;
  }
}

.glass-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.glass-card .icon-box {
  color: var(--accent-blue);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 50%;
  margin-bottom: 8px;
}

.glass-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.glass-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Philosophy (About) Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.about-feature-item svg {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 480px) {
  .about-visual {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.stat-box:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.stat-box .counter {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Promise (Commitment) Section --- */
.commitment-card {
  max-width: 800px;
  margin: 40px auto 0 auto;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.commitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), #00d4ff);
}

.commitment-icon {
  color: var(--accent-blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.commitment-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
}

@media (max-width: 768px) {
  .commitment-quote {
    font-size: 18px;
  }
}

.commitment-author {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
}

/* ==========================================================================
   CONTACT SECTION — Premium Two-Column Redesign
   ========================================================================== */
.contact-section {
  position: relative;
}

.contact-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 48px auto 0;
}

@media (max-width: 860px) {
  .contact-section-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- Left panel: copy + info --- */
.contact-info-panel {
  padding-top: 8px;
}

.contact-info-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-info-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-benefit-icon {
  width: 22px;
  height: 22px;
  background: rgba(0,113,227,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-benefit-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-benefit-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-detail-row svg {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-detail-row a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.contact-detail-row a:hover {
  color: var(--accent-blue);
}

/* --- Right panel: the form card --- */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 16px rgba(0,0,0,0.05),
    0 16px 48px rgba(0,0,0,0.06);
}

@media (max-width: 560px) {
  .contact-form-card { padding: 24px; border-radius: 16px; }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #3a3a3c;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  background: #f8f8fa;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #aeaeb2;
  font-size: 13px;
}

.form-input:focus {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.10);
}

.form-input.error {
  border-color: #ff3b30;
  box-shadow: 0 0 0 3px rgba(255,59,48,0.10);
}

.form-input.success { border-color: #34c759; }

select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aeaeb2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--text-primary);
  background-color: #f8f8fa;
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.btn-submit {
  width: 100%;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #0071e3 0%, #34aadc 100%);
  color: #ffffff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.28);
  margin-top: 8px;
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 113, 227, 0.36);
}

.btn-submit:active {
  transform: translateY(0);
  opacity: 1;
}

.btn-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* ==========================================================================
   AMBIENT ANIMATED MESH BACKGROUND STYLES
   ========================================================================== */
.background-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background-color: var(--bg-primary);
  pointer-events: none;
}

.background-ambient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 24px 24px repeat,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%),
    url('/assets/background.png') no-repeat center center/cover;
  z-index: 5;
  pointer-events: none;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  will-change: transform;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.12) 0%, rgba(0, 113, 227, 0) 70%);
  top: -10%;
  left: -10%;
  animation: blob-float-1 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(161, 98, 247, 0.08) 0%, rgba(161, 98, 247, 0) 70%);
  bottom: -20%;
  right: -10%;
  animation: blob-float-2 30s infinite alternate ease-in-out;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0) 70%);
  top: 40%;
  left: 50%;
  animation: blob-float-3 20s infinite alternate ease-in-out;
}

@keyframes blob-float-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(80px, 50px, 0) scale(1.15);
  }
}

@keyframes blob-float-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-100px, -60px, 0) scale(0.9);
  }
}

@keyframes blob-float-3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(60px, -80px, 0) scale(1.2);
  }
}

/* ==========================================================================
   PRICING PAGE - Apple-Grade Styles
   ========================================================================== */
.pricing-hero {
  padding: 120px 0 60px;
  position: relative;
  z-index: 10;
}

.pricing-tabs-section {
  padding: 20px 0 40px;
  position: relative;
  z-index: 10;
}

.pricing-tabs-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px;
  border-radius: 30px;
  max-width: 720px;
  margin: 0 auto;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pricing-tab-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  flex: 1;
  text-align: center;
}

.pricing-tab-btn:hover {
  color: var(--text-primary);
}

.pricing-tab-btn.active {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 32px;
  position: relative;
}

.pricing-card.recommended {
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.05);
}

.badge-recommended {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.card-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-box .currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  align-self: flex-start;
  margin-top: 4px;
}

.price-amt {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-note-inline {
  font-size: 22px;
  color: var(--text-primary);
}

/* Feature List */
.pricing-card-features {
  flex-grow: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 24px;
  margin-bottom: 32px;
}

.feature-list-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.check-svg {
  width: 15px;
  height: 15px;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-svg.stroke-muted {
  color: var(--text-muted);
  opacity: 0.5;
}

.btn-pricing-cta {
  width: 100%;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--text-primary);
  text-align: center;
}

.btn-pricing-cta:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn-pricing-cta.recommended {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
}

.btn-pricing-cta.recommended:hover {
  background: #0062c3;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

/* Cost Calculator */
.pricing-calculator-section {
  position: relative;
  z-index: 10;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.calculator-options-panel {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calculator-group-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.calculator-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.calculator-option-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  display: block;
}

.calculator-option-card:hover {
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.calculator-option-card.active {
  border-color: var(--accent-blue);
  background: rgba(0, 113, 227, 0.02);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.option-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.option-desc {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.calculator-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.calc-checkbox-item:hover {
  border-color: rgba(0, 113, 227, 0.2);
}

.calc-checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  position: relative;
}

.calc-checkbox-item input:checked ~ .checkbox-box {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.checkbox-box::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-checkbox-item input:checked ~ .checkbox-box::after {
  display: block;
}

.checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.opt-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.opt-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Calculator Summary Card */
.calculator-summary-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.summary-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.summary-header p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.summary-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 30px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-price-display .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.summary-price-display .price-value {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-primary);
  line-height: 1;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.breakdown-row span:last-child {
  font-weight: 500;
  color: var(--text-primary);
}

.breakdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 4px 0;
}

.breakdown-row.total {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.breakdown-row.total span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-blue);
}

.summary-footer-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 991px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calculator-summary-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .pricing-tabs-bar {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 8px;
  }
  .pricing-tab-btn {
    flex: 1 1 45%;
    padding: 10px 12px;
    font-size: 13px;
  }
  .calculator-radio-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .calculator-options-panel {
    padding: 24px;
  }
  .calculator-summary-card {
    padding: 24px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .hero-title {
    font-size: 42px !important;
  }
}

/* Pricing Grid Responsive Configurations */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .pricing-grid.four-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid, .pricing-grid.four-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   FLOATING ACTIONS SYSTEM (WhatsApp & AI Solutions Architect chatbot)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-ai-chatbot {
  background: linear-gradient(135deg, #0071e3 0%, #34aadc 100%);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 113, 227, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.icon-whatsapp, .icon-ai {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

/* AI Chatbot Floating Drawer Panel */
.chatbot-floating-panel {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 480px;
  z-index: 1998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.chatbot-floating-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
}

.chatbot-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff url('/assets/synthora-icon.png') no-repeat center/65%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
}

.status-dot.green {
  background-color: #34c759;
}

.profile-text h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.profile-text p {
  font-size: 10.5px;
  color: var(--text-secondary);
  margin: 2px 0 0 0;
  line-height: 1.2;
}

.chatbot-panel-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.chatbot-panel-close:hover {
  color: var(--text-primary);
}

.chatbot-panel-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  scroll-behavior: smooth;
}

.chatbot-panel-quick-actions {
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.4);
}

.quick-action-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.quick-action-pill:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  transform: scale(1.02);
}

.chatbot-panel-input-form {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
}

.chatbot-panel-user-input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  background: #f5f5f7;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s;
}

.chatbot-panel-user-input:focus {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.08);
}

.chatbot-panel-send-btn {
  background: var(--accent-blue);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chatbot-panel-send-btn:hover {
  transform: scale(1.05);
  background: #0066cc;
}

.chatbot-panel-send-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

/* Chat Bubbles within panel */
.chatbot-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  word-wrap: break-word;
}

.chatbot-bubble.agent {
  background-color: #e8e8ed;
  color: #1d1d1f;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot-bubble.user {
  background-color: var(--accent-blue);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Typing bubble */
.chatbot-bubble.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background-color: #8e8e93;
  border-radius: 50%;
  animation: typing-dot 1.2s infinite;
}

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

@keyframes typing-dot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 480px) {
  .chatbot-floating-panel {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 90px;
    height: 420px;
  }
  .floating-actions-container {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   SMART AI CHATBOT ROUTING & VISUAL HIGHLIGHTING SYSTEM
   ========================================================================== */
@keyframes highlight-pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 3px var(--accent-blue), 0 20px 45px rgba(0, 113, 227, 0.2);
    border-color: var(--accent-blue) !important;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 113, 227, 0.4), 0 20px 45px rgba(0, 113, 227, 0.4);
    border-color: var(--accent-blue) !important;
  }
}

.card-highlight-glow {
  animation: highlight-pulse-glow 1.5s ease-in-out infinite;
  z-index: 100;
  position: relative;
  transition: border-color 0.3s ease !important;
}

@keyframes panel-pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.1), 0 20px 50px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 113, 227, 0.2) !important;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 113, 227, 0.2), 0 20px 50px rgba(0, 113, 227, 0.15);
    border-color: var(--accent-blue) !important;
  }
}

.panel-highlight-glow {
  animation: panel-pulse-glow 1.5s ease-in-out infinite;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(0, 113, 227, 0.2) !important;
  transition: border-color 0.3s ease !important;
}



/* ==========================================================================
   INTERACTIVE SOLUTION FINDER
   ========================================================================== */
.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 24px;
  margin-top: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.solution-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-btn {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: 1px solid transparent;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.solution-btn.active {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.solution-icon {
  font-size: 24px;
  line-height: 1;
  padding: 10px;
  background: #f0f4f8;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.solution-btn.active .solution-icon {
  background: var(--accent-blue);
  color: white;
  transform: scale(1.1);
}

.solution-btn-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.solution-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.solution-preview-panel {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-preview-content {
  display: none;
  animation: fadeInRight 0.4s ease forwards;
}

.solution-preview-content.active {
  display: block;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.preview-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent-blue);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.preview-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.preview-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* UI Mockups CSS */
.preview-visual {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 20px;
  min-height: 200px;
  position: relative;
}

.ui-mockup .mockup-header-bar {
  display: flex; gap: 6px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; margin-bottom: 15px;
}
.ui-mockup .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }

.ui-mockup .mockup-body { display: flex; gap: 15px; }
.ui-mockup .mockup-sidebar { width: 25%; display: flex; flex-direction: column; gap: 10px; }
.ui-mockup .mockup-line { height: 8px; background: #f0f0f0; border-radius: 4px; }
.ui-mockup .mockup-main { width: 75%; }
.ui-mockup .mockup-chart { height: 80px; border-bottom: 2px solid #f0f0f0; display: flex; align-items: flex-end; gap: 8px; padding-bottom: 5px; margin-bottom: 15px; }
.ui-mockup .chart-bar { flex: 1; background: var(--accent-blue); border-radius: 4px 4px 0 0; opacity: 0.8; }
.ui-mockup .mockup-cards { display: flex; gap: 10px; }
.ui-mockup .mockup-card { flex: 1; height: 40px; background: #f9f9f9; border-radius: 8px; }

/* AI Automation Mockup */
.ai-mockup { display: flex; align-items: center; justify-content: center; background: #fafafa; }
.ai-nodes { display: flex; align-items: center; gap: 15px; }
.ai-node { padding: 12px 16px; background: white; border-radius: 8px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); }
.ai-node.brain-node { background: var(--accent-blue); color: white; border: none; }
.ai-arrow { color: #ccc; font-weight: bold; }

/* Mobile App Mockup */
.mobile-mockup { display: flex; justify-content: center; background: #f5f5f7; }
.phone-frame { width: 140px; height: 260px; background: #fff; border: 4px solid #333; border-radius: 20px; position: relative; padding: 10px; box-sizing: border-box; }
.phone-notch { width: 40px; height: 12px; background: #333; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border-radius: 0 0 10px 10px; }
.phone-screen { height: 100%; display: flex; flex-direction: column; gap: 10px; padding-top: 15px; }
.phone-header { display: flex; align-items: center; gap: 8px; }
.phone-avatar { width: 24px; height: 24px; background: #eee; border-radius: 50%; }
.phone-line { flex: 1; height: 6px; background: #eee; border-radius: 3px; }
.phone-card { height: 40px; background: #f9f9f9; border-radius: 8px; }
.phone-card.primary { background: var(--accent-blue); opacity: 0.1; }

/* Design Mockup */
.design-mockup { display: flex; align-items: center; justify-content: center; gap: 20px; background: #f5f5f7; }
.design-before, .design-after { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 15px; color: #888; font-size: 12px; font-weight: 600; }
.ugly-button { padding: 12px 24px; background: #ccc; border: 2px solid #999; border-radius: 0; color: #333; font-weight: bold; font-family: serif; }
.glass-button { padding: 12px 24px; background: rgba(0,113,227,0.1); border: 1px solid rgba(0,113,227,0.2); border-radius: 20px; color: var(--accent-blue); font-weight: bold; box-shadow: 0 4px 12px rgba(0,113,227,0.1); backdrop-filter: blur(10px); }

@media (max-width: 860px) {
  .solution-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .solution-preview-panel {
    padding: 24px 16px;
  }
  
  .solution-btn {
    padding: 16px;
    gap: 12px;
  }

  .ai-nodes {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ui-mockup .mockup-sidebar {
    display: none; /* Hide sidebar on mobile to save space */
  }
  
  .ui-mockup .mockup-main {
    width: 100%;
  }

  .design-mockup {
    flex-direction: column;
    gap: 10px;
  }
}
