:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --primary: #14a800;
  --primary-ink: #ffffff;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, Helvetica Neue, Arial;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

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

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

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.f-h-cnt {
  width: 100%;
  height: auto;
  display: inline-block;
  min-height: calc(100dvh - 250px);
  padding: 32px 0;
}



 .policy-container {
        max-width: 1600px;
        margin-top: 0px;
        
    }

    .policy-container .card-body {
      padding: 0;

    }
  
    .policy-container .inner-content-section h1 {
        font-size: 32px;
    }

    .policy-container .inner-content-section .inner-cnt-blk {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 60dvh;
    }

    .policy-container .inner-cnt-blk .updated-date,
    .policy-container .inner-cnt-blk .note-box {
        color: #000000;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .policy-container .inner-cnt-blk h2 {
        font-size: 20px;
        color: #000000;
        font-weight: 600;
    }

    .policy-container .inner-cnt-blk h3 {
        font-size: 16px;
        color: #000000;
        font-weight: 500;
    }

    .policy-container .inner-cnt-blk p a,
    .policy-container .inner-cnt-blk div>a {
        text-decoration: underline;
        color: #191919;
    }

    .policy-container .inner-cnt-blk ul {
        list-style: disc;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        color: #000000;
    }

    .policy-container .inner-cnt-blk ul li {
        font-size: 15px;
        color: #191919;
    }





@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 18px;
  }
  
  .f-h-cnt {
    padding: 28px 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  
  .f-h-cnt {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  
  .f-h-cnt {
    padding: 20px 0;
  }
}

/* Buttons / chips */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
}

.btn-outline {
  background: #fff;
  border-color: var(--success);
  color: var(--ink);
}

/* Removed unused button and chip styles */

/* Card styles */

/* Cards / grids / text */
.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.card-body {
  padding: 20px;
}

