/* ============================================
   WILMOT.AI — GLOBAL DESIGN SYSTEM
   ============================================ */

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

/* ============================================
   CSS CUSTOM PROPERTIES — ARCHITECTURAL STANDARD
   ============================================ */
:root {
  /* Primary palette */
  --navy: #00081a;
  --navy-dark: #022043;
  --black: #141d23;
  --white: #ffffff;
  --secondary: #0059ba;
  --secondary-hover: #004492;
  --amber: #fabd00;
  --amber-dark: #c49300;

  /* Surface hierarchy */
  --surface: #f6faff;
  --surface-container-low: #ecf5fe;
  --surface-container: #e6eff8;
  --surface-container-high: #e0e9f2;
  --surface-container-highest: #dbe4ed;

  /* Legacy aliases (keep existing classes working) */
  --green: #0059ba;
  --green-hover: #004492;
  --orange: #fabd00;
  --orange-hover: #c49300;
  --grey-light: #ecf5fe;
  --grey-mid: #74777f;
  --grey-border: #c4c6cf;
  --gold: #fabd00;
  --gold-light: #fff3c4;
  --primary-container: #022043;
  --on-surface-variant: #44474e;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-sm: 0 12px 48px rgba(20,29,35,0.04);
  --shadow-md: 0 8px 32px rgba(20,29,35,0.08);
  --shadow-lg: 0 24px 80px rgba(20,29,35,0.12);
  --shadow-amber: 0 8px 32px rgba(250,189,0,0.2);

  --gradient-cta: linear-gradient(135deg, #0059ba 0%, #022043 100%);
  --gradient-hero: linear-gradient(135deg, #0059ba 0%, #022043 100%);

  --transition: 0.25s ease;
}

/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background-color: var(--surface);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

/* Account for fixed header */
main {
  padding-top: 72px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
h5 { font-size: clamp(1rem, 2vw, 1.1rem); }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  color: var(--on-surface-variant);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--navy {
  background: var(--gradient-hero);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p {
  color: var(--white);
}

.section--grey {
  background-color: var(--surface-container-low);
}

.section--orange {
  background: var(--gradient-cta);
  color: var(--white);
}

.section--orange h1,
.section--orange h2,
.section--orange h3,
.section--orange p {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-family: var(--font-body);
  color: #1A1A1A;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle--white {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid {
  display: grid;
  gap: 32px;
}

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

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

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--6 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,89,186,0.3);
}

.btn-primary:hover {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,89,186,0.4);
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-orange {
  background: var(--amber);
  color: var(--navy);
  border-color: transparent;
  font-weight: 800;
}

.btn-orange:hover {
  background: var(--amber-dark);
  color: var(--navy);
}

.btn-navy {
  background: var(--gradient-cta);
  color: var(--white);
  border-color: transparent;
}

.btn-navy:hover {
  opacity: 0.9;
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #ffffff;
  border: 1px solid rgba(196, 198, 207, 0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition), background-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--surface-container-low);
}

.card--navy {
  background: var(--gradient-cta);
  border-color: transparent;
  color: var(--white);
}

.card--navy h1,
.card--navy h2,
.card--navy h3,
.card--navy h4,
.card--navy p {
  color: var(--white);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--secondary);
  margin-bottom: 16px;
  transition: color var(--transition);
}

.card:hover .card-icon {
  color: var(--amber);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition);
  border: none;
  gap: 16px;
  letter-spacing: -0.01em;
}

.accordion-header:hover {
  background-color: var(--surface-container-low);
  color: var(--secondary);
}

.accordion-header[aria-expanded="true"] {
  background-color: var(--surface-container-low);
  color: var(--secondary);
}

.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: transform var(--transition);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--surface-container-low);
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  line-height: 1.75;
}

.accordion-body.is-open {
  display: block;
}

.accordion-body p {
  margin-bottom: 0.75rem;
}

/* ============================================
   HORIZONTAL SCROLL CONTAINER
   ============================================ */
.scroll-container {
  overflow: visible;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--grey-light);
  /* Ensure touch swipe works on iOS */
  touch-action: pan-x;
}

