/* World Web App — design system */
:root,
[data-theme="light"] {
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --text: #0f172a;
  --text-muted: #475569;
  --bg: #f0f4f8;
  --bg-elevated: #ffffff;
  --bg-soft: #e8eef5;
  --border: #cbd5e1;
  --header-bg: linear-gradient(180deg, #0c1222 0%, #151d32 100%);
  --header-text: #f8fafc;
  --brand: #0ea5e9;
  --brand-dark: #0369a1;
  --brand-2: #6366f1;
  --accent: #8b5cf6;
  --brand-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a855f7 100%);
  --cta-gradient: linear-gradient(135deg, #0284c7 0%, #4f46e5 55%, #7c3aed 100%);
  --shadow: 0 12px 40px -16px rgba(15, 23, 42, 0.15);
  --radius: 0.75rem;
  --container: 80rem;
  --card-bg: #ffffff;
  --card-text: #0f172a;
  --card-muted: #475569;
  --on-brand: #ffffff;
  --chat-surface: #ffffff;
  --chat-messages-bg: #f8fafc;
  --chat-border: #cbd5e1;
  --chat-header-bg: linear-gradient(135deg, #0284c7 0%, #4f46e5 55%, #7c3aed 100%);
  --chat-header-text: #ffffff;
  --chat-bot-bg: #e2e8f0;
  --chat-bot-text: #0f172a;
  --chat-user-bg: #0284c7;
  --chat-user-text: #ffffff;
  --chat-input-bg: #ffffff;
  --chat-input-text: #0f172a;
  --chat-fab-bg: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
  --chat-link: #0369a1;
}

[data-theme="dark"] {
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --bg: #0a0f1a;
  --bg-elevated: #141c2e;
  --bg-soft: #1a2438;
  --border: #2d3a52;
  --header-bg: linear-gradient(180deg, #050810 0%, #0c1222 100%);
  --header-text: #f1f5f9;
  --brand: #38bdf8;
  --brand-dark: #0ea5e9;
  --brand-2: #818cf8;
  --accent: #a78bfa;
  --brand-gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  --cta-gradient: linear-gradient(135deg, #0c4a6e 0%, #3730a3 55%, #5b21b6 100%);
  --shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.45);
  --card-bg: #1a2438;
  --card-text: #f1f5f9;
  --card-muted: #94a3b8;
  --on-brand: #ffffff;
  --chat-surface: #141c2e;
  --chat-messages-bg: #0a0f1a;
  --chat-border: #2d3a52;
  --chat-header-bg: linear-gradient(135deg, #0c4a6e 0%, #3730a3 55%, #5b21b6 100%);
  --chat-header-text: #f1f5f9;
  --chat-bot-bg: #1a2438;
  --chat-bot-text: #e2e8f0;
  --chat-user-bg: #0284c7;
  --chat-user-text: #ffffff;
  --chat-input-bg: #141c2e;
  --chat-input-text: #f1f5f9;
  --chat-fab-bg: linear-gradient(135deg, #0c4a6e 0%, #3730a3 100%);
  --chat-link: #38bdf8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a[class*="btn-"] {
  color: unset;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm\:grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex !important;
  }

  .lg\:hidden {
    display: none !important;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lg\:grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1280px) {
  .xl\:grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.65;
}

.section-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.py-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Header */
.site-header {
  background: var(--header-bg);
  background-color: #0c1222;
  color: var(--header-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 0.75rem;
}

.site-header .logo img {
  height: 52px;
  width: auto;
  max-width: min(240px, 55vw);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: #22d3ee;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-active {
  color: #22d3ee !important;
  background: rgba(34, 211, 238, 0.12);
}

.nav-item {
  position: relative;
}

.mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.35rem;
  width: 18rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 200;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel-inner {
  background: #fff;
  color: #0f172a;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0.35rem 0;
}

.mega-panel-inner a {
  display: block;
  padding: 0.6rem 1rem;
}

.mega-panel-inner a:hover {
  background: #ecfeff;
}

.mega-panel-inner .mega-title {
  font-weight: 700;
  display: block;
}

.mega-panel-inner .mega-desc {
  font-size: 0.75rem;
  color: #64748b;
}

.mobile-menu-btn {
  display: inline-flex;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
}

#mobile-overlay.hidden {
  display: none !important;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 20rem);
  background: #0f172a;
  color: #f1f5f9;
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .theme-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1023px) {
  .theme-toggle {
    display: none;
  }

  .btn-header-cta {
    display: none;
  }
}

/* Buttons */
.btn-primary {
  background: var(--brand-gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0.6rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand-dark) !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.55rem 1.15rem;
  display: inline-flex;
  align-items: center;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.55rem 1.15rem;
}

.btn-outline-light:hover {
  background: #fff;
  color: #0f172a !important;
}

.btn-light {
  background: #ffffff !important;
  color: #0369a1 !important;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: none;
}

.btn-light:hover {
  background: #f0f9ff !important;
  color: #0c4a6e !important;
}

.btn-solid {
  background: var(--brand-gradient) !important;
  color: var(--on-brand) !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-solid:hover {
  filter: brightness(1.08);
}

.btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  background: transparent !important;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Hero blocks */
.page-hero,
.catalog-detail-hero {
  text-align: center;
  padding: 4.5rem 1.5rem;
  color: #fff;
  background: var(--cta-gradient);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0;
}

.catalog-detail-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.catalog-detail-hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.catalog-detail-page h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.catalog-detail-page .catalog-stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--brand);
}

.catalog-detail-page .catalog-stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

.catalog-detail-page .catalog-body-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.catalog-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.catalog-detail-page .fa-cloud {
  font-size: 2rem !important;
}

.intro-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
}

.intro-hero .intro-content p {
  font-size: 1.125rem;
}

.intro-hero {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.intro-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-hero .intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.intro-hero .intro-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  max-width: 40rem;
  color: #fff;
}

/* Cards */
.catalog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  text-align: center;
}

.catalog-card:hover {
  box-shadow: var(--shadow);
  border-color: #67e8f9;
}

.catalog-card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.catalog-card-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: var(--bg-elevated);
  transform: translateY(100%);
  opacity: 0;
  transition: 0.3s;
  text-align: left;
}