@media (max-width: 768px) {
  .card-body {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .card-body {
    padding: 16px;
  }
}

.muted {
  color: var(--muted);
}

.headline {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section {
  padding: 48px 0;
}

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

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

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

/* Enterprise / Solutions strip */
.solutions {
  padding: 48px 0;
  background: linear-gradient(135deg, #2f2f2f, #062241, #2f2f2f);
  color: #e5e7eb;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .solutions {
    padding: 40px 0;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 32px 0;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .solutions {
    padding: 24px 0;
    margin-top: 24px;
  }
}

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

@media (max-width: 992px) {
  .sol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

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

.sol-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sol-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.sol-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.sol-card .card-body {
  padding: 0;
}

@media (max-width: 768px) {
  .sol-card {
    padding: 20px;
  }

  .sol-card h3 {
    font-size: 1.15rem;
    margin: 0 0 10px 0;
  }
}

@media (max-width: 480px) {
  .sol-card {
    padding: 18px;
  }

  .sol-card h3 {
    font-size: 1.1rem;
  }
}

/* Site layout sections */
header.sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.logo-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  opacity: 0.9;
}

.logo {
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fafc, #fff);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
}

.how-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

@media (max-width: 992px) {
  .how-grid {
    gap: 20px;
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .how-grid {
    gap: 16px;
    margin-top: 20px;
  }
}

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

@media (max-width: 768px) {
  .pricing-grid {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    gap: 16px;
  }
}

.featured-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .featured-grid {
    gap: 16px;
  }
}

/* Agent Card Styles */
.fetured-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px !important;
  gap: 18px;
  min-height: initial;
}

@media (max-width: 992px) {
  .fetured-card-body {
    padding: 24px !important;
    gap: 16px;
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .fetured-card-body {
    padding: 20px !important;
    gap: 14px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .fetured-card-body {
    padding: 18px !important;
    gap: 12px;
  }
}

.fetured-card-body .btn {
  margin-top: auto;
}

.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.agent-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.agent-avatar {
  height: 56px;
  width: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6366f1, #10b981);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.card:hover .agent-avatar {
  transform: scale(1.05);
}

.agent-info {
  flex: 1;
  min-width: 0;
}

.agent-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #000;
}

.agent-subtitle {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.3;
  word-wrap: break-word;
}

.agent-description {
  margin: 0;
  color: var(--ink, #333);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-hire {
  width: 100%;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.supervisor-grid .expert-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  /* height: 100%; */
  object-fit: cover;
  border-radius: var(--radius-sm);
  aspect-ratio: 1/0.75;
  border-radius: 12px;
  object-position: top;
}

.cases-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* HERO (from index-1, adapted) */
.hero {
  padding: 56px 0;
  background: radial-gradient(
      60% 60% at 70% -10%,
      rgba(14, 165, 164, 0.15),
      transparent 60%
    ),
    radial-gradient(
      40% 40% at 20% 100%,
      rgba(34, 197, 94, 0.12),
      transparent 60%
    );
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.hero-wrap .hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h-title {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}

.h-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 90%;
  margin: 8px 0;
}

.search-section {
  width: 100%;
  max-width: 720px;
  margin: 0;
  display: inline-block;
}

.search-section .search_input {
  width: 100%;
  border: none;
  outline: none;
}

.fetured-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.fetured-card-body .btn {
  margin-top: auto;
}

.search-section .search_input #search_project_dashboard.search-field {
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.search-section .search_input #search_project_dashboard.search-field:focus {
  box-shadow: none;
  border: 2px solid #000000;
  outline: none;
}

.search-section .search_input .search-btn {
  position: absolute;
  left: auto;
  right: 13px;
  top: 11px;
  border-radius: 100px;
  background: #000000;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--shadow);
}

.searchbar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 14px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.kpi .v {
  font-size: 22px;
  font-weight: 700;
}

.kpi .l {
  font-size: 12px;
  color: var(--muted);
}

/* Search type toggle */
.toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.toggle button {
  flex: 1;
  padding: 0.55rem 1rem;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
}

.toggle button.active {
  background: var(--primary);
  color: #fff;
}

/* Chip rotator — glow only */
.chip.rotator {
  position: relative;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 2.5px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.18);
  animation: chipGlow 3.2s ease-in-out infinite;
  display: inline-block;
}

#taglineText {
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#taglineText.fade {
  opacity: 0;
  transform: translateY(-6px);
}

@keyframes chipGlow {
  0%,
  100% {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.18);
  }

  50% {
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow: 0 12px 38px rgba(79, 70, 229, 0.28);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

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

  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .agent-name {
    font-size: 20px;
  }

  .agent-avatar {
    height: 48px;
    width: 48px;
    min-width: 48px;
    font-size: 20px;
  }

  .fetured-card-body {
    padding: 20px !important;
    min-height: 280px;
  }

  .agent-description {
    font-size: 14px;
  }

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

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

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .pricing-grid,
  .categories-grid,
  .featured-grid,
  .cases-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    gap: 16px;
  }

  .agent-header {
    gap: 12px;
  }

  .agent-avatar {
    height: 44px;
    width: 44px;
    min-width: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .agent-name {
    font-size: 18px;
  }

  .agent-subtitle {
    font-size: 13px;
  }

  .agent-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .fetured-card-body {
    padding: 18px !important;
    min-height: auto;
    gap: 14px;
  }

  .btn-hire {
    padding: 12px 18px;
    font-size: 14px;
  }

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

  .nav {
    display: none;
  }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .agent-header {
    gap: 10px;
  }

  .agent-avatar {
    height: 40px;
    width: 40px;
    min-width: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .agent-name {
    font-size: 16px;
  }

  .agent-subtitle {
    font-size: 12px;
  }

  .agent-description {
    font-size: 13px;
  }

  .fetured-card-body {
    padding: 16px !important;
    gap: 12px;
  }

  .btn-hire {
    padding: 11px 16px;
    font-size: 13px;
  }
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
}

.logo-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.logo {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.logo img:hover {
  opacity: 1;
}

/* CTA tabs inside the searchbar */
.hero-cta-wrapper {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}

.searchbar-centered {
  flex: 1;
  min-width: 300px;
}

.cta-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 2px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;

  transition: all ease 0.3s;
}

.cta-tab:active,
.cta-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 18px;
  line-height: 1.1;
}

.cta-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  line-height: 1.1;
}