.scroll-track::-webkit-scrollbar {
  height: 6px;
}

.scroll-track::-webkit-scrollbar-track {
  background: var(--grey-light);
  border-radius: 3px;
}

.scroll-track::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

.scroll-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--navy);
  background: var(--surface-container);
  transition: border-color var(--transition), background-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-bottom-color: var(--secondary);
  background: var(--surface-container-high);
  box-shadow: none;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navy);
  margin-top: 2px;
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-green {
  background-color: rgba(0, 89, 186, 0.1);
  color: var(--secondary);
}

.badge-orange {
  background-color: rgba(250, 189, 0, 0.15);
  color: var(--amber-dark);
}

.badge-navy {
  background: var(--gradient-cta);
  color: var(--white);
}

.badge-gold {
  background-color: var(--gold-light);
  color: var(--amber-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: transparent;
  padding: 16px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.hero-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  background: transparent;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F59E0B;
  border: none;
  color: #1A1A1A;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,89,186, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,89,186, 0); }
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-phone-img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 80px);
  display: block;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: none;
  object-fit: contain;
  background: transparent;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  max-height: calc(100vh - 160px);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 160px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-label {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 80vw;
  height: 80vh;
  max-width: 1100px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease, transform 0.2s ease;
  font-family: var(--font-heading);
}

.modal-close:hover {
  color: var(--orange);
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .modal-content {
    width: 95vw;
    height: 55vw;
    min-height: 200px;
  }
  .modal-close {
    top: -40px;
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 24px 0 40px;
    min-height: auto;
    background: transparent;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 16px 0 32px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }
  .video-wrapper {
    border-radius: 8px;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #F59E0B;
  padding: 24px 0;
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: #1A1A1A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   STARS (reviews)
   ============================================ */
.stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 12px;
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
  background: #ffffff;
  border: 1px solid rgba(196,198,207,0.15);
  border-radius: var(--radius-xl);
  padding: 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-quote {
  font-style: italic;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 300;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   PRICING CARD
   ============================================ */
.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(196,198,207,0.15);
  border-radius: var(--radius-2xl);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cta);
}

.pricing-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-strike {
  font-size: 0.85rem;
  color: var(--grey-mid);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-sub {
  font-size: 0.875rem;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-border);
  font-size: 0.875rem;
  color: #1A1A1A;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.pricing-note {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-top: 16px;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(196,198,207,0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image--1 { background: url('/images/recruitment-office.png') center/cover no-repeat; }
.blog-card-image--2 { background: url('/images/hero-smb-owner.png') center/cover no-repeat; }
.blog-card-image--3 { background: url('/images/city-network.png') center/cover no-repeat; }
.blog-card-image--4 { background: url('/images/ai-brain.png') center/cover no-repeat; }
.blog-card-image--5 { background: url('/images/hero-businessman.png') center/cover no-repeat; }
.blog-card-image--6 { background: url('/images/hospitality-sector.png') center/cover no-repeat; }

.blog-card-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 1rem;
  color: #1A1A1A;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.read-more {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.read-more:hover {
  color: var(--orange);
}

/* ============================================
   SECTOR CARDS — Image Based
   ============================================ */
.sector-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.sector-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-card-bg {
  transform: scale(1.05);
}

.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,53,0.95) 0%, rgba(17,29,53,0.5) 60%, rgba(17,29,53,0.1) 100%);
  transition: background 0.3s ease;
}

.sector-card:hover .sector-card-overlay {
  background: linear-gradient(to top, rgba(17,29,53,0.98) 0%, rgba(17,29,53,0.65) 60%, rgba(17,29,53,0.2) 100%);
}

.sector-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.sector-icon {
  display: none;
}

.sector-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
  line-height: 1.2;
}

