@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary-font:"Sora", sans-serif;
  
  /* Color Palette */
  --bg-primary: #f1f4f6;
  --bg-white: #FFFFFF;
  --bg-dark: #0B0F19;
  --bg-dark-card: #1E293B;
  
  --text-dark: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Brand Colors */
  --accent-purple: #6366F1;
  --accent-fuchsia: #D946EF;
  --accent-cyan: #06B6D4;
  
  /* Borders and Shadows */
  --border-color: #E2E8F0;
  --border-radius-card: 24px;
  --border-radius-badge: 12px;
  --shadow-sm: 0px 4px 12px rgba(15, 23, 42, 0.02);
  --shadow-md: 0px 10px 30px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0px 20px 40px rgba(0, 0, 0, 0.04);
}

.sora-<uniquifier> {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.inter-tight-<uniquifier> {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* --- Base Rules --- */
body {
  font-family: var(--primary-font);
  background-color: var(--bg-primary) !important;
  color: var(--text-secondary);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 500;
  font-family: font-family: "Sora", sans-serif !important;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  font-family: "Inter Tight", sans-serif !important;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1299px;
}

a{
  text-decoration: none !important;
}

ul.list-unstyled {
    line-height: 34px;
}

.py-6 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Nexsas Premium Pill Button --- */
.btn-nexsas {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-nexsas-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-fuchsia) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0px 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-nexsas-text {
  height: 44px;
  padding: 0 26px;
  border-radius: 100px;
  background: var(--text-dark);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 0.01em;
}

.btn-nexsas:hover .btn-nexsas-icon {
  transform: scale(1.08) rotate(15deg);
}

.btn-nexsas:hover .btn-nexsas-text {
  background: #1e293b;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

/* --- Header / Navigation --- */

.mega-menu {
    width: 1000px;
    left: 13%!important;
    transform: translateX(-10%) !important;
    margin-top: 20px;
    border-radius: 24px;
}
.megamenu_box_inner
{
  width: 40px;
  height: 40px;
  border-color: #0708052d !important; 
}
.menu-item{
    display:flex;
    gap:15px;
    padding:12px;
    text-decoration:none;
    color:#222;
    border-radius:14px;
    margin-bottom:8px;
    transition:.3s;
    align-items: center;
}

.menu-item:hover{
    background:#f8f8f8;
}

.menu-item i{
    font-size:20px;
}

.feature-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.feature-box img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.dropdown-menu{
    padding:10px;
}

.dropdown-item{
    border-radius:10px;
    padding:10px 15px;
}

.dropdown-item:hover{
    background:#f5f5f5;
}

.mobile-link{
    display:block;
    padding:12px 20px;
    text-decoration:none;
    color:#222;
    border-radius:12px;
    margin-bottom:5px;
}

.mobile-link:hover{
    background:#f5f5f5;
}

.offcanvas{
    width:320px !important;
}

.accordion-button{
    background:none;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:none;
    color:#000;
}
.fixed-top a.navbar-brand {
    font-size: 26px !important;
}

@media (min-width: 992px) {

    .navbar .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(15px);
        transition:all .3s ease;
        margin-top:0;
        pointer-events:none;
    }

    .navbar .dropdown:hover > .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
        pointer-events:auto;
    }

}

.nav-dropdown{
    display:flex;
    align-items:center;
    gap:6px;
    color:#6b7280;
    font-weight:500;
}

.dropdown-toggle::after{
    display:none !important;
}

.dropdown-arrow{
    display:inline-flex;
    transition:all .3s ease;
}

.nav-item:hover .dropdown-arrow{
    transform:rotate(180deg);
}


.icon-box{
    width:42px;
    height:42px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .35s ease;
}

.icon-box svg{
    transition:all .35s ease;
}

.icon-box path{
    transition:all .35s ease;
}

.menu-item:hover .icon-box{
    background:#111827;
    border-color:#111827;
}

.menu-item:hover .icon-box svg{
    transform:translateX(3px);
}

.menu-item:hover .icon-box path{
    stroke:#fff;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 60px;
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.03) 0%, rgba(244, 246, 248, 0) 60%);
  position: relative;
  overflow: visible;
}

.hero-text-col {
  z-index: 5;
  position: relative;
}

.hero-title {
  font-size: 64px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 400;
}

/* --- Hero Graphic Showcase Area --- */
.hero-graphic-area {
  position: relative;
  margin: 60px auto 0;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brain-container {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(6, 182, 212, 0.15));
}