.cta-tab.active {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.35);
}

.cta-tab.active .cta-sub {
  opacity: 0.9;
}

/* Developer button styling */
.cta-tab-developer {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  border-color: transparent;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.cta-tab-developer:hover {
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.cta-tab-developer .cta-sub {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-cta-wrapper {
    flex-direction: column;
  }
  
  .searchbar-centered {
    min-width: 100%;
  }
  
  .cta-tab-developer {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-title {
    font-size: 16px;
  }
}

/* Live Verticals grid/cards */
.verticals-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vcard {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  overflow: visible;
  color: #fff;
}

.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
}

/* LIVE card - Blue gradient */
.vcard-live {
  background: linear-gradient(135deg, #0a0a0a, #0069d9, #080a0e);
}

.vcard-live:hover {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* SOON cards - Purple gradient */
.vcard-soon {
      background: linear-gradient(135deg, #656565, #062241, #656565);
    opacity: 0.8;
}

.vcard-soon:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Card Header */
.vcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.vcard-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.vcard-icon svg {
  width: 24px;
  height: 24px;
}

/* Badges */
.vcard-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.vcard-badge-live {
  background: #22c55e;
  color: #fff;
}

.vcard-badge-coming {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}

/* Card Content */
.vcard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vcard-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.vcard-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Card Button */
.vcard-button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.vcard-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}


.vcard-button.vcard-button-explore{
  background: #28a745;
  color: #ffffff;
}

.vcard-button.vcard-button-explore:hover {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  color: #28a745;
  text-decoration: none;

}

.vcard-button-waitlist {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.vcard-button-waitlist:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Ribbon styles - Updated for two ribbons */
.vcard .ribbon {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  pointer-events: none;
  z-index: 1;
}

.ribbon-coming {
  top: 16px;
  right: -28px;
  transform: rotate(45deg);
  background: #fbbf24;
  color: #78350f;
}

.ribbon-can {
  top: 32px;
  right: -28px;
  transform: rotate(45deg);
  background: #fbbf24;
  color: #78350f;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .verticals-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .vcard {
    min-height: 240px;
    padding: 20px;
  }
  
  .vcard-title {
    font-size: 16px;
  }
  
  .vcard-description {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
  
  .vcard {
    min-height: auto;
  }
}

/* Legacy styles - keeping for compatibility */
.vtitle {
  font-weight: 700;
  line-height: 1.2;
}

.vcta {
  font-size: 14px;
}

a.vcta {
  color: #007bff;
}

.vstatus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.vstatus .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 1.9s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* How it works – segmented layout */
.howx-h1 {
  font-size: clamp(22px, 3.2vw, 32px);
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ============================================
   EXPERT SECTION STYLES
   ============================================ */

.expert-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .expert-section-header {
    gap: 20px;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .expert-section-header {
    gap: 16px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .expert-section-header {
    margin-bottom: 20px;
  }
}

.expert-title-block {
  flex: 1;
  min-width: 280px;
}

@media (max-width: 768px) {
  .expert-title-block {
    min-width: 100%;
  }
}

.expert-headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.expert-subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: #666;
}

.howx-seg {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.howx-seg button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.howx-seg button:hover {
  background: rgba(0, 0, 0, 0.04);
}

.howx-seg button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

/* Supervisor Grid */
.supervisor-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

@media (max-width: 992px) {
  .supervisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .supervisor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .supervisor-grid {
    gap: 16px;
    margin-top: 20px;
  }
}

.supervisor-grid .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.supervisor-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.supervisor-grid .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

@media (max-width: 768px) {
  .supervisor-grid .card-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .supervisor-grid .card-body {
    padding: 18px;
  }
}

.supervisor-grid .expert-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 1/0.75;
  object-position: top;
  margin-bottom: 16px;
}

.expert-card-title {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.expert-card-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px 0;
  color: #666;
}

.expert-card-rating {
  font-size: 14px;
  margin: 0 0 12px 0;
  color: #666;
  font-weight: 500;
}

.expert-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
}

.howx-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.comming-soon-blk .coming-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.comming-soon-blk .coming-card-body .coming-soon-icon svg {
  width: auto;
  height: 160px;
  color: var(--muted);
}

.comming-soon-blk .coming-card-body .coming-soon-icon svg path {
  stroke: var(--muted);
}

.comming-soon-blk .coming-card-body h2 {
  display: none;
}
.comming-soon-blk .coming-card-body h2,
.comming-soon-blk .coming-card-body p {
  margin: 0;
  padding: 0;
}

.tab-panel {
  display: none;
}

.tab-panel[aria-hidden="false"] {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

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

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

.howx-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.howx-media {
  aspect-ratio: 16/12;
  border-radius: 8px;
  overflow: hidden;
  margin: 12px;
  background: radial-gradient(
    120% 120% at 10% 0%,
    #d1fae5 0,
    #fef9c3 40%,
    #ffffff 100%
  );
  position: relative;
  border: 1px solid var(--border);
}

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

.howx-pad {
  padding: 0 16px 14px;
}

.howx-title {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  margin: 8px 0 4px;
}

.howx-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 12px;
}

.howx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--success);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.howx-cta:active {
  transform: translateY(1px);
}

.howx-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 700;
}

/* AI widget */
#aiInlineWidget svg path {
  stroke-dasharray: 14 10;
  animation: waveFlow 7s linear infinite;
}

#aiInlineWidget svg path:first-of-type {
  animation-duration: 9s;
}

#aiInlineWidget svg {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes waveFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #aiInlineWidget svg,
  #aiInlineWidget svg path {
    animation: none !important;
  }
}

