/* ==========================================================================
   INTELLENCE.AI - REVAMPED ENTERPRISE STYLES (OPTRO.AI DESIGN SYSTEM)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Preserved Brand Palette */
  --bg-light: #ffffff;
  --bg-alt: #f7f7f5;
  --bg-subtle: #f1f5f9;
  --bg-dark: #0A1527;
  --bg-dark-card: #0e1b30;
  --bg-dark-tertiary: #13223c;
  
  --text-light-primary: #0a1a2f;
  --text-light-secondary: #475569;
  --text-light-muted: #8492a6;
  
  --text-dark-primary: #f8fafc;
  --text-dark-secondary: #94a3b8;
  --text-dark-muted: #64748b;
  
  --teal: #3dd5c0; /* Signature mint green for CTA Buttons ONLY */
  --teal-hover: #2ec4b0;
  --teal-glow: rgba(15, 23, 42, 0.05);
  --teal-border: rgba(15, 23, 42, 0.12);
  --teal-text-light: #0f172a;
  
  --border-light: rgba(15, 23, 42, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-hover-teal: rgba(15, 23, 42, 0.18);
  
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(15, 23, 42, 0.08);
  
  /* Fonts */
  --font-display: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  /* Dynamic Layout Scaling for All Monitor Sizes */
  --wrap: clamp(1200px, 88vw, 1720px);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-light-secondary);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fluid Dynamic Typography Scale */
h1, h2, .hero-title {
  font-family: var(--font-display);
  color: var(--text-light-primary);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.2vw + 0.8rem, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.75rem);
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

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

.font-mono {
  font-family: var(--font-body) !important;
}

/* Section Controllers */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3.5rem);
  width: 100%;
}

.section {
  padding: clamp(3rem, 5vw, 5.5rem) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-dark-secondary);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-dark-primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light-primary);
  margin-bottom: 1.25rem;
  padding: 6px 14px;
  background: #f0f4f8;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.section-dark .eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Badge Tags (card labels, blog category tags, agent "Live" badges) */
.badge-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-tag.status-live {
  color: var(--text-light-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}

/* Blog post category tag (used on dark hero sections) */
.post-category-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-light-secondary);
  line-height: 1.6;
}

.sec-head {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.sec-head h2 {
  margin-top: 0.8rem;
}

/* Buttons (Optro sharp monospace aesthetic) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2px;
  transition: transform 0.3s ease;
}

.btn-primary, .btn-sharp {
  background: var(--teal);
  color: var(--bg-dark);
  border: 1px solid var(--teal);
  box-shadow: 0 2px 10px -2px rgba(61, 213, 192, 0.3);
}

.btn-primary:hover, .btn-sharp:hover {
  background: var(--teal-hover);
  color: var(--bg-dark);
  border-color: var(--teal-hover);
  box-shadow: 0 6px 20px -2px rgba(61, 213, 192, 0.5);
}

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

.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--text-light-primary);
  border: 1px solid var(--text-light-primary);
}

.section-dark .btn-secondary, .section-dark .btn-outline {
  color: var(--text-dark-primary);
  border-color: var(--text-dark-primary);
}

.btn-secondary:hover, .btn-outline:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--text-light-primary);
  color: var(--text-light-primary);
}

.section-dark .btn-secondary:hover, .section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dark-primary);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-teal {
  background: var(--teal);
  color: var(--bg-dark);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
}

/* Announcement Banner (Optro style) */
/* Header & Nav (Optro style sticky header) */
#global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  background: #0A1527;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-wordmark {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.site-header.scrolled {
  background: #0c1930;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.menu-link:hover, .menu-link.active, .nav-dropdown.open .nav-dd-btn {
  color: #ffffff;
  opacity: 1;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.dd-caret {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.nav-dropdown.open .dd-caret {
  transform: rotate(180deg);
}

.nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1100;
}

.nav-dropdown.open .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dd-panel a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light-primary);
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dd-panel a:hover {
  background: var(--bg-alt);
  color: var(--text-light-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link-login {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
}

.nav-link-login:hover {
  color: #ffffff;
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: #ffffff;
}

/* Hero Section (Optro 50/50 Split Layout) */
.hero-optro, .hero {
  padding: 80px 0 60px;
  background-color: #0A1527 !important;
  color: #94a3b8;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  text-align: left;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(61, 213, 192, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(61, 213, 192, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(61, 213, 192, 0); }
}

.hero-title,
.hero h1,
.hero-optro h1 {
  margin: 0.85rem 0 1rem;
  color: #ffffff !important;
  font-size: clamp(1.8rem, 2.4vw + 0.8rem, 3.2rem);
  line-height: 1.15;
}

.hero-optro .lead,
.hero .lead {
  color: #94a3b8 !important;
}

.hero-optro .eyebrow,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.hero-title .highlight {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 0 8px;
  border-radius: var(--radius-sm);
}

.industries-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.ind-pill {
  background: #f7f7f5;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8125rem;
}

.ind-pill strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text-light-primary);
  font-size: 0.9375rem;
}