.brain-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Floating Card General Rules */
.floating-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.floating-card:hover {
  box-shadow: 0px 25px 50px rgba(15, 23, 42, 0.08);
  border-color: rgba(226, 232, 240, 1);
}

.card-wade-warren {
  top: 15%;
  left: 5%;
  padding: 8px;
  border-radius: 20px;
}

.wade-badge {
  background: var(--text-dark);
  border-radius: 16px;
  padding: 12px 20px;
}

.wade-avatar-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--accent-fuchsia);
  border: 2px solid var(--bg-white);
}

.wade-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wade-name {
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.wade-title {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.card-sales-chart {
  bottom: 12%;
  left: 2%;
  width: 320px;
  padding: 24px;
}

.sales-tabs {
  background: var(--bg-primary);
  padding: 4px;
  border-radius: 100px;
  display: inline-flex;
}

.sales-tabs .tab-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sales-tabs .tab-item.active {
  background: var(--text-dark);
  color: var(--bg-white);
}

.sales-main-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.sales-growth-badge {
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.sales-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 160px;
  line-height: 1.4;
}

.sales-mini-chart {
  height: 60px;
}

.chart-bar {
  width: 10px;
  border-radius: 100px;
  background: #E2E8F0;
  position: relative;
  transition: height 0.3s ease;
}

.chart-bar.active {
  background: linear-gradient(to top, var(--accent-purple), var(--accent-fuchsia));
}

.chart-bar::after {
  content: attr(data-month);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-light);
}

.card-efficiency {
  top: 30%;
  right: 5%;
  width: 220px;
  padding: 24px;
}

.eff-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  display: inline-block;
  margin-right: -8px;
}