/* Animate the two wave paths inside your existing widget */
#aiInlineWidget svg path {
  stroke-dasharray: 14 10;
  /* pattern of dash + gap */
  animation: waveFlow 7s linear infinite;
}

/* Make the thicker top line move a bit slower for depth */
#aiInlineWidget svg path:first-of-type {
  animation-duration: 9s;
}

/* Gentle vertical drift (parallax) for the whole SVG */
#aiInlineWidget svg {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes waveFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }

  /* negative = leftward flow */
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #aiInlineWidget svg,
  #aiInlineWidget svg path {
    animation: none !important;
  }
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mira-card {
  position: relative;
  min-height: 250px;
  /* background-image: url('https://cdn.mall91.com/a890eab5-76fa-445f-8bf1-fd7690dfde1e.png'); */
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Mira background image */
.mira-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("https://cdn.mall91.com/your-mira-bg.png") no-repeat right center / cover; */
  z-index: 0;
  opacity: 0.95;
}

.mira-content {
  position: relative;
  z-index: 1;
  padding-right: 240px;
}

.mira-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.mira-sub {
  font-size: 0.9rem;
  color: #64748b;
}

.mira-cta {
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;

  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.3);
  transition: transform 0.15s ease;
}

.mira-cta:hover {
  transform: translateY(-2px);
}

.mira-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #64748b;
}

.mira-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Mobile stacking */
@media (max-width: 768px) {
  .mira-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
    padding: 24px;
  }
  .mira-card::before {
    background-position: center bottom;
    background-size: cover;
    opacity: 0.85;
  }
}