.ind-pill span {
  color: var(--text-light-secondary);
  font-size: 0.75rem;
}

/* Right Side Hero Media & Overlays (Optro style) */
.hero-media-wrapper {
  position: relative;
  width: 100%;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #eef2f6;
  height: 520px;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.hero-overlay-card.top-left {
  top: 24px;
  left: 24px;
  max-width: 280px;
}

.hero-overlay-card.bottom-right {
  bottom: 24px;
  right: 24px;
  max-width: 300px;
}

.overlay-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-light-secondary);
  display: block;
  margin-bottom: 4px;
}

.overlay-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-light-primary);
  margin-bottom: 8px;
}

.overlay-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}

.overlay-fill {
  height: 100%;
  background: var(--text-light-primary);
  border-radius: 100px;
}

.overlay-sub, .overlay-meta {
  font-size: 0.75rem;
  color: var(--text-light-secondary);
  display: block;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* Compact Hero Layout (for inner pages, Privacy, Terms, etc.) */
.hero-compact {
  padding: 45px 0 35px !important;
  background-color: #0A1527 !important;
  color: #94a3b8;
}

.hero-compact .hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-compact .hero-media-card {
  height: 300px !important;
  max-height: 320px !important;
  max-width: 500px;
  margin-left: auto;
  border-radius: var(--radius-md);
}

.hero-compact .hero-overlay-card {
  padding: 8px 12px;
}

.hero-compact .hero-overlay-card.top-left {
  top: 12px;
  left: 12px;
  max-width: 220px;
}

.hero-compact .hero-overlay-card.bottom-right {
  bottom: 12px;
  right: 12px;
  max-width: 240px;
}

.hero-compact .overlay-tag {
  font-size: 0.65rem;
  margin-bottom: 2px;
}

.hero-compact .overlay-title {
  font-size: 0.8125rem;
  margin-bottom: 4px;
}

.hero-compact .overlay-bar {
  height: 4px;
  margin-bottom: 4px;
}

.hero-compact .overlay-sub,
.hero-compact .overlay-meta {
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .hero-compact .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-compact .hero-media-card {
    height: 220px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.status-dot.green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.status-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light-primary);
}

/* Role Framing (Under Hero) */
.role-framing-wrapper {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.role-framing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.role-card {
  background: #f7f7f5;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  transition: var(--transition);
}

.role-card:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow-sm);
}

.role-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 6px;
}

.role-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 8px;
}

.role-card p {
  font-size: 0.875rem;
  color: var(--text-light-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Structured BPO Capability List */
.bpo-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bpo-list li {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.bpo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-dark-primary);
  font-weight: 700;
}

.bpo-list strong {
  color: var(--text-dark-primary);
}

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

/* Experts / Leadership Section */
.experts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.expert-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  display: none;
}

.expert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow-md);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--teal-text-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.expert-card:hover .avatar {
  background: var(--bg-subtle);
  color: var(--text-light-primary);
  box-shadow: var(--shadow-sm);
}

.expert-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.expert-info .role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expert-info p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  margin-bottom: 0;
}

/* Split Layout (Image Left, Content Right) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.split-media:hover .split-img {
  transform: scale(1.02);
}

.split-content h2 {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  line-height: 1.15;
}

.split-content .lead {
  font-size: 1.05rem;
  color: var(--text-light-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.solution-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.solution-card::before {
  display: none;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: var(--shadow-md);
}

.sol-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  color: var(--teal-text-light);
  display: grid;
  place-items: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  flex-shrink: 0;
}

.sol-icon svg {
  width: 22px;
  height: 22px;
}

.solution-card:hover .sol-icon {
  background: var(--bg-subtle);
  color: var(--text-light-primary);
  border-color: rgba(15, 23, 42, 0.15);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Knowledge Sense (Chat Demo) */
.ks-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.ks-showcase .copy-content {
  max-width: 580px;
}