.catalog-card:hover .catalog-card-hover {
  transform: translateY(0);
  opacity: 1;
}

.catalog-detail-page {
  background: var(--bg);
}

.catalog-detail-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2rem auto;
  max-width: var(--container);
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand-gradient);
}

.catalog-section-title {
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 2rem;
}

.catalog-detail-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.catalog-detail-card:hover {
  box-shadow: var(--shadow);
}

.catalog-hero-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  margin: 0 0.25rem;
  display: inline-block;
}

.catalog-hero-btn-solid {
  background: #fff;
  color: #0f172a;
}

.catalog-hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.tag-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--brand);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

/* Footer */
.site-footer {
  background: #020617;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  margin-top: 2rem;
}

.site-footer h3 {
  color: #f1f5f9;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.site-footer a:hover {
  color: #22d3ee;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.footer-contact-icon {
  color: #22d3ee;
  flex-shrink: 0;
  display: inline-flex;
}

.footer-contact-img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-link-item {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.footer-link-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.social-icons a:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-input.border-red-500 {
  border-color: #ef4444 !important;
}

textarea.form-input {
  min-height: 6rem;
  resize: vertical;
}

.form-panel {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  font-size: 1.75rem;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
  font-size: 0.95rem;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-submit {
  margin-top: 1.5rem;
}

.card-hover {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tech-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.prose-legal {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  line-height: 1.75;
}

.prose-legal .legal-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.prose-legal h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.prose-legal p,
.prose-legal li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.prose-legal ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.prose-legal a {
  color: var(--brand);
  font-weight: 600;
}

/* Home page */
.home-hero {
  position: relative;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.home-hero-slider {
  position: relative;
  min-height: 26rem;
}

@media (min-width: 768px) {
  .home-hero-slider {
    min-height: 32rem;
  }
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.home-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1rem 5rem;
  color: #fff;
}

.home-hero-tagline {
  color: #7dd3fc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.home-hero-content h1 {
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.home-hero-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.home-section-alt {
  background: var(--bg-soft);
}

.home-card-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.home-card-link h3 {
  font-size: 1.2rem;
  margin: 0.75rem 0 0.5rem;
}

.home-card-link p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.home-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.home-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
}

.home-service-card {
  display: block;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.home-service-card h3 {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
}

.home-service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.tech-stack-grid {
  gap: 1rem;
}

@media (min-width: 1024px) {
  .lg-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tech-stack-heading {
  font-size: 1.15rem;
  color: #4338ca;
  margin-bottom: 0.75rem;
}

.tech-stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-stack-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.tech-logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.tech-stack-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.w-9 {
  width: 2.25rem;
}

.h-9 {
  height: 2.25rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.iti {
  display: block !important;
  width: 100%;
}

/* Roadmap & stats (service / solutions pages) */
.roadmap-section {
  background: #0f172a;
  color: #e2e8f0;
  padding: 4rem 0;
  margin: 2rem 0;
}

.roadmap-step {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.roadmap-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #facc15;
}

.roadmap-num {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #facc15;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.roadmap-icon {
  font-size: 1.75rem;
  color: #facc15;
  display: block;
  margin-bottom: 0.5rem;
}

.roadmap-step h3 {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.roadmap-step p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}

.stats-band {
  background: #1e293b;
  padding: 3rem 0;
  margin: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.stat-box:hover {
  border-color: #facc15;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: #334155;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin: 0 auto 0.75rem;
  width: fit-content;
}

.stat-box:hover .stat-value {
  background: #facc15;
  color: #0f172a;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e2e8f0;
}

.cta-band {
  background: var(--cta-gradient);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* What we do — two column layout */
.why-section {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .why-layout {
    grid-template-columns: 1.65fr 1fr;
  }
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  color: var(--card-text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.why-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--card-text);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--card-muted);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.why-card .why-link {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-stat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 11rem;
  border: 1px solid var(--border);
}

.why-stat-card img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
}

.why-stat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.15rem;
  color: #fff;
}

.why-stat-overlay span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.why-stat-overlay strong {
  font-size: 1.1rem;
}

/* About page */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-split h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
}

.about-split p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.about-journey {
  background: var(--bg-soft);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.about-stat-pill {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  min-width: 7rem;
}

.about-stat-pill strong {
  display: block;
  font-size: 1.75rem;
  color: var(--brand);
}

.about-stat-pill span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.expert-cta-box {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 32rem;
  margin: 2rem auto;
}

.expert-cta-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Quote / contact flows */
.quote-panel {
  max-width: 64rem;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel-narrow {
  max-width: 48rem;
}

.quote-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .quote-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .quote-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-pick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.quote-pick-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.quote-pick-card.is-selected {
  border-color: var(--brand);
  border-bottom-width: 6px;
  background: rgba(14, 165, 233, 0.08);
}

.quote-pick-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quote-pick-card.is-selected .quote-pick-icon {
  background: var(--brand);
  color: #fff;
}

.quote-pick-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
}

.quote-other-input {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  display: none;
}

.quote-other-input.is-visible {
  display: block;
}

.page-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .page-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.page-feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.page-feature-card i {
  font-size: 1.75rem;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.page-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.page-feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Layout utilities (legacy class names) */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.opacity-0 {
  opacity: 0;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-100 {
  opacity: 1;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.w-full {
  width: 100%;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.bg-gray-100 {
  background: #f3f4f6;
}

.bg-gray-200 {
  background: #e5e7eb;
}

.bg-blue-50 {
  background: #eff6ff;
}

.bg-blue-100 {
  background: #dbeafe;
}

.bg-blue-600 {
  background: #2563eb;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-800 {
  color: #1e40af;
}

.text-blue-900 {
  color: #1e3a8a;
}

.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-sky-500 {
  color: #0ea5e9;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-blue-500 {
  border-color: #3b82f6;
}

.border-red-500 {
  border-color: #ef4444;
}

.border-b-8 {
  border-bottom-width: 8px;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.hover\:bg-blue-700:hover {
  background: #1d4ed8;
}

.hover\:bg-blue-800:hover {
  background: #1e40af;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

.items-stretch {
  align-items: stretch;
}

.justify-stretch {
  justify-content: stretch;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.text-left {
  text-align: left;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-auto {
  margin-top: auto;
}

.min-h-\[28rem\] {
  min-height: 28rem;
}

.min-h-\[180px\] {
  min-height: 180px;
}

.min-h-\[48px\] {
  min-height: 48px;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.h-64 {
  height: 16rem;
}

.w-14 {
  width: 3.5rem;
}

.h-1 {
  height: 0.25rem;
}

.w-48 {
  width: 12rem;
}

.w-72 {
  width: 18rem;
}

.w-1\.5 {
  width: 0.375rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.text-slate-200 {
  color: #e2e8f0;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-900 {
  color: #0f172a;
}

.text-sky-300 {
  color: #7dd3fc;
}

.text-sky-600 {
  color: #0284c7;
}

.text-indigo-100 {
  color: #e0e7ff;
}

.text-indigo-700 {
  color: #4338ca;
}

.text-blue-700 {
  color: #1d4ed8;
}

.text-blue-900 {
  color: #1e3a8a;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.bg-white {
  background: #fff;
}

.bg-gray-50 {
  background: #f9fafb;
}

.bg-gray-700 {
  background: #374151;
}

.bg-indigo-600 {
  background: #4f46e5;
}

.bg-sky-500 {
  background: #0ea5e9;
}

.bg-slate-50 {
  background: #f8fafc;
}

.bg-black\/55 {
  background: rgba(0, 0, 0, 0.55);
}

.border {
  border: 1px solid var(--border);
}

.border-white {
  border-color: #fff;
}

.border-slate-200 {
  border-color: #e2e8f0;
}

.list-disc {
  list-style-type: disc;
}

.pl-5 {
  padding-left: 1.25rem;
}

.space-y-1>*+* {
  margin-top: 0.25rem;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.block {
  display: block;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.left-1\/2 {
  left: 50%;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.bottom-6 {
  bottom: 1.5rem;
}

.transition {
  transition: 0.2s ease;
}

.duration-300 {
  transition-duration: 300ms;
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:brightness-90 {
  filter: brightness(0.9);
}

.hero-gradient {
  background: linear-gradient(135deg, #0f172a, #312e81, #0e7490);
  color: #fff;
}

#hero-slider {
  position: relative;
  min-height: 28rem;
}

#hero-slider .hero-slide {
  position: absolute;
  inset: 0;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-from, #2563eb), var(--tw-to, #4f46e5));
}

.from-blue-600 {
  --tw-from: #2563eb;
}

.to-indigo-600 {
  --tw-to: #4f46e5;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-from, #0ea5e9), var(--tw-to, #4f46e5));
}

.from-sky-500 {
  --tw-from: #0ea5e9;
}

.to-indigo-600 {
  --tw-to: #4f46e5;
}

.hover\:bg-gray-800:hover {
  background: #1f2937;
}

.hover\:bg-gray-100:hover {
  background: #f3f4f6;
}

.hover\:bg-indigo-700:hover {
  background: #4338ca;
}

.hover\:bg-white:hover {
  background: #fff;
}

.hover\:text-slate-900:hover {
  color: #0f172a;
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}

.focus\:outline-none:focus {
  outline: none;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sm\:min-h-\[210px\] {
    min-height: 210px;
  }

  .sm\:pl-14 {
    padding-left: 3.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:w-2\/3 {
    width: 66.666%;
  }

  .md\:w-1\/3 {
    width: 33.333%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:min-h-\[270px\] {
    min-height: 270px;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Catalog / solutions / services shared layouts */
.catalog-listing-section {
  padding: 2.5rem 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.catalog-grid-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .catalog-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .catalog-grid-3,
  .catalog-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.35rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-card--equal {
  height: 100%;
}

.catalog-card h3 {
  margin: 0.65rem 0 0.45rem;
  font-size: 1.1rem;
}

.catalog-card-desc {
  margin: 0;
  color: var(--text-muted);
}

.catalog-card-hover {
  margin-top: 0.85rem;
  border-top: 1px dashed var(--border);
  padding-top: 0.85rem;
}

.catalog-card-feature-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.catalog-card-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
}

.catalog-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  min-height: 100%;
}

.catalog-detail-card--stacked .catalog-card-body,
.catalog-detail-card .catalog-card-body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.catalog-detail-card--stat {
  padding: 1.1rem;
}

.catalog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.catalog-cloud-icon {
  color: var(--brand);
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

.catalog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.catalog-portfolio-result {
  color: var(--text-muted);
  margin: 0;
}

.catalog-section-panel {
  padding: 1.4rem 1.1rem;
}

.catalog-section-lead {
  margin-bottom: 1.1rem;
}

.catalog-feature-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
}

.catalog-feature-details {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.catalog-feature-detail {
  padding: 1.35rem 1.25rem;
}

.catalog-feature-detail-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.catalog-feature-highlights {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.catalog-feature-highlights li {
  margin-bottom: 0.35rem;
}

.catalog-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.contact-interest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1rem 0 0.5rem;
}

@media (min-width: 768px) {
  .contact-interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-interest-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--bg-soft);
}

.contact-interest-group h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}

.contact-check input {
  margin-top: 0.2rem;
}

/*Bot CSS Start*/
.chat-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--chat-fab-bg);
  color: var(--chat-header-text);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: transform 0.2s;
}

.chat-fab:hover {
  transform: scale(1.05);
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: min(350px, calc(100vw - 2rem));
  height: 500px;
  background: var(--chat-surface);
  border: 1px solid var(--chat-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  color: var(--text);
}

.chat-window.hidden {
  display: none;
}

.chat-header {
  background: var(--chat-header-bg);
  color: var(--chat-header-text);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-name {
  font-weight: 700;
}

.chat-close-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--chat-messages-bg);
}

.chat-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.chat-bot-message {
  background: var(--chat-bot-bg);
  color: var(--chat-bot-text);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-user-message {
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-inline-link {
  color: var(--chat-link);
  text-decoration: underline;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid var(--chat-border);
  background: var(--chat-surface);
}

#chat-input {
  flex-grow: 1;
  border: 1px solid var(--chat-border);
  border-radius: 20px;
  padding: 10px 15px;
  outline: none;
  background: var(--chat-input-bg);
  color: var(--chat-input-text);
  font-family: inherit;
}

#chat-input::placeholder {
  color: var(--text-muted);
}

.send-btn {
  background: none;
  border: none;
  color: var(--brand);
  font-weight: 700;
  padding: 0 15px;
  cursor: pointer;
}

.chat-form {
  margin-top: 10px;
  background: var(--chat-surface);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--chat-border);
}

.chat-form-lead {
  font-size: 13px;
  margin: 0 0 8px;
  color: var(--text);
}

.chat-form-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--chat-border);
  border-radius: 4px;
  background: var(--chat-input-bg);
  color: var(--chat-input-text);
  font-family: inherit;
}

.chat-form-actions {
  display: flex;
  gap: 10px;
}

.chat-form-btn {
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.chat-form-btn-primary {
  background: var(--brand);
  color: var(--on-brand);
}

.chat-form-btn-muted {
  background: var(--chat-bot-bg);
  color: var(--chat-bot-text);
}

/*Bot CSS Ends*/