.eff-avatar-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--accent-purple);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-count-badge {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.eff-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.eff-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

/* --- Partner Logos Section --- */
.partner-logos-section {
  padding: 60px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  background: var(--bg-white);
  overflow: hidden;
}

.logos-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-item {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-svg {
  color: var(--text-light);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.partner-svg:hover {
  color: var(--text-dark);
  opacity: 1;
  transform: scale(1.05);
}

/* --- Features Block --- */
.features-section {
  background-color: var(--bg-primary);
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  padding: 36px;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 232, 240, 1);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background-color: var(--text-dark);
  color: var(--bg-white);
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- Case Studies --- */
.case-studies-section {
}

.case-study-row {
  margin-bottom: 16px;
}

.case-study-row:nth-child(even) {
  flex-direction: row-reverse;
}

.case-image-card {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-row:hover .case-img {
  transform: scale(1.05);
}

.case-info-card {
  background-color: var(--bg-dark);
  border-radius: var(--border-radius-card);
  padding: 40px;
  color: var(--bg-white);
}

.case-info-card .case-title {
  color: var(--bg-white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.case-info-card .case-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.case-author .author-name {
  font-size: 15px;
  font-weight: 600;
}

.case-author .author-role {
  font-size: 12px;
  color: var(--text-light);
}

.case-stats-card {
  background-color: #fff;
  border-radius: var(--border-radius-card);
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: background-color 0.3s ease;
}

.case-study-row:hover .case-stats-card {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-color: rgba(226, 232, 240, 1);
}

.case-arrow-link {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.case-study-row:hover .case-arrow-link {
  transform: rotate(45deg) scale(1.05);
  background-color: var(--accent-purple);
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.03em;
}

.stat-item .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: capitalize;
}

/* --- Interactive Showcase --- */
.showcase-section {
  background-color: var(--bg-primary);
}

.showcase-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

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

.showcase-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.showcase-visual {
  width: 100%;
  position: relative;
}

.node-item-box {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.node-item-box.node-main {
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.node-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}

.node-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}

.shield-ring {
  transition: transform 10s linear infinite;
}

.ring-outer {
  animation: rotateClockwise 20s linear infinite;
}

.ring-middle {
  animation: rotateCounterClockwise 15s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* --- Pricing Block --- */
.pricing-section {
}

.pricing-container {
  background-color: var(--bg-dark);
  border-radius: 32px;
  overflow: hidden;
}

.pricing-glow-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 10%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 90%, rgba(217, 70, 239, 0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.1);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.highlighted {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-plan-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-plan-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features ul li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-card.highlighted .pricing-features ul li {
  color: #E2E8F0;
}

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

.check-icon.active {
  color: var(--accent-fuchsia);
  opacity: 1;
}

.btn-pricing-grey {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  border-radius: 100px;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 14px;
  border: none;
  transition: all 0.25s ease;
}

.btn-pricing-grey:hover {
  background-color: #E2E8F0;
  transform: translateY(-1px);
}

/* --- Ecosystem Integrations --- */
.integrations-section {
  background-color: var(--bg-primary);
}

.integration-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

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

.app-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* --- Testimonials --- */
.testimonials-section {
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius-card);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-white);
  border-color: rgba(226, 232, 240, 1);
}

.testimonial-card.dark {
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-color: transparent;
}

.testimonial-card.dark:hover {
  background-color: #1e293b;
}

.testimonial-text {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
}

.testimonial-user {
    margin-top: 50px !important;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user .user-name {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-user .user-role {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Blog & News --- */
.blog-section {
  background-color: var(--bg-primary);
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

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

.blog-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-badge {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent-purple);
}

/* --- CTA Banner --- */
.cta-banner-section {
}

.cta-banner-section-inner {
    background-image: url(../../assets/images/ai-automaction.jpg);
    background-size: cover;
    background-position: center;
}

.cta-container {
  background-color: var(--bg-dark);
  border-radius: 32px;
  overflow: hidden;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 15px;
  line-height: 1.6;
}

.cta-image-wrapper {
  max-width: 320px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer-section {
  background-color: var(--bg-primary);
}

.footer-container {
  background-color: var(--bg-dark);
  border-radius: 32px;
  color: var(--bg-white);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--bg-white);
  padding-left: 4px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--bg-white);
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
  box-shadow: none;
  color: var(--bg-white);
}

/* --- Floating Sticky Action Badges --- */
.floating-badge-demo-row {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background-color: #EF4444;
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0px 10px 30px rgba(239, 68, 68, 0.3);
  z-index: 1000;
  cursor: pointer;
  white-space: nowrap;
}

.floating-purchase-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #22C55E;
  color: var(--bg-white);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0px 10px 25px rgba(34, 197, 94, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-purchase-btn:hover {
  transform: translateY(-3px) scale(1.03);
  color: var(--bg-white);
  box-shadow: 0px 15px 30px rgba(34, 197, 94, 0.5);
}

/* --- Scroll triggered animation utilities --- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* --- SPECIFIC RESOLUTION MEDIA QUERIES --- */

/* 1920px and above (Default Ultra-Wide Layout Desktop) */
@media (min-width: 1920px) {
  .container-xl {
    max-width: 1400px;
  }
  .hero-title {
    font-size: 72px;
  }
  .hero-graphic-area {
    margin-top: 80px;
  }
}

/* 1440px Laptop Widths */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 60px;
  }
  .card-wade-warren {
    left: 8%;
  }
  .card-efficiency {
    right: 8%;
  }
}

/* 1366px Standard Notebook Widths */
@media (max-width: 1366px) {
  .hero-title {
    font-size: 54px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .card-wade-warren {
    left: 3%;
  }
  .card-efficiency {
    right: 3%;
  }
  .card-sales-chart {
    left: 1%;
  }
}

/* 1200px Desktop Breakpoint */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }
  .card-wade-warren {
    left: 1%;
  }
  .card-efficiency {
    right: 1%;
  }
  .card-sales-chart {
    left: -2%;
  }
  .cta-title {
    font-size: 32px;
  }
}

/* 992px Tablet Breakpoint */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 140px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-graphic-area {
    margin-top: 40px;
    min-height: 400px;
  }
  .brain-container {
    max-width: 340px;
  }
  .card-wade-warren {
    top: 5%;
    left: 2%;
  }
  .card-sales-chart {
    bottom: 5%;
    left: -5%;
    width: 280px;
  }
  .card-efficiency {
    top: 25%;
    right: -5%;
    width: 180px;
  }
  .logos-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .logo-item {
    width: calc(25% - 30px);
  }
  .case-image-card {
    min-height: 240px;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-phone-img {
    max-width: 260px;
    margin-top: 24px;
  }
  .py-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 768px Small Tablet / Large Mobile Breakpoint */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  /* Stacking hero floating cards underneath brain on mobile to preserve content & quality */
  .hero-graphic-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: auto;
    margin-top: 30px;
  }
  .brain-container {
    margin-bottom: 12px;
    max-width: 260px;
  }
  .floating-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 320px;
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
  }
  
  .logo-item {
    width: calc(50% - 30px);
  }
  .py-6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-title {
    font-size: 28px;
  }
  .testimonial-masonry {
    display: flex;
    flex-direction: column;
  }
}

/* 576px Mobile Portrait Breakpoint */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .logo-item {
    width: 100%;
  }
  .feature-card {
    padding: 24px;
  }
  .case-info-card, .case-stats-card {
    padding: 24px;
  }
  .stat-item .stat-number {
    font-size: 28px;
  }
  .showcase-card {
    padding: 24px;
  }
}

/* 320px iPhone SE / Tiny Screen Breakpoint */
@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .btn-nexsas-text {
    padding: 0 16px;
    font-size: 13px;
  }
  .floating-card {
    max-width: 260px;
  }
  .card-sales-chart {
    padding: 16px;
  }
  .sales-main-number {
    font-size: 20px;
  }
  .sales-subtitle {
    font-size: 10px;
  }
}


.hero-img-animate {
    animation: 4s infinite hero-img-animate;
}

@keyframes hero-img-animate {
  0%, 100% {
    transform: translateY(-2%);
  }

  50% {
    transform: translateY(2%);
  }
}


.faq-section{
    position:relative;
}

.faq-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(99,102,241,.08);
    color:#6366f1;
    font-weight:600;
    margin-bottom:20px;
}

.faq-title{
    margin-bottom:15px;
}

.faq-subtitle{
    margin:auto;
}

.custom-faq{
    max-width:900px;
    margin:auto;
    margin-top:30px;
}

.custom-faq .accordion-item{
    border:none;
    background:#fff;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    transition:.3s;
}

.custom-faq .accordion-item:hover{
    transform:translateY(-3px);
}

.custom-faq .accordion-button{
    background:#fff;
    padding:24px 30px;
    box-shadow:none !important;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#fff;
}

.custom-faq .accordion-body{
    padding:0 30px 30px;
    line-height:1.8;
}

.custom-faq .accordion-button::after{
    border-radius:50%;
    background-size:16px;
}




.about-modern{
    padding:80px 0;
}

.headline-wrap{
    margin-bottom:40px;
}

.eyebrow{
    color:#333;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
}

.mega-title{
    font-size:50px;
    color:#333;
    letter-spacing:-2px;
    padding-top: 20px;
}

.bento-grid{
    display:grid;
    gap:20px;
    grid-template-columns:1fr 2fr;
}

.bento-card {
    background: rgb(255 255 255);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: .4s;
}

.bento-card:hover{
    transform:translateY(-8px);
    border-color:rgba(124,58,237,.5);
}

.stat-card h3{
    color:#000;
    margin:0;
}

.stat-card p{
    color:#9ca3af;
    margin-top:10px;
}

.about-card{
    display:flex;
    align-items:center;
}

.about-card p{
    color:#d1d5db;
    font-size:24px;
    line-height:1.7;
    margin:0;
}

@media(max-width:768px){

    .bento-grid{
        grid-template-columns:1fr;
    }

    .mega-title{
        font-size:52px;
    }
}


.tech-stack-section {
    overflow: hidden;
    position: relative;
}

.tech-content{
    max-width:500px;
    padding-left:50px;
}

.tech-badge{
    display:inline-block;
    background:#eef2ff;
    color:#6366f1;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.tech-content h2{
    color:#111827;
    margin-bottom:20px;
}

.tech-content p{
    color:#6b7280;
    margin-bottom:35px;
}

.tech-slider{
    overflow:hidden;
    margin-bottom:30px;
}

.tech-track{
    display:flex;
    width:max-content;
    gap:24px;
    animation: marquee 28s linear infinite;
}

.reverse .tech-track{
    animation-direction: reverse;
}

.tech-card{
    width:220px;
    min-width:220px;
    height:160px;
    background:#fff;
    border-radius:28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.4s;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.tech-card img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin-bottom:15px;
}

.tech-card h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111827;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Responsive */

@media(max-width:991px){

    .tech-content{
        padding-left:0;
        text-align:center;
        margin-bottom:50px;
    }

    .tech-content h2{
        font-size:38px;
    }

    .tech-card{
        width:180px;
        min-width:180px;
        height:140px;
    }

}

@media(max-width:767px){

    .tech-stack-section{
        padding:80px 0;
    }

    .tech-content h2{
        font-size:32px;
    }

    .tech-content p{
        font-size:16px;
    }

}

.industries-section{
    padding:60px 0;
    position:relative;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    background:#eef2ff;
    color:#7c3aed;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}
.industry-card {
    position: relative;
    background: #0b0f19;
    border: 1px solid #11172c;
    border-radius: 28px;
    padding: 20px;
    height: 100%;
    overflow: hidden;
    transition: .4s;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: #00000000;
    box-shadow: 0 20px 50px rgb(112 112 112 / 12%);
}

.industry-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #43454a, #18223c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.industry-icon svg{
    width:30px;
    height:30px;
}
.industry-no {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: #1c202a;
}
.industry-card p {
    color: #999;
}



@media(max-width:767px){
    .industry-card{
        padding:25px;
    }

}
.footer-legal a{
  font-size: 14px;
  color: #999;
}
.footer-copyright
{
  font-size: 14px;
  color: #999;
}


.portfolio-showcase{
    overflow:hidden;
    color:#fff;
}

.top-badge{
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}

.stats{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:40px;
}

.stats h3{
    font-size:2rem;
    font-weight:700;
}

.stats p{
    color:#8b8b8b;
}

.slider-wrapper{
    overflow:hidden;
    margin-top:60px;
}

.portfolio-track{
    display:flex;
    width:max-content;
    gap:25px;
    animation:scroll 30s linear infinite;
}

.portfolio-track:hover{
    animation-play-state:paused;
}

.portfolio-card{
    width:380px;
    position:relative;
    overflow:hidden;
    border-radius:28px;
    flex-shrink:0;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
}

.portfolio-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.7s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        transparent
    );
}