.sector-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sector-learn-more {
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.sector-card:hover .sector-learn-more {
  color: var(--orange);
}

/* ============================================
   AWARD CARDS
   ============================================ */
.award-card {
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.award-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.award-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  color: var(--white);
  grid-column: 1 / -1;
}

.award-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.award-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.award-card--featured .award-name {
  color: var(--white);
  font-size: 1.8rem;
}

.award-desc {
  font-size: 1rem;
  color: #1A1A1A;
}

.award-card--featured .award-desc {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   SUCCESS STORY CARDS
   ============================================ */
.story-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
}

.story-card-header {
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  padding: 16px 20px;
  color: var(--white);
}

.story-company {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.story-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.story-stat {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.story-card-body {
  padding: 16px 20px;
}

.story-body-preview {
  color: #1A1A1A;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-expanded {
  display: none;
  color: #1A1A1A;
  line-height: 1.7;
  font-size: 1rem;
}

.story-expanded.is-open {
  display: block;
}

.story-expand-btn {
  background: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.story-expand-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   FAQ SECTIONS
   ============================================ */
.faq-section {
  margin-bottom: 48px;
}

.faq-section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
/* ============================================
   SKILLS GRID
   ============================================ */
.skill-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.skill-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--navy), #2a3f6e);
}

.skill-card:hover::before {
  transform: scale(3);
}

.skill-icon {
  color: var(--green);
  margin-bottom: 16px;
  transition: color var(--transition);
  width: 32px;
  height: 32px;
}

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

.skill-card:hover .skill-icon {
  color: var(--orange);
}

.skill-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.skill-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  background: var(--navy);
  padding: 52px 0;
  text-align: center;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ============================================
   WHATSAPP SECTION
   ============================================ */
.whatsapp-section {
  background: var(--gradient-cta);
  padding: 52px 0;
}

.whatsapp-section h2,
.whatsapp-section p {
  color: var(--white);
}

.whatsapp-section .form-control {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.3);
}

.whatsapp-section .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.whatsapp-section .form-control:focus {
  background: rgba(255,255,255,0.18);
  border-bottom-color: var(--amber);
}

.whatsapp-section .form-label {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   ACADEMY STYLES
   ============================================ */
.academy-module {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}

.academy-module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--grey-light);
  transition: background-color var(--transition);
  width: 100%;
  border: none;
  text-align: left;
}

.academy-module-header:hover {
  background-color: var(--grey-border);
}

.academy-module-number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.academy-module-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  flex: 1;
}

.academy-module-body {
  display: none;
  padding: 24px;
}

.academy-module-body.is-open {
  display: block;
}

.video-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.video-card:hover {
  box-shadow: var(--shadow-md);
}

.video-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  cursor: pointer;
}

.video-card-body {
  padding: 16px;
}

.video-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.video-duration {
  font-size: 0.875rem;
  color: var(--grey-mid);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  color: var(--grey-border);
}

/* Breadcrumbs on dark page-hero backgrounds */
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.75);
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.9);
}
.page-hero .breadcrumb a:hover {
  color: var(--green);
}
.page-hero .breadcrumb-sep {
  color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumb span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   PAGE-SPECIFIC HERO BACKGROUND IMAGES
   ============================================ */
.page-hero--awards {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/awards-hero.png') center/cover no-repeat;
}
.page-hero--blog {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/blog-header.png') center/cover no-repeat;
}
.page-hero--academy {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/academy-hero.png') center/cover no-repeat;
}
.page-hero--success {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/success-stories-hero.png') center/cover no-repeat;
}
.page-hero--contact {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/contact-hero.png') center/cover no-repeat;
}
.page-hero--faq {
  background: linear-gradient(135deg, rgba(10,25,60,0.82), rgba(45,74,138,0.78)), url('/images/faq-hero.png') center/cover no-repeat;
}

/* Barbados prize image */
.barbados-prize-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

/* Hero AI assistant background */
.hero--featured-image {
  background: url('/images/hero-ai-assistant.png') right center/50% no-repeat, var(--white);
}


/* ============================================
   FEATURE GRID ICONS
   ============================================ */
.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color var(--transition);
}

.feature-item:hover .feature-icon-wrap {
  background: rgba(249, 115, 22, 0.1);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--navy);
  transition: color var(--transition);
}