.demo-container {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.demo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-light);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.demo-title-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-dark);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.demo-title-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.demo-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light-secondary);
  background: rgba(15, 23, 42, 0.06);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-chat-box {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.chat-bubble {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  animation: fadeIn 0.4s ease forwards;
}

.chat-bubble.user {
  background: #ffffff;
  color: var(--text-light-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.chat-bubble.ai {
  background: var(--bg-alt);
  color: var(--text-light-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-light);
  line-height: 1.55;
}

.chat-bubble .source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-light-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 10px;
}

.chat-bubble .source-tag svg {
  width: 12px;
  height: 12px;
  color: var(--teal-text-light);
}

.demo-selectors {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-selector-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
}

.selector-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selector-btn {
  background: #ffffff;
  color: var(--text-light-secondary);
  border: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.selector-btn:hover, .selector-btn.active {
  background: var(--bg-subtle);
  border-color: rgba(15, 23, 42, 0.2);
  color: var(--text-light-primary);
  transform: translateY(-1px);
}

/* Managed Services (BPO) - Dark Section */
.bpo-section {
  position: relative;
  overflow: hidden;
}

.bpo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bpo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bpo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bpo-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: var(--transition);
  cursor: default;
}

.bpo-pill:hover {
  border-color: var(--teal);
  background: var(--bg-dark-tertiary);
  transform: scale(1.03);
}

.bpo-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bpo-metric {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bpo-metric::after {
  display: none;
}

.bpo-metric:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.bpo-metric:hover::after {
  display: none;
}

.bpo-metric .num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark-primary);
  line-height: 1.1;
  margin-bottom: 8px;
  white-space: nowrap;
}

.bpo-metric .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bpo-metric p {
  font-size: 0.8rem;
  color: var(--text-dark-secondary);
  margin-top: 6px;
  margin-bottom: 0;
}

/* Security & Trust Section */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.security-card::before {
  display: none;
}

.security-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: var(--shadow-md);
}

.sec-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-light-secondary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.sec-icon svg {
  width: 22px;
  height: 22px;
}

.security-card:hover .sec-icon {
  background: var(--bg-subtle);
  color: var(--text-light-primary);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: var(--shadow-sm);
}

.security-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.security-card p {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* How We Work Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-light), var(--border-light) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: visible;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  color: var(--text-light-secondary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}