.content span{
    display:inline-block;
    padding:8px 14px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    margin-bottom:12px;
}

.content h4{
    font-weight:700;
    margin-bottom:8px;
    color: #fff;
}

.content p{
    color:#ddd;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .portfolio-card{
        width:280px;
    }

    .portfolio-card img{
        height:380px;
    }

    .stats{
        gap:25px;
    }

}
























.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    background: rgb(0 0 0 / 72%);
    border: 1px solid rgb(0 0 0 / 11%);
    backdrop-filter: blur(20px);
    font-weight: 500;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    position:relative;
}

.dot::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#00ff88;
    animation:ping 2s infinite;
}

@keyframes ping{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(4);
        opacity:0;
    }
}

/* ================================
   TRUST SECTION
================================ */

.trust-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 110, 253, .07), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(111, 66, 193, .07), transparent 30%),
        #ffffff;
}

/* Soft Background */
.trust-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(13, 110, 253, .08);
    top: -220px;
    left: -180px;
}

.trust-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(111, 66, 193, .08);
    bottom: -200px;
    right: -150px;
}

/* Heading */

.trust-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 50px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #f4f7ff;
    border: 1px solid #e3eaff;
    color: #356df5;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.trust-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #111827;
    margin-bottom: 15px;
}

.trust-heading h2 span {
    color: #356df5;
}