.feature-item:hover .feature-icon {
  color: var(--orange);
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-desc {
  font-size: 1rem;
  color: #1A1A1A;
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.contact-method-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-method-value {
  color: #1A1A1A;
  font-size: 1rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey-mid); }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--grey-border);
  margin: 24px 0;
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > * {
  opacity: 1;
  transform: none;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(n+7) { transition-delay: 0.48s; }

@keyframes pulse-scale {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  animation: pulse-scale 3s ease-in-out infinite;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

/* ============================================
   IMAGE + TEXT SPLIT LAYOUTS
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

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

.split-content {
  padding: 16px 0;
}

.split-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 32px 0;
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-section--reverse {
    direction: ltr;
  }
  .split-img {
    height: 260px;
  }
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .trust-bar-items { gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .pricing-card { padding: 32px 24px; }
  .scroll-card { flex: 0 0 280px; }
  .grid--3-mob-1 { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 36px; }
  .section-subtitle { font-size: 1rem; }
  .page-hero { padding: 60px 0 48px; }
  .page-hero p { font-size: 1rem; }
  .cta-block { padding: 56px 0; }
  .whatsapp-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .trust-bar-items { gap: 12px; justify-content: flex-start; }
  .trust-bar-item { font-size: 0.85rem; }
  .pricing-card { padding: 24px 16px; }
  .card { padding: 24px 16px; }
  .review-card { padding: 20px; min-height: auto; }
  .story-card-body { padding: 12px; }
  .story-card-header { padding: 12px; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ============================================
   MOBILE FEATURE/BENEFIT FIXES
   ============================================ */
@media (max-width: 768px) {
  .feature-item {
    padding: 20px 12px;
  }
  .feature-title {
    font-size: 1rem;
  }
  .feature-desc {
    font-size: 0.9rem;
  }
  .grid--6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .split-content p {
    font-size: 0.95rem;
  }
  .skill-card {
    padding: 24px 20px;
  }
  .skill-name {
    font-size: 0.95rem;
  }
  .skill-desc {
    font-size: 0.875rem;
  }
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

/* ============================================
   CHAT DEMO BLOCK
   ============================================ */
.chat-demo-section {
  background: var(--grey-light);
  padding: 52px 0;
}

.chat-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chat-window {
  background: #ECE5DD;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  max-width: 420px;
}

.chat-header {
  background: #075E54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-back-arrow {
  width: 20px;
  height: 20px;
  color: white;
  flex-shrink: 0;
  opacity: 0.9;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.chat-header-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
}

.wa-header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.chat-messages {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ECE5DD;
}

.wa-date-divider {
  display: flex;
  justify-content: center;
  margin: 6px 0 10px;
}

.wa-date-divider span {
  background: rgba(255,255,255,0.85);
  color: #4A4A4A;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-msg {
  max-width: 82%;
  padding: 7px 10px 20px;
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
  position: relative;
  margin-bottom: 4px;
}

.chat-msg--user {
  background: #DCF8C6;
  color: #111;
  align-self: flex-end;
  border-top-right-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.chat-msg--user::before {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #DCF8C6;
  border-right: 8px solid transparent;
}

.chat-msg--bot {
  background: #FFFFFF;
  color: #111;
  align-self: flex-start;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.chat-msg--bot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #FFFFFF;
  border-left: 8px solid transparent;
}

.chat-msg--bot strong {
  color: #075E54;
}

.wa-msg-meta {
  position: absolute;
  bottom: 4px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-time {
  font-size: 0.65rem;
  color: #777;
  white-space: nowrap;
}

.wa-ticks {
  color: #777;
  display: flex;
  align-items: center;
}

.wa-ticks--read {
  color: #34B7F1;
}

.chat-input-bar {
  padding: 8px 10px;
  background: #F0F0F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input-icon {
  width: 22px;
  height: 22px;
  color: #8A8A8A;
  flex-shrink: 0;
  cursor: pointer;
}

.chat-input-field {
  flex: 1;
  background: #FFFFFF;
  border: none;
  border-radius: 22px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #999;
  outline: none;
}

.chat-send-btn {
  width: 42px;
  height: 42px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .chat-demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chat-window {
    max-width: 100%;
  }
}