.mira-card {
  position: relative;
  min-height: 415px; /* tweak if you want taller */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
/* Use <img> so we can control the focal point precisely */
.mira-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mira-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the card */
  object-position: center top; /* keep the TOP visible */
  display: block;
}
/* Bottom-centered CTA wrapper */
.cta-wrap {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  padding: 0 12px;
  width: 100%;
  max-width: 100%;
  pointer-events: none; /* so only the button gets clicks */
}
.mira-cta {
  pointer-events: auto;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 16px;
  background: #6366f1;
  color: #fff;
  border: 2px solid #6366f1;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: glowPulse 1.8s ease-in-out infinite;
}
.mira-cta:hover {
  transform: scale(1.04);
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px #6366f1, 0 0 10px rgba(99, 102, 241, 0.65);
  }
  50% {
    box-shadow: 0 0 8px #6366f1, 0 0 22px rgba(99, 102, 241, 0.9);
  }
  100% {
    box-shadow: 0 0 0px #6366f1, 0 0 10px rgba(99, 102, 241, 0.65);
  }
}
/* Mobile tweaks */
@media (max-width: 480px) {
  .mira-card {
    min-height: 280px;
  }
  .mira-cta {
    font-size: 15px;
    padding: 11px 22px;
  }
  .cta-wrap {
    bottom: 14px;
  }
}

/* ===== Card Component ===== */
.rgt_card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border: 1px solid #e5e7eb;
}
.rgt_card .card__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.rgt_card .card__actions {
  margin-top: 12px;
}
.rgt_card .card__footer {
  margin-top: 12px;
  text-align: center;
}