.trust-heading p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* ================================
   STATS
================================ */

.trust-stats {
    position: relative;
    z-index: 2;
}

.trust-stat {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px 18px;
    background: rgba(255,255,255,.85);
    border: 1px solid #e9edf5;
    border-radius: 18px;
    transition: all .35s ease;
    box-shadow: 0 8px 30px rgba(17,24,39,.04);
}

.trust-stat:hover {
    transform: translateY(-6px);
    border-color: #cfdcff;
    box-shadow: 0 15px 35px rgba(37,99,235,.10);
}

.stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f1f5ff;
    color: #356df5;
    font-size: 21px;
}

.trust-stat h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.trust-stat h3 span {
    color: #356df5;
    font-size: 17px;
}

.trust-stat p {
    margin: 6px 0 0;
    color: #737b8c;
    font-size: 13px;
    font-weight: 500;
}


/* ================================
   PLATFORM TRUST
================================ */

.platform-trust {
    position: relative;
    z-index: 2;
    margin-top: 55px;
    padding-top: 32px;
    border-top: 1px solid #edf0f5;
}

.platform-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.platform-title span {
    width: 55px;
    height: 1px;
    background: #dfe4ec;
}

.platform-title p {
    margin: 0;
    color: #8a92a2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.platform-logo {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    background: #fff;
    color: #596273;
    text-decoration: none;
    transition: all .3s ease;
}

.platform-logo:hover {
    color: #111827;
    border-color: #d6deef;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17,24,39,.06);
}

.platform-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.clutch-icon {
    background: #17313b;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.goodfirm-icon {
    color: #20a66a;
}

.google-icon {
    color: #4285f4;
}

.platform-logo strong {
    font-size: 14px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 767px) {

    .trust-section {
        padding: 65px 0;
    }

    .trust-heading {
        margin-bottom: 35px;
    }

    .trust-heading h2 {
        letter-spacing: -1px;
    }

    .trust-stat {
        padding: 17px 13px;
        gap: 10px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .trust-stat h3 {
        font-size: 23px;
    }

    .trust-stat p {
        font-size: 11px;
    }

    .platform-logos {
        gap: 10px;
    }

    .platform-logo {
        min-width: 135px;
        padding: 11px 12px;
    }
}