.step-num::after {
  display: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.step-card:hover .step-num {
  background: var(--bg-subtle);
  color: var(--text-light-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Homepage Blog & Insights Section */
.home-blog-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-blog-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.home-blog-card::before {
  display: none;
}

.home-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: var(--shadow-md);
}

.blog-card-media {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-body .badge-tag {
  align-self: flex-start;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-light-primary);
  margin: 12px 0 8px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.2s ease;
}

.home-blog-card:hover .blog-card-body h3 {
  color: var(--text-light-primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light-muted);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light-secondary);
  margin-left: auto;
}

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

@media (max-width: 640px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  text-align: center;
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  color: var(--text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
  max-width: 640px;
  margin: 0 auto 2.2rem;
}

.cta-section .btn {
  margin-top: 0;
}

/* Footer - Dark Section */
footer {
  background: #0A1527;
  color: var(--text-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 16px;
  color: var(--text-dark-primary);
}

.footer-brand .brand .ai {
  color: var(--teal);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
}

.footer-col ul li a:hover {
  color: var(--text-dark-primary);
  padding-left: 4px;
}

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

.footer-bottom-links a {
  color: var(--text-dark-muted);
  margin-left: 20px;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal Class */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-overlay-card.top-left, .hero-overlay-card.bottom-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin: 10px;
  }

  .ticker-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 10px;
  }

  .nav .brand {
    font-size: 1.25rem;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .nav-actions {
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0A1527;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 40px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .menu.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
  .menu > a,
  .menu > .nav-dropdown {
    border-bottom: none;
    width: 100%;
  }

  .menu a {
    padding: 16px 0;
    width: 100%;
    display: block;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .menu a::after {
    display: none;
  }
  
  .menu .menu-link {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .burger {
    display: block;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .industries {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ind-card {
    padding: 1.5rem 1rem;
  }
  
  .experts {
    grid-template-columns: 1fr;
  }
  
  .ks-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bpo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-container::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .nav .brand {
    font-size: 1.2rem;
    gap: 8px;
  }

  .nav .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .industries {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links a {
    margin: 0 10px;
  }
  
  .hero-media-card {
    height: 340px;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 420px) {
  .nav .brand {
    font-size: 1.1rem;
    gap: 6px;
  }

  .nav .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .burger {
    padding: 6px 4px;
  }

  .container {
    padding: 0 0.85rem;
  }
}

/* Ultra-Wide Monitors & Large Display Enhancements
   (single source of truth for --wrap + large-screen type scale —
   font-size overrides target `.hero h1, .hero-optro h1` too, since
   that compound selector elsewhere on the page otherwise outranks
   a plain `h1, h2, .hero-title` rule and would silently win instead) */
@media (min-width: 1025px) {
  .industries-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  :root {
    --wrap: 1480px;
  }
  .hero-media-card {
    height: 560px;
  }
  .sec-head {
    max-width: 860px;
  }
}

@media (min-width: 1680px) {
  :root {
    --wrap: 1600px;
  }
  .hero-media-card {
    height: 600px;
  }
  .sec-head {
    max-width: 920px;
  }
  h1, h2, .hero-title, .hero h1, .hero-optro h1 {
    font-size: 3.3rem;
  }
  .lead {
    font-size: 1.3rem;
  }
}

@media (min-width: 1920px) {
  :root {
    --wrap: 1720px;
  }
  .hero-media-card {
    height: 640px;
  }
  .sec-head {
    max-width: 980px;
  }
  h1, h2, .hero-title, .hero h1, .hero-optro h1 {
    font-size: 3.6rem;
  }
  .lead {
    font-size: 1.4rem;
  }
}

@media (min-width: 2560px) {
  :root {
    --wrap: 2200px;
  }
  h1, h2, .hero-title, .hero h1, .hero-optro h1 {
    font-size: 3.9rem !important;
  }
  .lead {
    font-size: 1.5rem !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Coming Soon Styles */
.coming-soon-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
}

.coming-soon-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  color: var(--teal-text-light);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.cs-icon svg {
  width: 32px;
  height: 32px;
}

.coming-soon-content:hover .cs-icon {
  background: var(--teal);
  color: var(--bg-dark);
  border-color: var(--teal);
  transform: scale(1.05);
}

.coming-soon-content h1 {
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  margin: 10px 0 20px;
  color: var(--text-light-primary);
}

.coming-soon-content p {
  color: var(--text-light-secondary);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.62;
}

.coming-soon-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Home Page Image Elements */
.avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Footer contact details */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1.4;
}

a.footer-contact-row:hover {
  color: #ffffff;
}

.footer-contact-row svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer social links */
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 6px 13px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Responsive footer contact & social */
@media (max-width: 580px) {
  .footer-contact-details {
    margin-top: 14px;
  }
  .footer-social {
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-social-link {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* Agent Portrait Cards Treatment (Finance & Accounting) */
.agent-portrait-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.agent-portrait-card::before {
  display: none;
}

.agent-portrait-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.agent-portrait-card:hover::before {
  display: none;
}

.agent-portrait-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  background: var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.agent-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.agent-portrait-card:hover .agent-portrait-img {
  transform: scale(1.04);
}

.agent-portrait-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.agent-portrait-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.agent-portrait-body h3 {
  font-size: 1.35rem;
  color: var(--text-dark-primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.agent-portrait-body .agent-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agent-portrait-body p {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   FULL RESPONSIVE & DYNAMIC SCREEN BREAKPOINTS (MONITORS TO MOBILE)
   ========================================================================== */

/* Small Laptops & Tablets Landscape (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .menu {
    gap: 16px;
  }
  .menu-link {
    font-size: 0.78rem;
  }
}

/* Mobile & Tablet Portrait Layouts (Under 1024px) */
@media (max-width: 1023px) {
  .burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu .menu-link {
    color: var(--text-light-primary);
  }

  .menu .menu-link:hover,
  .menu .menu-link.active,
  .menu .nav-dropdown.open .nav-dd-btn {
    color: var(--bg-dark);
  }

  .menu .nav-dd-panel a {
    color: var(--text-light-primary);
  }

  .menu .nav-dd-panel a:hover {
    color: var(--bg-dark);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dd-btn {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .nav-dd-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
    min-width: 100%;
  }

  .nav-dropdown.open .nav-dd-panel {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .security-grid, .team-grid, .home-blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile Screens (Under 767px) */
@media (max-width: 767px) {
  h1, h2, .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.1rem) !important;
    line-height: 1.22;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  .lead {
    font-size: 0.98rem !important;
  }

  .security-grid, .team-grid, .home-blog-grid, .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-optro {
    padding: 50px 0 40px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .nav-actions .btn {
    display: none;
  }
}