/* ===== Button Component ===== */
.rgt_card .button {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease,
    background-color 120ms ease;
}
.rgt_card .button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.rgt_card .button--primary {
  background-color: #14a800; /* Upwork-like green */
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.rgt_card .button--primary:hover {
  background-color: #129700;
}
.rgt_card .button--primary:active {
  transform: translateY(1px);
}

/* ===== Text / Link ===== */
.rgt_card .text {
  margin: 0;
}
.rgt_card .text--muted {
  color: #6b7280;
  font-size: 14px;
}

.rgt_card .link {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}
.rgt_card .link:hover {
  text-decoration: underline;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 420px) {
  .rgt_card .card {
    padding: 20px;
    border-radius: 10px;
  }
  .c.rgt_card ard__title {
    font-size: 18px;
  }
  .rgt_card .button {
    font-size: 15px;
    padding: 12px;
  }
  .rgt_card .text--muted {
    font-size: 13px;
  }
}

.price-grid-elements.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 2-column on medium+, slightly wider right card */
@media (min-width: 900px) {
  .price-grid-elements.grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* -------- Card -------- */
.price-grid-elements .card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.price-grid-elements .card.accent {
  border-color: #d1f3a0;
  box-shadow: 0 10px 24px rgba(67, 160, 71, 0.12), inset 0 0 0 1px #d1f3a0;
}

.price-grid-elements .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #000000;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}

.price-grid-elements .eyebrow {
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.price-grid-elements .price {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 18px 0;
}

.price-grid-elements .subhead {
  color: #4b5563;
  font-size: 16px;
  margin: 0 0 20px 0;
}

.price-grid-elements .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-grid-elements .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed #eef2f7;
}
.price-grid-elements .list li:first-child {
  border-top: none;
}

.price-grid-elements .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.price-grid-elements .actions {
  margin-top: 24px;
}

.price-grid-elements .button {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #16a34a;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #16a34a;
  transition: transform 0.05s ease-in, box-shadow 0.2s ease,
    background 0.2s ease;
}
.price-grid-elements .button:hover {
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}
.price-grid-elements .button:active {
  transform: translateY(1px);
}

.price-grid-elements .button.outline {
  background: #ffffff;
  color: #16a34a;
}

.price-grid-elements .button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.timeline-stauts-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.timeline-stauts-grid .card.timeline-card {
  background: linear-gradient(360deg, #e5ffe386, #ffffff);
  transition: all ease 0.3s;
  border: 1px solid #28a7455c;
}

.timeline-stauts-grid .card.timeline-card:hover {
  transform: translateY(-2px) scale(1.0001);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #28a745;
}

.timeline-stauts-grid .timeline-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.timeline-stauts-grid .timeline-card-body .card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.timeline-stauts-grid .timeline-card-body .card-value {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #28a745;
}

.timeline-stauts-grid .timeline-card-body .card-time {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

/* ===== Popup Base ===== */
/* Center the overlay */
.lead-modal-window {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.lead-modal-window.active {
  display: flex;
}

/* Modal container sizing */
.lpv3-modal-window__container {
  width: min(920px, 92vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow-x: hidden;
  overflow-y: auto;
}

/* Two-column layout */
.book-modal-step-1 {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Left image pane */
.book-modal-step-1__image {
  flex: 1 1 50%;
  min-height: 480px; /* ensures image column has height */
  overflow: hidden;
  background: #f5f5f5;
}
.book-modal-step-1__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right form pane */
.book-modal-step-1__content {
  flex: 1 1 50%;
  padding: 28px 30px;
  overflow: auto; /* scroll if very tall */
  max-height: 90vh;
}

.book-modal-step-1__content h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: normal;
  color: #000;
}

.book-modal-step-1__content p {
  color: #191919;
  line-height: normal;
  margin: 16px 0 8px;
  font-weight: 500;
}

/* Form fields */
.lead-form-blk .custom-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.lead-form-blk .custom-txtarea {
  min-height: 100px;
  resize: none;
}

/* Close (X) */
.lpv3-modal-window__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Responsive: stack on small screens */
@media (max-width: 720px) {
  .book-modal-step-1 {
    flex-direction: column;
  }
  .book-modal-step-1__image {
    min-height: 200px;
  }

  .book-modal-step-1__content h2 {
    font-size: 24px;
  }

  .book-modal-step-1__content p {
    margin: 8px 0 0px;
    font-size: 14px;
  }
}

/* ============================================
   EXPERT SECTION RESPONSIVE STYLES
   ============================================ */

/* Tablet - 992px and below */
@media (max-width: 992px) {
  .expert-section-header {
    gap: 16px;
    margin-bottom: 28px;
  }

  .expert-headline {
    font-size: 28px;
  }

  .expert-subtitle {
    font-size: 16px;
  }

  .howx-seg {
    width: 100%;
    justify-content: center;
  }

  .howx-seg button {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
    text-align: center;
  }

  .supervisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  .expert-card-title {
    font-size: 17px;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .expert-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .expert-title-block {
    min-width: 100%;
  }

  .expert-headline {
    font-size: 24px;
  }

  .expert-subtitle {
    font-size: 15px;
  }

  .howx-seg {
    width: 100%;
    border-radius: 12px;
    flex-direction: column;
  }

  .howx-seg button {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }

  .howx-seg button:last-child {
    border-bottom: none;
  }

  .supervisor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .supervisor-grid .card-body {
    padding: 18px;
  }

  .expert-card-title {
    font-size: 16px;
  }

  .expert-card-desc {
    font-size: 13px;
  }

  .expert-card-rating {
    font-size: 13px;
  }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
  .expert-section-header {
    gap: 16px;
    margin-bottom: 20px;
  }

  .expert-headline {
    font-size: 22px;
  }

  .expert-subtitle {
    font-size: 14px;
  }

  .howx-seg button {
    padding: 11px 14px;
    font-size: 13px;
  }

  .supervisor-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .supervisor-grid .card-body {
    padding: 16px;
  }

  .supervisor-grid .expert-img {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .expert-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .expert-card-desc {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .expert-card-rating {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .expert-card-tags {
    gap: 6px;
    padding-top: 10px;
  }

  .expert-card-tags .chip {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============================================
   UTILITY CLASSES FOR INLINE STYLES REPLACEMENT
   ============================================ */

/* Flexbox utilities */
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.flex-between-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.flex-center-gap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.flex-center-start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

/* Section header styles */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-header-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Typography utilities */
.headline-lg {
  font-size: 32px;
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}

.headline-md {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.headline-sm {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.subtitle-lg {
  font-size: 18px;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.subtitle-md {
  font-size: 16px;
  margin: 16px 0;
  line-height: 1.5;
}

.subtitle-sm {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.5;
}

/* Spacing utilities */
.mt-16 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-48 {
  padding-bottom: 48px;
}

.p-20 {
  padding: 20px;
}

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

@media (max-width: 768px) {
  .mt-32 {
    margin-top: 24px;
  }

  .mb-32 {
    margin-bottom: 24px;
  }

  .pt-48 {
    padding-top: 32px;
  }

  .pb-48 {
    padding-bottom: 32px;
  }

  .pt-32 {
    padding-top: 24px;
  }

  .pb-32 {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .mt-32 {
    margin-top: 20px;
  }

  .mt-24 {
    margin-top: 20px;
  }

  .mt-20 {
    margin-top: 16px;
  }

  .mb-32 {
    margin-bottom: 20px;
  }

  .mb-24 {
    margin-bottom: 20px;
  }

  .pt-48 {
    padding-top: 24px;
  }

  .pb-48 {
    padding-bottom: 24px;
  }

  .pt-32 {
    padding-top: 20px;
  }

  .pb-32 {
    padding-bottom: 20px;
  }
}

/* Text alignment */
.text-center {
  text-align: center;
}

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

/* Display utilities */
.d-inline-flex {
  display: inline-flex;
}

.d-grid-relative {
  display: grid;
  position: relative;
}

/* Solutions section specific */
.solutions-title {
  margin: 0 0 0.25rem;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.solutions-subtitle {
  color: #cbd5e1;
  margin: 0;
  font-size: 14px;
}

.sol-card-desc {
  color: #cbd5e1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.sale-tab-btn-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #000000;
}

.sale-tab-btn-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #0f172a;
}

/* CTA section */
.cta-headline {
  font-size: 26px;
  text-align: center;
  margin: 0;
  font-weight: 700;
}

.cta-text {
  color: #e2e8f0;
  text-align: center;
  margin: 8px 0;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}

.btn-white-primary {
  background: #fff;
  color: #0f172a;
}

/* Pricing section */
.pricing-header {
  text-align: left;
  margin: 0 auto 16px;
}

/* Vanta background */
.vanta-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Searchbar */
.searchbar-centered {
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

/* Verticals grid margin */
.grid-mt-16 {
  margin-top: 16px;
}

/* Responsive adjustments for utilities */
@media (max-width: 768px) {
  .headline-lg {
    font-size: 26px;
  }

  .headline-md {
    font-size: 24px;
  }

  .headline-sm {
    font-size: 20px;
  }

  .subtitle-lg {
    font-size: 16px;
  }

  .subtitle-md {
    font-size: 14px;
  }

  .flex-between,
  .flex-between-end,
  .section-header,
  .section-header-end {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .headline-lg {
    font-size: 22px;
  }

  .headline-md {
    font-size: 20px;
  }

  .headline-sm {
    font-size: 18px;
  }

  .subtitle-lg {
    font-size: 15px;
  }

  .solutions-title {
    font-size: 24px;
  }

  .cta-headline {
    font-size: 22px;
  }
}



/* --- Popup layout --- */
.lpv3-modal-window__container {
  width: min(920px, 92vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Close button */
.lpv3-modal-window__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #333;
  z-index: 10;
}

/* Image & form */
.book-modal-step-1 {
  display: flex;
  flex: 1;
}
.book-modal-step-1__image {
  flex: 1 1 50%;
  background: #f5f5f5;
}
.book-modal-step-1__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-modal-step-1__content {
  flex: 1 1 50%;
  padding: 30px;
  overflow-y: auto;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

/* Form styling */
.lead-form-blk {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.custom-input,
.custom-txtarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}
.lead-form-btn {
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.lead-form-btn:hover {
  background: #333;
}

/* Mobile fix */
@media (max-width: 720px) {
  .lpv3-modal-window__container {
    flex-direction: column;
  }
  .book-modal-step-1__image {
    height: 200px;
  }
}

.lead-modal-window.active {
  display: flex;
}
#spinner {
  display: none;
  margin-top: 8px;
  text-align: center;
}
.status-message {
  margin-top: 16px;
  font-size: 18px;
  background: #000;
  padding: 16px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  display: none;
}