
/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root{
  /* Colors */
  --sg-navy:       #05070A;
  --sg-navy-2:     #0A0F1A;
  --sg-navy-3:     #101827;
  --sg-line:       rgba(255, 255, 255, 0.08);
  --sg-ink:        #E7ECF5;
  --sg-ink-dim:    #93A0B8;
  --sg-ink-faint:  #5C6B85;
  --sg-blue:       #2F6FED;
  --sg-blue-dim:   rgba(47, 111, 237, 0.14);
  --sg-danger:     #F0576B;
  --sg-warning:    #F0B429;
  --sg-success:    #2FD08A;

  /* Type */
  --sg-font-head:  'Space Grotesk', 'Segoe UI', sans-serif;
  --sg-font-body:  'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --sg-container:  1240px;
  --sg-gutter:     24px;
  --sg-radius:     10px;
  --sg-radius-sm:  6px;
  --sg-shadow:     0 16px 40px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; }


html{
  scroll-behavior: smooth;
}

body{
  background: var(--sg-navy);
  color: var(--sg-ink);

  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .h1, .h2, .h3, .h4{
  
  font-weight: 600;
  line-height: 1.25;
  color: var(--sg-ink);
  margin: 0 0 12px;
}
h1, .h1{ font-size: 40px; letter-spacing: -0.5px; }
h2, .h2{ font-size: 30px; }
h3, .h3{ font-size: 22px; }
h4, .h4{ font-size: 18px; }

p{ margin: 0 0 16px; color: var(--sg-ink-dim); }
small, .text-sm{ font-size: 13px; color: var(--sg-ink-faint); }

.text-cyan{ color: var(--sg-blue); }
.text-muted{ color: var(--sg-ink-dim); }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container,
.sg-container{
  width: 100%;
  max-width: var(--sg-container);
  margin: 0 auto;
  padding: 0 var(--sg-gutter);
  box-sizing: border-box;
}

.sg-section{ padding: 64px 0; }

.sg-grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.sg-sidebar{
  background: var(--sg-navy-2);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  padding: 20px;
}

.sg-content{ min-width: 0; } /* prevents grid children overflowing on long content/tables */

.sg-page-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   Cards & stats
   -------------------------------------------------------------------------- */
.sg-cards,
.sg-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.sg-card,
.sg-panel{
  background: var(--sg-navy-2);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  padding: 22px;
}

.sg-card h3, .sg-card .h3{ font-size: 15px; color: var(--sg-ink-dim); font-weight: 500; margin-bottom: 6px; }
.sg-card .sg-card__value{  font-size: 28px; font-weight: 600; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.sg-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--sg-radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.sg-btn-primary{
  background: var(--sg-blue);
  color: #FFFFFF;
}
.btn-primary:hover{ filter: brightness(1.08); }

.sg-btn-outline{
  background: transparent;
  border-color: white;
  color: var(--sg-ink);
}
.btn-outline:hover{ border-color: var(--sg-blue); color: var(--sg-blue); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.sg-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

label{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-ink-dim);
  margin-bottom: 6px;
}

input, select, textarea{
  width: 100%;
  background: var(--sg-navy-3);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius-sm);
  padding: 10px 12px;
  color: var(--sg-ink);

  font-size: 14px;
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--sg-blue);
  box-shadow: 0 0 0 3px var(--sg-blue-dim);
}

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.sg-table-wrap{ background: var(--sg-navy-2); border: 1px solid var(--sg-line); border-radius: var(--sg-radius); }

table{ width: 100%; border-collapse: collapse; }
th, td{
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--sg-line);
}
th{ color: var(--sg-ink-dim); font-weight: 500; }
tr:last-child td{ border-bottom: none; }

   /* ==========================================================================
   SISGAIN — Simple centered hero with full-bleed background image
   ========================================================================== */

.sg-hero-simple {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* ---------- Background image + overlay ---------- */

.sg-hero-simple__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sg-hero-simple__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sg-hero-simple__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.72) 0%, rgba(8, 12, 24, 0.6) 50%, rgba(8, 12, 24, 0.8) 100%);
}

/* ---------- Centered content ---------- */

.sg-hero-simple .sg-container {
  position: relative;
  z-index: 1;
}

.sg-hero-simple__content {
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

.sg-hero-simple .sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dbe4fb;
  margin-bottom: 24px;
}
.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sg-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5b7cff;
  display: block;
  flex-shrink: 0;
}

.sg-hero-simple__title {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}



.sg-hero-simple__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 36px;
  max-width: 600px;
}

.sg-hero-simple__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.sg-hero-simple .btn-primary {
  background: #2952e3;
  color: #fff;
  border: 1px solid #2952e3;
}

.sg-hero-simple .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sg-hero-simple .btn-outline:hover {
  border-color: #fff;
}

/* ---------- Trust stats ---------- */

.sg-hero-simple__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sg-hero-simple__trust div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sg-hero-simple__trust strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.sg-hero-simple__trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .sg-hero-simple {
    min-height: 520px;
  }

  .sg-hero-simple__content {
    padding: 56px 0;
  }

  .sg-hero-simple__actions {
    flex-direction: column;
  }

  .sg-hero-simple .btn {
    width: 100%;
  }

  .sg-hero-simple__trust {
    gap: 24px;
  }
}


/* ---------- dashboard card ---------- */

.sg-hero__visual {
  position: relative;
  opacity: 0;
  animation: sg-fade-up 0.8s ease 0.2s forwards;
}

.sg-dashboard {
  position: relative;
  background: rgba(13, 18, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* rotating conic-gradient "live sync" ring behind the card edge */
.sg-dashboard__glow {
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent 0%, var(--sg-glow) 8%, transparent 20%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: sg-spin 6s linear infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes sg-spin {
  to { transform: rotate(360deg); }
}

.sg-dashboard__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-dashboard__dots {
  display: flex;
  gap: 6px;
}

.sg-dashboard__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.sg-dashboard__crumb {
  
  font-size: 12.5px;
  color: var(--sg-muted);
}

.sg-dashboard__live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  
  font-size: 12px;
  font-weight: 600;
  color: #7fd8a4;
}

.sg-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-flex;
}

.sg-pulse__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.sg-pulse__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  animation: sg-ring 1.8s ease-out infinite;
}

@keyframes sg-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.sg-dashboard__body {
  padding: 22px;
}

.sg-dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.sg-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
}

.sg-kpi__label {
  font-size: 12px;
  color: var(--sg-muted);
  margin-bottom: 6px;
}

.sg-kpi__value {
  
  font-size: 19px;
  font-weight: 600;
  color: var(--sg-ink);
}

.sg-kpi__trend {
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}

.sg-kpi__trend.is-up   { color: #4ade80; }
.sg-kpi__trend.is-down { color: #f87171; }

.sg-dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  margin-bottom: 22px;
}

.sg-dashboard__chart .bar {
  flex: 1;
  background: rgba(59, 130, 246, 0.35);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s ease;
}

.sg-dashboard__chart .bar.is-peak {
  background: var(--sg-blue);
}

.sg-dashboard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.sg-lead-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sg-lead-row__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  color: #9db8f5;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sg-lead-row__info {
  flex: 1;
  min-width: 0;
}

.sg-lead-row__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sg-ink);
}

.sg-lead-row__company {
  font-size: 12px;
  color: var(--sg-muted);
}

.sg-lead-row__value {
  
  font-size: 13px;
  color: var(--sg-ink);
  white-space: nowrap;
}

.sg-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.sg-pill.is-won      { background: rgba(34, 197, 94, 0.15);  color: #4ade80; }
.sg-pill.is-progress { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }
.sg-pill.is-new      { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .sg-hero__grid {
    grid-template-columns: 1fr;
  }
  .sg-hero__trust {
    flex-wrap: wrap;
    row-gap: 16px;
  }
}

@media (max-width: 640px) {
  .sg-hero {
    padding: 90px 0 70px;
  }
  .sg-hero__video-bg video,
  .sg-hero__grain,
  .sg-hero__orb {
    display: none;
  }
  .sg-hero__vignette {
    background: var(--sg-void);
  }
}

/* ---------- accessibility: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .sg-hero__video-bg video { display: none; }
  .sg-hero__vignette { background: var(--sg-void); }
  .sg-hero__orb,
  .sg-eyebrow__dot,
  .sg-pulse__ring,
  .sg-dashboard__glow,
  .sg-eyebrow,
  .sg-hero__title,
  .sg-lead,
  .sg-hero__actions,
  .sg-hero__trust,
  .sg-hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* --------------------------------------------------------------------------
   CRM FEATURES
   -------------------------------------------------------------------------- */
   /* ===========================
   CRM FEATURES SECTION
=========================== */

.sgcrm{
    position:relative;
    padding:100px 0;
    background:#081018;
    overflow:hidden;
}

.sgcrm::before{
    content:"";
    position:absolute;
    top:-220px;
    left:50%;
    transform:translateX(-50%);
    width:900px;
    height:500px;
    background:radial-gradient(circle,rgba(0,123,255,.12),transparent 70%);
    pointer-events:none;
}

.sgcrm-container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.sgcrm-head{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.sgcrm-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(0,123,255,.08);
    border:1px solid rgba(0,123,255,.25);
    color:#4C6FFF;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:20px;
}

.sgcrm-eyebrow::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#4C6FFF;
    box-shadow:0 0 10px #4C6FFF;
}

.sgcrm-heading{
    color:#fff;
    font-size:clamp(34px,5vw,50px);
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.sgcrm-sub{
    color:#A8B2C4;
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* ===========================
   GRID
=========================== */

.sgcrm-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:24px;
}

/* ===========================
   CARD
=========================== */

.sgcrm-card{
    background:#12141D;
    border:1px solid #232838;
    border-radius:20px;
    padding:32px;
    transition:.35s;
}

.sgcrm-card:hover{
    transform:translateY(-6px);
    border-color:#4C6FFF;
    box-shadow:0 18px 40px rgba(76,111,255,.18);
}

/* ===========================
   IMAGE CARD
=========================== */

/* .sgcrm-card--main{
    grid-row:span 5;
    padding:0;
    overflow:hidden;
    min-height:760px;
} */

/* .sgcrm-main-image{
    width: 300px;      
    height: 300px;
    display: block;
    object-fit: cover;
    transition: .5s;

} */

.sgcrm-card--main:hover .sgcrm-main-image{
    transform:scale(1.05);
}

/* ===========================
   FEATURE ICON
=========================== */

.sgcrm-icon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:linear-gradient(135deg,#4C6FFF,#7C6CFF);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    box-shadow:0 10px 24px rgba(76,111,255,.35);
}

.sgcrm-icon svg{
    width:24px;
    height:24px;
}

.sgcrm-card h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}

.sgcrm-card p{
    color:#9AA3B2;
    font-size:15px;
    line-height:1.8;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.sgcrm{
padding:70px 0;
}

.sgcrm-grid{
grid-template-columns:1fr;
}

.sgcrm-card--main{
grid-row:auto;
min-height:auto;
}

.sgcrm-main-image{
height:auto;
}

.sgcrm-heading{
font-size:36px;
}

}

@media(max-width:576px){

.sgcrm-head{
margin-bottom:40px;
}

.sgcrm-card{
padding:24px;
}

.sgcrm-heading{
font-size:30px;
}

.sgcrm-sub{
font-size:15px;
}

.sgcrm-icon{
width:50px;
height:50px;
}

}
   .sgcrm-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:22px;

}

.sgcrm-card{

    background:#12141D;

    border:1px solid #232838;

    border-radius:18px;

    padding:30px;

    transition:.35s;

}

.sgcrm-card:hover{

    transform:translateY(-6px);

    border-color:#4C6FFF;

    box-shadow:0 18px 40px rgba(76,111,255,.18);

}

/* Left Image */

.sgcrm-card--main{

    grid-row:span 2;

    padding:0;

    overflow:hidden;
height: auto;
    /* min-height:700px; */

}

.sgcrm-main-image{

    width:100%;

    height:600px;

    /* object-fit:cover; */

    /* display:block; */

    /* transition:.6s; */

}

.sgcrm-card--main:hover .sgcrm-main-image{

    transform:scale(1.04);

}

/* Right Cards */

.sgcrm-icon{

    width:50px;

    height:50px;

    border-radius:14px;

    background:linear-gradient(135deg,#4C6FFF,#7C6CFF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    margin-bottom:20px;

}

.sgcrm-card h3{

    color:#fff;

    font-size:20px;

    margin-bottom:12px;

}

.sgcrm-card p{

    color:#9AA3B2;

    font-size:15px;

    line-height:1.7;

}
@media(max-width:992px){

.sgcrm-grid{

grid-template-columns:1fr;

}

.sgcrm-card--main{

grid-row:auto;

min-height:auto;

}

.sgcrm-main-image{

height:auto;

}

}
/* ===== Trusted By marquee section ===== */
.sgtrust {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
  color: #ffffff;

  background-image:
    linear-gradient(90deg, rgba(5,7,13,0.55), rgba(5,7,13,0.75)),
    url("/assets/img/trusted-by-bg.jpg");
  background-size: cover;
  background-position: center;
}

.sgtrust-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #05070d, #10151f);
  z-index: -1;
}

.sgtrust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Heading ===== */
.sgtrust-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sgtrust-line {
  flex: 0 0 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.sgtrust-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #f5f7fb;
  white-space: nowrap;
}

/* ===== Marquee ===== */
.sgtrust-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.sgtrust-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.sgtrust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

/* ===== Boxed logo card ===== */
.sgtrust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121218;
    border: 1px solid #23242e;
    border-radius: 14px;
    padding: 22px 32px;
    min-width: 200px;
    height: 90px;
    flex-shrink: 0;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sgtrust-logo:hover {
    border-color: #34324a;
    background: #17171f;
    transform: translateY(-2px);
}

.sgtrust-logo img {
    height: 32px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sgtrust-track:hover {
    animation-play-state: paused;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .sgtrust {
        padding: 36px 0 32px;
    }
    .sgtrust-heading {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }
    .sgtrust-logo {
        min-width: 150px;
        height: 72px;
        padding: 16px 20px;
    }
    .sgtrust-logo img {
        height: 24px;
    }
}


/* --------------------------------------------------------------------------
   Dashboard
   -------------------------------------------------------------------------- */
   .sgdash {
  --sgdash-ink: #F3F5F9;
  --sgdash-ink-soft: #8B93A7;
  --sgdash-bg: #0A0C12;
  --sgdash-panel: #12141D;
  --sgdash-panel-hi: #171a26;
  --sgdash-line: #232838;
  --sgdash-accent: #4C6FFF;
  --sgdash-accent-2: #7C6CFF;
  --sgdash-accent-soft: rgba(76, 111, 255, 0.12);
  --sgdash-green: #34D399;
  --sgdash-red: #F87171;
  --sgdash-amber: #FBBF24;

  position: relative;
  background: var(--sgdash-bg);
  color: var(--sgdash-ink);
  padding: 100px 24px;
  
  overflow: hidden;
}

.sgdash::before {
  content: '';
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(76, 111, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.sgdash-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.sgdash-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.sgdash-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sgdash-accent);
  background: var(--sgdash-accent-soft);
  border: 1px solid rgba(76, 111, 255, 0.3);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sgdash-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgdash-accent);
  box-shadow: 0 0 8px 1px var(--sgdash-accent);
}

.sgdash-heading {

  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.sgdash-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--sgdash-ink-soft);
  margin: 0 auto;
}

/* Stage: window + floating badges */
.sgdash-stage {
  position: relative;
}

.sgdash-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sgdash-panel-hi);
  border: 1px solid var(--sgdash-line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--sgdash-ink-soft);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
  animation: sgdash-float 5s ease-in-out infinite;
}

.sgdash-float strong {
  color: var(--sgdash-green);
  font-weight: 700;
}

.sgdash-float--tl {
  top: -18px;
  left: 24px;
}

.sgdash-float--br {
  bottom: -18px;
  right: 24px;
  animation-delay: 1.4s;
}

@keyframes sgdash-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.sgdash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgdash-green);
  box-shadow: 0 0 8px 1px var(--sgdash-green);
  flex-shrink: 0;
}

/* Window */
.sgdash-window {
  background: var(--sgdash-panel);
  border: 1px solid var(--sgdash-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

.sgdash-titlebar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sgdash-line);
  background: var(--sgdash-panel-hi);
}

.sgdash-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.sgdash-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3f4f;
  display: block;
}

.sgdash-tabs {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.sgdash-tabs::-webkit-scrollbar { display: none; }

.sgdash-tab {
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
 
  font-size: 13px;
  font-weight: 600;
  color: var(--sgdash-ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sgdash-tab:hover {
  color: var(--sgdash-ink);
}

.sgdash-tab.is-active {
  background: var(--sgdash-accent-soft);
  color: var(--sgdash-accent);
}

.sgdash-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sgdash-green);
}

/* Panels */
.sgdash-panels {
  padding: 28px 28px 32px;
}

.sgdash-panel {
  display: none;
  animation: sgdash-fade 0.35s ease;
}

.sgdash-panel.is-active {
  display: block;
}

@keyframes sgdash-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sgdash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sgdash-stat {
  background: var(--sgdash-bg);
  border: 1px solid var(--sgdash-line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sgdash-stat-label {
  font-size: 12px;
  color: var(--sgdash-ink-soft);
}

.sgdash-stat-value {

  font-size: 20px;
  font-weight: 700;
}

.sgdash-stat-value em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}

.sgdash-stat-value em.up { color: var(--sgdash-green); }
.sgdash-stat-value em.down { color: var(--sgdash-red); }

/* Bars */
.sgdash-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 92px;
  margin-bottom: 26px;
  padding: 0 4px;
}

.sgdash-bars span {
  flex: 1;
  height: var(--h, 40%);
  background: linear-gradient(180deg, var(--sgdash-accent-2), var(--sgdash-accent));
  border-radius: 5px;
  opacity: 0.55;
}

.sgdash-bars span.is-peak {
  opacity: 1;
  box-shadow: 0 8px 20px -6px rgba(76, 111, 255, 0.7);
}

/* Rows (pipeline + team share this) */
.sgdash-rows,
.sgdash-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sgdash-row,
.sgdash-team-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-top: 1px solid var(--sgdash-line);
}

.sgdash-row:first-child,
.sgdash-team-row:first-child {
  border-top: none;
}

.sgdash-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--sgdash-accent-soft);
  border: 1px solid rgba(76, 111, 255, 0.35);
  color: var(--sgdash-accent);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11.5px;
  font-weight: 700;
}

.sgdash-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.sgdash-row-text strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sgdash-ink);
}

.sgdash-row-text span {
  font-size: 12px;
  color: var(--sgdash-ink-soft);
}

.sgdash-amount {

  font-size: 13.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.sgdash-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}

.sgdash-tag--won { background: rgba(52, 211, 153, 0.14); color: var(--sgdash-green); }
.sgdash-tag--progress { background: var(--sgdash-accent-soft); color: var(--sgdash-accent); }
.sgdash-tag--new { background: rgba(251, 191, 36, 0.14); color: var(--sgdash-amber); }

/* Analytics chart */
.sgdash-chart {
  margin-bottom: 14px;
}

.sgdash-chart svg {
  width: 100%;
  height: 140px;
  display: block;
}

.sgdash-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--sgdash-line);
  font-size: 12.5px;
  color: var(--sgdash-ink);
}

.sgdash-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.sgdash-legend-muted {
  color: var(--sgdash-ink-soft);
  margin-left: auto;
}

.sgdash-legend-muted + .sgdash-legend-muted {
  margin-left: 14px;
}

/* Team progress */
.sgdash-progress {
  flex: 1;
  max-width: 140px;
  height: 6px;
  border-radius: 4px;
  background: var(--sgdash-bg);
  border: 1px solid var(--sgdash-line);
  overflow: hidden;
}

.sgdash-progress span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--sgdash-accent), var(--sgdash-accent-2));
  border-radius: 4px;
}

.sgdash-progress-val {
  flex-shrink: 0;
  width: 38px;
  text-align: right;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sgdash-ink-soft);
}

/* Responsive */
/* Responsive */

/* Tablets / small laptops */
@media (max-width: 900px) {
  .sgdash { padding: 80px 20px; }
  .sgdash-head { margin-bottom: 48px; }
}

/* Tablets → phones */
@media (max-width: 720px) {
  .sgdash { padding: 72px 20px; }
  .sgdash-head { margin-bottom: 44px; }
  .sgdash-float { display: none; }
  .sgdash-titlebar { gap: 12px; padding: 12px 14px; }
  .sgdash-status span { display: none; }
  .sgdash-panels { padding: 20px 16px 24px; }
  .sgdash-stats { grid-template-columns: 1fr; gap: 10px; }
  .sgdash-row-text span,
  .sgdash-team-row .sgdash-row-text span { display: block; }
  .sgdash-legend { flex-wrap: wrap; row-gap: 8px; }
  .sgdash-legend-muted { margin-left: 0; }
  .sgdash-legend-muted + .sgdash-legend-muted { margin-left: 10px; }
}

/* Phones */
@media (max-width: 576px) {
  .sgdash { padding: 56px 14px; }
  .sgdash-container { padding: 0; }
  .sgdash-heading { font-size: clamp(22px, 6vw, 28px); }
  .sgdash-sub { font-size: 14px; }

  .sgdash-window { border-radius: 14px; }
  .sgdash-titlebar { gap: 8px; padding: 10px 12px; }
  .sgdash-tab { padding: 6px 10px; font-size: 12px; }

  .sgdash-bars { gap: 6px; height: 76px; margin-bottom: 20px; }

  .sgdash-row,
  .sgdash-team-row { gap: 10px; padding: 12px 2px; flex-wrap: wrap; }
  .sgdash-avatar { width: 30px; height: 30px; font-size: 10.5px; }
  .sgdash-row-text strong { font-size: 13px; }
  .sgdash-row-text span { font-size: 11.5px; }
  .sgdash-tag { font-size: 10px; padding: 4px 9px; }

  .sgdash-chart svg { height: 110px; }
}

/* Small phones */
@media (max-width: 480px) {
  .sgdash-amount { display: none; }
  .sgdash-progress { max-width: 80px; }
  .sgdash-stat { padding: 12px 14px; }
  .sgdash-stat-value { font-size: 17px; }
  .sgdash-tabs { gap: 2px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .sgdash-float { animation: none; }
  .sgdash-panel { animation: none; }
}
/* ===== Why Choose Our CRM section ===== */

.sgwhy {
  background: #05070d;
  padding: 40px 24px;
  color: #e8ebf3;
  border-top: 1px solid #131a2b;
}

.sgwhy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sgwhy-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.sgwhy-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f9dfb;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sgwhy-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #f5f7fb;
}

.sgwhy-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #9aa3b8;
  margin: 0;
}

.sgwhy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.sgwhy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px;
}

.sgwhy-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  color: #6f9dfb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sgwhy-item-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #f5f7fb;
  margin: 0 0 6px;
}

.sgwhy-item-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #9aa3b8;
  margin: 0;
}

.sgwhy-cta {
  text-align: center;
  margin-top: 56px;
}

.sgwhy-btn {
  display: inline-block;
  background: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sgwhy-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .sgwhy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sgwhy-grid {
    grid-template-columns: 1fr;
  }
  .sgwhy-heading {
    font-size: 28px;
  }
}
/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Industries — tab switcher
   -------------------------------------------------------------------------- */
   /* ==========================================================================
   SISGAIN — Industries panel image
   Add-on styles: only the new .sg-industry-panel__media / __body rules.
   Merge into your existing industries stylesheet.
   ========================================================================== */

.sg-industry-panel {
  /* image sits above the body content now, so panel becomes a column layout */
  display: none;
  flex-direction: column;
  overflow: hidden; /* keeps the image's rounded top corners clipped */
}

.sg-industry-panel.is-active {
  display: flex;
}

.sg-industry-panel__media {
  width: 100%;
  height: 220px;
  background: #1a2038;
  margin: -1px -1px 0; /* pulls flush against the panel's own border, if any */
}

.sg-industry-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-industry-panel__body {
  padding: 32px 32px 36px;
}

/* remove old panel padding if your existing .sg-industry-panel rule sets it
   directly (padding now lives on __body instead) */
.sg-industries{ margin-top: 2rem; padding: 40px 0; border-top: 1px solid var(--sg-line); background-color: #000; }

.sg-industries__layout{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.sg-industry-tabs{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sg-industry-tab{
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--sg-radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--sg-ink-dim);

  font-size: 14.5px;
  font-weight: 500;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sg-industry-tab:hover{
  background: rgba(255,255,255,0.03);
  color: var(--sg-ink);
}
.sg-industry-tab.is-active{
  background: var(--sg-blue-dim);
  border-color: rgba(47,111,237,0.30);
  color: #fff!important;
}
.sg-industry-tab__icon{
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--sg-navy-3);
  color: var(--sg-ink-faint);
  transition: background .15s ease, color .15s ease;
}
.sg-industry-tab.is-active .sg-industry-tab__icon{
  background: var(--sg-blue);
  color: #FFFFFF;
}


@keyframes sg-fade-in{
  from{ opacity: 0; transform: translateY(4px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .sg-industry-panel.is-active{ animation: none; }
}

.sg-industry-panel__head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.sg-industry-panel__head .sg-industry-tab__icon{
  background: var(--sg-blue);
  color: #FFFFFF;
  width: 44px; height: 44px;
}
.sg-industry-panel h3{ font-size: 22px; margin: 0; }

.sg-industry-panel p{ font-size: 15px; margin-bottom: 20px; }

.sg-industry-panel__list{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.sg-industry-panel__list li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--sg-ink-dim);
}
.sg-industry-panel__list li svg{ flex-shrink: 0; margin-top: 3px; color: var(--sg-blue); }

.sg-industry-panel a.btn{ margin-top: 4px; }

/* ===== Compliance & Control Frameworks section ===== */

.sgcomp {
  background: #05070d;
  padding: 96px 24px;
  color: #e8ebf3;
  border-top: 1px solid #131a2b;
}

.sgcomp-container {
  max-width: 1240px;
  margin: 0 auto;
}

.sgcomp-head {
  max-width: 780px;
  margin: 0 0 56px;
}

.sgcomp-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
  color: #f5f7fb;
}

.sgcomp-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #9aa3b8;
  margin: 0;
  max-width: 680px;
}

.sgcomp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f5f6f9;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.35);
}

.sgcomp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid #e4e6ee;
  border-bottom: 1px solid #e4e6ee;
}

.sgcomp-card:nth-child(5n) {
  border-right: none;
}

.sgcomp-badge {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sgcomp-badge svg {
  width: 30px;
  height: 30px;
}

.sgcomp-badge--blue     { background: #e8f0fe; color: #3b82f6; }
.sgcomp-badge--navy     { background: #e9edf7; color: #1e3a8a; }
.sgcomp-badge--slate    { background: #eceef2; color: #334155; }
.sgcomp-badge--green    { background: #e6f6ef; color: #0f9d63; }
.sgcomp-badge--outline  { background: #f0f1f5; color: #475569; border: 1px solid #d6d9e2; }
.sgcomp-badge--purple   { background: #6d5bd0; }
.sgcomp-badge--indigo   { background: #4c4fd6; }

.sgcomp-badge--filled.sgcomp-badge--navy { background: #1e3a8a; }

.sgcomp-label {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
}

.sgcomp-sublabel {
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}

.sgcomp-card--wordmark .sgcomp-wordmark {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .sgcomp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sgcomp-card:nth-child(5n) {
    border-right: 1px solid #e4e6ee;
  }
  .sgcomp-card:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .sgcomp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sgcomp-card:nth-child(3n) {
    border-right: 1px solid #e4e6ee;
  }
  .sgcomp-card:nth-child(2n) {
    border-right: none;
  }
  .sgcomp-heading {
    font-size: 26px;
  }
}

/* --------------------------------------------------------------------------
   Stats / trust bar
   -------------------------------------------------------------------------- */
.sg-stats-bar{
  border-top: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  background:
    linear-gradient(180deg, rgba(47,111,237,0.06), transparent 60%),
    var(--sg-navy-2);
}

.sg-stats-bar__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sg-stat{
  padding: 44px 24px;
  text-align: center;
  border-left: 1px solid var(--sg-line);
}
.sg-stat:first-child{ border-left: none; }

.sg-stat__value{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  
  font-size: 2rem;
  font-weight: 700;
  color: var(--sg-ink);
  line-height: 1;
  margin-bottom: 10px;
}
.sg-stat__value .sg-stat__suffix{
  font-size: 26px;
  color: var(--sg-blue);
}
.sg-stat__label{
  font-size: 13.5px;
  color: var(--sg-ink-dim);
  letter-spacing: 0.2px;
}

/*-------------------------------------------------
Process

-------------------------------------------------*/
.sgzig {
  --sgzig-ink: #F3F5F9;
  --sgzig-ink-soft: #8B93A7;
  --sgzig-bg: #0A0C12;
  --sgzig-card: #12141D;
  --sgzig-line: #232838;
  --sgzig-accent: #4C6FFF;
  --sgzig-accent-2: #7C6CFF;
  --sgzig-accent-soft: rgba(76, 111, 255, 0.12);
  --sgzig-green: #34D399;

  background: var(--sgzig-bg);
  color: var(--sgzig-ink);
  padding: 96px 24px;
  
}

.sgzig-container {
  max-width: 1080px;
  margin: 0 auto;
}

.sgzig-head {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

.sgzig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sgzig-accent);
  background: var(--sgzig-accent-soft);
  border: 1px solid rgba(76, 111, 255, 0.3);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sgzig-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgzig-accent);
  box-shadow: 0 0 8px 1px var(--sgzig-accent);
}

.sgzig-heading {

  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.sgzig-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--sgzig-ink-soft);
  margin: 0 auto;
}

/* Timeline */
.sgzig-timeline {
  position: relative;
}

.sgzig-row {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  min-height: 160px;
  opacity: 0;
  transform: translateY(16px);
  animation: sgzig-in 0.6s ease forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes sgzig-in {
  to { opacity: 1; transform: translateY(0); }
}

.sgzig-card-slot--left {
  display: flex;
  justify-content: flex-end;
  padding-right: 28px;
}

.sgzig-card-slot--right {
  display: flex;
  justify-content: flex-start;
  padding-left: 28px;
}

.sgzig-card {
  width: 100%;
  max-width: 420px;
  background: var(--sgzig-card);
  border: 1px solid var(--sgzig-line);
  border-radius: 14px;
  padding: 30px 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.sgzig-card:hover {
  border-color: rgba(76, 111, 255, 0.4);
  transform: translateY(-2px);
}

.sgzig-card h3 {

  font-size: 19px;
  font-weight: 600;
  color: var(--sgzig-ink);
  margin: 0 0 12px;
}

.sgzig-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--sgzig-ink-soft);
  margin: 0 0 16px;
}

.sgzig-outcome {
  display: block;
  font-size: 13.5px;
  font-style: italic;
  color: var(--sgzig-green);
}

/* Center node column */
.sgzig-node-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.sgzig-node-slot::before {
  content: '';
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: 50%;
  width: 2px;
  background: var(--sgzig-line);
  transform: translateX(-50%);
  z-index: -1;
}

.sgzig-row:first-child .sgzig-node-slot::before {
  top: 50%;
}

.sgzig-row:last-child .sgzig-node-slot::before {
  bottom: 50%;
}

.sgzig-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--sgzig-accent), var(--sgzig-accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--sgzig-bg), 0 8px 20px -6px rgba(76, 111, 255, 0.6);
}

.sgzig-node-label {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sgzig-accent);
  white-space: nowrap;
}
@media (max-width: 820px) {
  .sgzig-row {
    grid-template-columns: 44px 1fr;
    min-height: 0;
    padding-bottom: 36px;
  }

  .sgzig-node-slot {
    grid-column: 1;
    grid-row: 1;
  }

  .sgzig-card-slot--left,
  .sgzig-card-slot--right {
    grid-column: 2;
    grid-row: 1;
    padding-left: 20px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .sgzig-node-slot::before {
    left: 50%;
  }

  .sgzig-node {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .sgzig-node-label {
    display: none;
  }

  .sgzig-card {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .sgzig { padding: 64px 20px; }
  .sgzig-head { margin-bottom: 48px; }
  .sgzig-card { padding: 24px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .sgzig-row {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .sgzig-card {
    transition: none;
  }
  .sgzig-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   SISGAIN — Simple testimonials slider
   ========================================================================== */
  .sg-section__head{
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.sg-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #3B82F6;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.sg-eyebrow__dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3B82F6;
}

.sg-section__head h2{
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.sg-section__head p{
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #94A3B8;
}

.sgt3 {
  --sg-bg: #0a0e1a;
  --sg-surface: #12172a;
  --sg-line: #232a42;
  --sg-ink: #f4f6fb;
  --sg-ink-soft: #98a0b3;
  --sg-teal: #2dd4c8;
  --sg-blue: #4d6bff;
  --sg-violet: #7c5cff;

  background: var(--sg-bg);
  padding: 88px 24px;
}

.sgt3 * { box-sizing: border-box; }

/* ---------- Viewport / arrows ---------- */

.sgt3-viewport {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sgt3-arrow {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sg-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--sg-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.sgt3-arrow:hover {
  border-color: var(--sg-teal);
  color: var(--sg-teal);
  background: rgba(45, 212, 200, 0.08);
}

.sgt3-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ---------- Window / track ----------
   THE FIX: min-width: 0 overrides the flex default of
   min-width: auto, which was preventing this element from
   shrinking below the width of its content on small screens. */

.sgt3-window {
  flex: 1 1 0%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge/IE */
}
.sgt3-window::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.sgt3-track {
  display: flex;
  gap: 24px;
}

/* ---------- Card ---------- */

.sgt3-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  background: var(--sg-surface);
  border: 1px solid var(--sg-line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.sgt3-quotemark {
  color: var(--sg-teal);
  margin-bottom: 18px;
}

.sgt3-quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: #d7dbe8;
  margin: 0 0 24px;
  flex: 1;
}

.sgt3-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sg-line);
}

.sgt3-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sg-line);
}

.sgt3-name {
  font-size: 15px;
  font-weight: 650;
  color: #fff;
}

.sgt3-role {
  font-size: 13px;
  color: var(--sg-ink-soft);
  margin-top: 2px;
}

/* ---------- Dots ---------- */

.sgt3-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.sgt3-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sg-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.sgt3-dot:hover {
  background: #3a4361;
}

.sgt3-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--sg-blue), var(--sg-violet));
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .sgt3-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767.98px) {
  .sgt3 { padding: 56px 16px; }
  .sg-section__head { margin-bottom: 40px; }
  .sg-section__head h2 { font-size: 30px; }
  .sg-section__head p { font-size: 15px; margin-top: 16px; }

  .sgt3-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 24px 20px;
  }

  .sgt3-quote { font-size: 14.5px; margin-bottom: 18px; }
  .sgt3-person { padding-top: 16px; }
  .sgt3-avatar { width: 40px; height: 40px; }

  /* Overlay the arrows on top of the card track instead of
     stealing flex width from it — this is what actually gives
     the card its full width back on narrow screens. */
  .sgt3-viewport {
    position: relative;
    gap: 0;
  }
  .sgt3-window { width: 100%; }

  .sgt3-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    z-index: 2;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(2px);
  }
  .sgt3-arrow--prev { left: 4px; }
  .sgt3-arrow--next { right: 4px; }

  .sgt3-dots { margin-top: 28px; }
}

@media (max-width: 399.98px) {
  .sgt3 { padding: 44px 12px; }
  .sg-section__head h2 { font-size: 26px; }
  .sg-eyebrow { font-size: 12px; margin-bottom: 12px; }

  .sgt3-card { padding: 20px 16px; border-radius: 14px; }
  .sgt3-quote { font-size: 14px; line-height: 1.6; }
  .sgt3-name { font-size: 14px; }
  .sgt3-role { font-size: 12px; }

  .sgt3-track { gap: 16px; }
}


/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.sg-cta-band{ padding: 88px 0 96px; }

.sg-cta-panel{
  position: relative;
  overflow: hidden;
  background: var(--sg-navy-2);
  border: 1px solid rgba(47,111,237,0.30);
  border-radius: 16px;
  padding: 64px 56px;
  text-align: center;
}
.sg-cta-panel::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 280px at 50% -20%, rgba(47,111,237,0.22), transparent 70%);
  pointer-events: none;
}

.sg-cta-panel > *{ position: relative; }

.sg-cta-panel h2{
  font-size: 34px;
  max-width: 560px;
  margin: 0 auto 14px;
}
.sg-cta-panel p{
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.sg-cta-panel__actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.sg-cta-panel__contact{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid var(--sg-line);
  padding-top: 24px;
  font-size: 13.5px;
  color: var(--sg-ink-dim);
}
.sg-cta-panel__contact a{
  color: var(--sg-ink);
  text-decoration: none;
  font-weight: 500;
}
.sg-cta-panel__contact a:hover{ color: var(--sg-blue); }
.sg-cta-panel__contact span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sg-cta-panel__contact svg{ color: var(--sg-blue); flex-shrink: 0; }
 /* ---------- Responsive ---------- */

@media (max-width: 767.98px) {
  .sg-cta-band { padding: 64px 0 72px; }

  .sg-cta-panel {
    padding: 40px 24px;
    border-radius: 14px;
  }

  .sg-cta-panel h2 {
    font-size: 26px;
    max-width: 100%;
  }
  .sg-cta-panel p {
    font-size: 14.5px;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .sg-cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }
  .sg-cta-panel__actions .btn,
  .sg-cta-panel__actions .sg-btn {
    width: 100%;
  }

  .sg-cta-panel__contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 399.98px) {
  .sg-cta-panel { padding: 32px 18px; }
  .sg-cta-panel h2 { font-size: 22px; }
  .sg-cta-panel p { font-size: 14px; }
}

/*---------------------------------------------------------
FAQ
------------------------------*/
.sgfaq {
  --sgfaq-ink: #F3F5F9;
  --sgfaq-ink-soft: #8B93A7;
  --sgfaq-bg: #0A0C12;
  --sgfaq-card: #12141D;
  --sgfaq-line: #232838;
  --sgfaq-accent: #4C6FFF;
  --sgfaq-accent-soft: rgba(76, 111, 255, 0.12);

  background: var(--sgfaq-bg);
  color: var(--sgfaq-ink);
  padding: 96px 24px;
  
}

.sgfaq-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.sgfaq-side {
  position: sticky;
  top: 32px;
}

.sgfaq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sgfaq-accent);
  background: var(--sgfaq-accent-soft);
  border: 1px solid rgba(76, 111, 255, 0.3);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sgfaq-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgfaq-accent);
  box-shadow: 0 0 8px 1px var(--sgfaq-accent);
}

.sgfaq-heading {

  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--sgfaq-ink);
}

.sgfaq-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sgfaq-ink-soft);
  margin: 0 0 28px;
  max-width: 30ch;
}

.sgfaq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sgfaq-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.sgfaq-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Right column: accordion */
.sgfaq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sgfaq-item {
  background: var(--sgfaq-card);
  border: 1px solid var(--sgfaq-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.sgfaq-item.is-open {
  border-color: rgba(76, 111, 255, 0.4);
}

.sgfaq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
 
  font-size: 15px;
  font-weight: 600;
  color: var(--sgfaq-ink);
  cursor: pointer;
}

.sgfaq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sgfaq-accent-soft);
  color: var(--sgfaq-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.sgfaq-item.is-open .sgfaq-icon {
  background: var(--sgfaq-accent);
  color: #fff;
  transform: rotate(45deg);
}

.sgfaq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.sgfaq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--sgfaq-ink-soft);
}

.sgfaq-item.is-open .sgfaq-answer {
  grid-template-rows: 1fr;
}

.sgfaq-item.is-open .sgfaq-answer p {
  padding-bottom: 22px;
}

/* Fallback for browsers without grid-template-rows animation support */
.sgfaq-answer > p {
  grid-row: 1;
}

/* Responsive */
@media (max-width: 860px) {
  .sgfaq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sgfaq-side {
    position: static;
  }
  .sgfaq-sub {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .sgfaq { padding: 64px 20px; }
  .sgfaq-question { padding: 16px 18px; font-size: 14px; }
  .sgfaq-answer p { padding: 0 18px; }
  .sgfaq-item.is-open .sgfaq-answer p { padding-bottom: 18px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .sgfaq-answer,
  .sgfaq-icon,
  .sgfaq-item,
  .sgfaq-cta {
    transition: none;
  }
}


/* --------------------------------------------------------------------------
   Modal / dialog
   -------------------------------------------------------------------------- */
.sg-modal{
  background: var(--sg-navy-2);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  box-shadow: var(--sg-shadow);
  padding: 24px;
  max-width: 480px;
  margin: 48px auto;
}

/* ===== Reusable CTA strip ===== */

.sgstrip {
  --sg-void: #05070d;
  --sg-ink: #f5f7fb;
  --sg-muted: #9aa3b8;
  --sg-blue: #3b82f6;
  --sg-blue-deep: #1d4ed8;

  background: linear-gradient(100deg, #0d1220, #10182c 60%, #0d1220);
  border-top: 1px solid #1c2333;
  border-bottom: 1px solid #1c2333;
  padding: 36px 24px;
}

.sgstrip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sgstrip-text {
  flex: 1;
  min-width: 0;
}

.sgstrip-heading {
  font-size: 21px;
  font-weight: 700;
  color: var(--sg-ink);
  margin: 0 0 4px;
}

.sgstrip-sub {
  font-size: 14.5px;
  color: var(--sg-muted);
  margin: 0;
}

.sgstrip-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.sgstrip-btn {
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sgstrip-btn--primary {
  background: var(--sg-blue);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
}

.sgstrip-btn--primary:hover {
  background: var(--sg-blue-deep);
  transform: translateY(-2px);
}

.sgstrip-btn--outline {
  background: transparent;
  color: var(--sg-ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sgstrip-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ---- responsive ---- */

@media (max-width: 700px) {
  .sgstrip-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .sgstrip-actions {
    width: 100%;
  }
  .sgstrip-btn {
    flex: 1;
    justify-content: center;
  }
}
/* ==========================================================================
   SISGAIN — CRM Services (alternate "editorial index" style)
   Pairs with includes/crm-services-alt.php
   ========================================================================== */

.sg-crmx {
  --sg-bg: #ffffff;
  --sg-ink: #0f1424;
  --sg-ink-soft: #62687a;
  --sg-line: #e6e8ee;
  --sg-navy-3: #f3f4f8;
  --sg-blue: #2952e3;

  background: var(--sg-bg);
  color: var(--sg-ink);
  padding: 100px 0;
}

.sg-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Intro ---------- */

.sg-crmx__intro {
  max-width: 620px;
  margin-bottom: 56px;
}

.sg-crmx__eyebrow {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: var(--sg-ink-soft);
  margin-bottom: 18px;
}

.sg-crmx__intro h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--sg-ink);
}

.sg-crmx__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sg-ink-soft);
  margin: 0;
}

/* ---------- Horizontal tab bar ---------- */

.sg-crmx__tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--sg-ink);
  border-bottom: 1px solid var(--sg-line);
  margin-bottom: 0;
}

.sg-crmx__tab {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--sg-line);
  padding: 18px 22px;
  cursor: pointer;
  font: inherit;
  color: var(--sg-ink-soft);
  position: relative;
  transition: color 0.15s ease;
}

.sg-crmx__tab:last-child {
  border-right: none;
}

.sg-crmx__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--sg-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.sg-crmx__tab:hover {
  color: var(--sg-ink);
}

.sg-crmx__tab.is-active {
  color: var(--sg-ink);
}

.sg-crmx__tab.is-active::after {
  transform: scaleX(1);
  background: var(--sg-blue);
}

.sg-crmx__tab-index {
  font-style: italic;
  font-size: 13px;
  color: var(--sg-blue);
}

.sg-crmx__tab-label {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Combined panel ---------- */

.sg-crmx__panel {
  position: relative;
}

.sg-crmx__row {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--sg-line);
}

.sg-crmx__row.is-active {
  display: grid;
  animation: sgCrmxFade 0.4s ease;
}

@keyframes sgCrmxFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sg-crmx__media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--sg-navy-3);
  aspect-ratio: 4 / 3;
}

.sg-crmx__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-crmx__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sg-crmx__copy-index {
 
  font-style: italic;
  font-size: 14px;
  color: var(--sg-blue);
  margin-bottom: 14px;
}

.sg-crmx__copy h3 {
 
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--sg-ink);
}

.sg-crmx__copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sg-ink-soft);
  margin: 0 0 24px;
}

.sg-crmx__bullets {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--sg-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-crmx__bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sg-ink);
}

.sg-crmx__bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sg-blue);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .sg-crmx {
    padding: 64px 0;
  }

  .sg-crmx__tab {
    padding: 14px 16px;
  }

  .sg-crmx__tab-label {
    font-size: 13px;
  }

  .sg-crmx__row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .sg-crmx__copy h3 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .sg-crmx__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .sg-crmx__tab {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-crmx__row.is-active {
    animation: none;
  }
}


/* --------------------------------------------------------------------------
   Technology stack
   -------------------------------------------------------------------------- */
.sg-stack{ padding: 30px 0; border-top: 1px solid var(--sg-line); background-color: #000;}

.sg-stack-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sg-stack-card{
  background: var(--sg-navy-2);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  padding: 24px 20px;
  transition: border-color .15s ease, transform .15s ease;
}
.sg-stack-card:hover{
  border-color: rgba(47,111,237,0.35);
  transform: translateY(-3px);
}

.sg-stack-card__icon{
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: var(--sg-blue-dim);
  color: var(--sg-blue);
  margin-bottom: 16px;
}

.sg-stack-card h3{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--sg-ink-dim);
  margin: 0 0 16px;
}

.sg-stack-chips{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sg-stack-chips li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sg-ink);
}
.sg-stack-chips li::before{
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sg-blue);
  flex-shrink: 0;
}

/* ---------- Responsive breakpoints ---------- */

/* Large tablets / small laptops: 5 → 3 columns */
@media (max-width: 1199.98px){
  .sg-stack-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Tablets: 3 → 2 columns */
@media (max-width: 767.98px){
  .sg-stack{ padding: 24px 0; }
  .sg-stack-grid{ grid-template-columns: repeat(1, 1fr)!important; gap: 14px; }
  .sg-stack-card{ padding: 20px 16px; }
}

/* Phones: 2 → 1 column, stacked full width */
@media (max-width: 479.98px){
  .sg-stack-grid{ grid-template-columns: 1fr; gap: 12px; }
}
/* --------------------------------------------------------------------------
   RESPONSIVE LAYER (formerly responsive.css)
   Loaded after all base/component styles above, so these breakpoint rules
   correctly override them at each viewport width. Design tokens are shared
   from the single :root block at the top of this file — no re-declaration.
   -------------------------------------------------------------------------- */

/* ==========================================================================
   >= 1200px  Large desktop
   ========================================================================== */
@media (min-width: 1200px){
  .sg-grid{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   992px – 1199px  Small desktop / laptop
   ========================================================================== */
@media (max-width: 1199px){
  :root{ --sg-gutter: 20px; }

  .sg-grid{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  h1, .h1{ font-size: 34px; }
  h2, .h2{ font-size: 26px; }
}

/* ==========================================================================
   768px – 991px  Tablet
   ========================================================================== */
@media (max-width: 991px){
  :root{ --sg-gutter: 18px; }

  /* Dashboard sidebar collapses above content instead of beside it */
  .sg-grid{
    grid-template-columns: 1fr;
  }
  .sg-sidebar{
    order: 2;
  }
  .sg-content{
    order: 1;
  }

  /* Card/stat grids drop from 4 or 3 columns to 2 */
  .sg-cards,
  .sg-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hero stacks: copy on top, dashboard mock below */
  .sg-hero{ padding: 64px 0 72px; }
  .sg-hero__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sg-hero h1{ font-size: 40px; }

  /* Services drop from 3 columns to 2 */
  .sg-service-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industry tabs move above the panel and become a horizontal scroller */
  .sg-industries__layout{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sg-industry-tabs{
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .sg-industry-tab{
    flex-shrink: 0;
    width: 150px;
  }
  .sg-industry-panel{ padding: 26px; }

  /* Testimonial card gets tighter padding */
  .sg-testimonial{ padding: 28px 26px; }
  .sg-testimonial p{ font-size: 17px; }

  .sg-cta-panel{ padding: 48px 32px; }
  .sg-cta-panel h2{ font-size: 27px; }

  .sg-footer__main{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .sg-footer__brand{ grid-column: 1 / -1; }

  /* Stats bar becomes a 2x2 grid */
  .sg-stats-bar__grid{ grid-template-columns: repeat(2, 1fr); }
  .sg-stat:nth-child(3){ border-left: none; }
  .sg-stat:nth-child(1),
  .sg-stat:nth-child(2){ border-bottom: 1px solid var(--sg-line); }
  .sg-stat{ padding: 32px 16px; }
  .sg-stat__value{ font-size: 32px; }

  h1, .h1{ font-size: 30px; }
  h2, .h2{ font-size: 24px; }
  p, li, td, th{ font-size: 15px; }

  /* Tables become horizontally scrollable rather than squeezed */
  .sg-table-wrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==========================================================================
   576px – 767px  Large phone
   ========================================================================== */
@media (max-width: 767px){
  :root{ --sg-gutter: 16px; }

  .sg-cards,
  .sg-stats{
    grid-template-columns: 1fr;
  }

  /* Any two-column form layouts stack */
  .sg-form-row{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  h1, .h1{ font-size: 26px; }
  h2, .h2{ font-size: 21px; }
  h3, .h3{ font-size: 18px; }

  .sg-hero h1{ font-size: 32px; }
  .sg-hero__actions{ flex-direction: column; align-items: stretch; }
  .sg-hero__trust{ gap: 20px; flex-wrap: wrap; }
  .sg-service-grid{ grid-template-columns: 1fr; }
  .sg-industry-panel__list{ grid-template-columns: 1fr; }
  .sg-industry-panel{ padding: 20px; }
  .sg-industry-panel__head{ gap: 12px; }
  .sg-industry-panel h3{ font-size: 19px; }

  .sg-dashboard__kpis{ grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sg-kpi{ padding: 9px 8px; }
  .sg-kpi__value{ font-size: 15px; }
  .sg-kpi__trend{ display: block; margin-left: 0; }
  .sg-lead-row__company{ display: none; }

  /* Stats bar stacks fully on phones */
  .sg-stats-bar__grid{ grid-template-columns: 1fr; }
  .sg-stat{
    border-left: none !important;
    border-bottom: 1px solid var(--sg-line);
    padding: 24px 16px;
  }
  .sg-stat:last-child{ border-bottom: none; }

  .sg-testimonial{ padding: 22px 20px; }
  .sg-testimonial p{ font-size: 15.5px; }
  .sg-testimonial-nav{ gap: 14px; }

  .sg-cta-band{ padding: 56px 0 64px; }
  .sg-cta-panel{ padding: 36px 22px; border-radius: 12px; }
  .sg-cta-panel h2{ font-size: 22px; }
  .sg-cta-panel__actions{ flex-direction: column; align-items: stretch; }
  .sg-cta-panel__contact{ flex-direction: column; gap: 12px; }

  .sg-footer__main{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }
  .sg-footer__brand{ grid-column: auto; }
  .sg-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Buttons take full width so tap targets are generous */
  .btn-block-mobile{
    width: 100%;
    display: block;
    text-align: center;
  }

  /* Page-level action bars (e.g. dashboard header with title + CTA) stack */
  .sg-page-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   <= 575px  Phone
   ========================================================================== */
@media (max-width: 575px){
  :root{ --sg-gutter: 14px; }

  body{ font-size: 14.5px; }

  h1, .h1{ font-size: 23px; }
  h2, .h2{ font-size: 19px; }

  .sg-card,
  .sg-panel{
    padding: 16px;
    border-radius: 10px;
  }

  /* Hide secondary/decorative columns on the smallest screens */
  .hide-xs{ display: none !important; }

  /* Modal / dialog content goes near-full-width with safe margins */
  .modal-dialog,
  .sg-modal{
    width: calc(100% - 24px);
    margin: 12px auto;
  }
}

/* ==========================================================================
   Utility: reduced motion (accessibility — respected site-wide)
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   SISGAIN — "Why SISGAIN Is a Leading CRM Development Company" (Section 10)
   
   ========================================================================== */

.sgreasons {
  --sgr-bg: #05070d;
  --sgr-surface: #0d1220;
  --sgr-line: #1c2333;
  --sgr-ink: #f3f5f9;
  --sgr-ink-soft: #8b93a7;
  --sgr-accent: #4c6fff;
  --sgr-accent-2: #7c6cff;
  --sgr-accent-soft: rgba(76, 111, 255, 0.12);

  background: var(--sgr-bg);
  color: var(--sgr-ink);
  padding: 60px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-top: 1px solid var(--sgr-line);
}

.sgreasons-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Head ---------- */

.sgreasons-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.sgreasons-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sgr-accent);
  background: var(--sgr-accent-soft);
  border: 1px solid rgba(76, 111, 255, 0.3);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sgreasons-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgr-accent);
  box-shadow: 0 0 8px 1px var(--sgr-accent);
}

.sgreasons-heading {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.sgreasons-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--sgr-ink-soft);
  margin: 0 auto;
}

/* ---------- Grid of reasons ---------- */

.sgreasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  border-top: 1px solid var(--sgr-line);
}

.sgreasons-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--sgr-line);
}

.sgreasons-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--sgr-accent), var(--sgr-accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 18px -6px rgba(76, 111, 255, 0.5);
}

.sgreasons-item-body h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--sgr-ink);
  margin: 0 0 6px;
}

.sgreasons-item-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sgr-ink-soft);
  margin: 0;
}

/* Odd count (13 items): let the last item span both columns so it doesn't
   look orphaned under a single column on wide screens. */
.sgreasons-item:last-child {
  grid-column: 1 / -1;
  max-width: 560px;
}

/* ---------- CTA ---------- */

.sgreasons-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.sgreasons-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(155deg, var(--sgr-accent), var(--sgr-accent-2));
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 26px -8px rgba(76, 111, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgreasons-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(76, 111, 255, 0.75);
}

.sgreasons-cta-note {
  font-size: 13px;
  color: var(--sgr-ink-soft);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .sgreasons { padding: 72px 20px; }
  .sgreasons-head { margin-bottom: 40px; }
  .sgreasons-grid { grid-template-columns: 1fr; gap: 0; }
  .sgreasons-item:last-child { grid-column: auto; max-width: none; }
}

@media (max-width: 480px) {
  .sgreasons-item { padding: 20px 0; gap: 14px; }
  .sgreasons-icon { width: 38px; height: 38px; font-size: 15px; }
  .sgreasons-item-body h3 { font-size: 15.5px; }
  .sgreasons-item-body p { font-size: 13.5px; }
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  .sgreasons-cta-btn { transition: none; }
  .sgreasons-cta-btn:hover { transform: none; }
}



/*===== ========*/
.sgcrm-card--main{
    padding:0;
    overflow:hidden;
    border-radius:16px;
}

/* .sgcrm-main-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:16px;
    transition:transform .4s ease;
} */

.sgcrm-card--main:hover .sgcrm-main-image{
    transform:scale(1.03);
}

/* ============================================
   CRM Features Section — Styles
   Theme reference: near-black background, blue accent
   icon tiles, pill eyebrow badge (matches uploaded screenshot)
   Depends on: Bootstrap 5 (grid/utilities), Bootstrap Icons
   ============================================ */

:root{
  --feat-bg:      #05070D;
  --feat-panel:   #0D111C;
  --feat-line:    #1C2333;
  --feat-text:    #F5F7FA;
  --feat-muted:   #93A0B7;
  --feat-blue:    #4F7EFF;
  --feat-blue-dim: rgba(79,126,255,.14);
}

.features-section{
  background:var(--feat-bg);
  color:var(--feat-text);
  font-family:'Inter',system-ui,sans-serif;
  padding:4rem;
}

.features-badge{
  display:inline-flex;
  align-items:center;
  padding:.4rem 1.1rem;
  border:1px solid rgba(79,126,255,.4);
  border-radius:999px;
  font-family:'Space Grotesk',sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--feat-blue);
  margin-bottom:1.4rem;
}

.features-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(2rem, 3.4vw, 2.8rem);
  line-height:1.15;
  margin-bottom:1rem;
}

.features-sub{
  color:var(--feat-muted);
  max-width:640px;
  margin:0 auto;
  font-size:1.05rem;
  line-height:1.6;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:1.1rem;
  padding:1.1rem 0;
}

.feature-icon{
  flex:0 0 auto;
  width:46px;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  background:var(--feat-blue-dim);
  color:var(--feat-blue);
}

.feature-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.05rem;
  font-weight:600;
  color:var(--feat-text);
  margin-bottom:.4rem;
}

.feature-desc{
  color:var(--feat-muted);
  font-size:.92rem;
  line-height:1.55;
  margin-bottom:0;
}

.features-cta{
  display:inline-block;
  background:var(--feat-blue);
  color:#fff;
  font-weight:600;
  font-size:1rem;
  padding:.85rem 2.1rem;
  border-radius:999px;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease;
}

.features-cta:hover{
  background:#3E68E0;
  transform:translateY(-2px);
  color:#fff;
}

@media (max-width: 767.98px){
  .feature-item{ padding:.9rem 0; }
}
/* ============================================
   CRM Features Section — Styles
   Theme reference: near-black background, blue accent
   icon tiles, pill eyebrow badge (matches uploaded screenshot)
   Depends on: Bootstrap 5 (grid/utilities), Bootstrap Icons
   ============================================ */

:root{
  --feat-bg:      #05070D;
  --feat-panel:   #0D111C;
  --feat-line:    #1C2333;
  --feat-text:    #F5F7FA;
  --feat-muted:   #93A0B7;
  --feat-blue:    #4F7EFF;
  --feat-blue-dim: rgba(79,126,255,.14);
}

.features-section{
  background:var(--feat-bg);
  color:var(--feat-text);
  font-family:'Inter',system-ui,sans-serif;
  padding:6rem 0;
}

.features-badge{
  display:inline-flex;
  align-items:center;
  padding:.4rem 1.1rem;
  border:1px solid rgba(79,126,255,.4);
  border-radius:999px;
  font-family:'Space Grotesk',sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--feat-blue);
  margin-bottom:1.4rem;
}

.features-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(2rem, 3.4vw, 2.8rem);
  line-height:1.15;
  margin-bottom:1rem;
}

.features-sub{
  color:var(--feat-muted);
  max-width:640px;
  margin:0 auto;
  font-size:1.05rem;
  line-height:1.6;
}

.feature-item{
  display:flex;
  align-items:baseline;
  gap:1.4rem;
  padding:1.5rem 0;
  border-top:1px solid var(--feat-line);
}

.feature-item:last-child{
  padding-bottom:0;
}

.feature-list{
  border-bottom:1px solid var(--feat-line);
}

.feature-number{
  flex:0 0 auto;
  font-family:'Space Grotesk',sans-serif;
  font-size:.95rem;
  font-weight:600;
  color:var(--feat-blue);
  min-width:2.2rem;
}

.feature-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.05rem;
  font-weight:600;
  color:var(--feat-text);
  margin-bottom:.4rem;
}

.feature-desc{
  color:var(--feat-muted);
  font-size:.92rem;
  line-height:1.55;
  margin-bottom:0;
}

.features-cta{
  display:inline-block;
  background:var(--feat-blue);
  color:#fff;
  font-weight:600;
  font-size:1rem;
  padding:.85rem 2.1rem;
  border-radius:999px;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease;
}

.features-cta:hover{
  background:#3E68E0;
  transform:translateY(-2px);
  color:#fff;
}

@media (max-width: 767.98px){
  .feature-item{ padding:.9rem 0; }
}

/* ===========================
   Industries Section
=========================== */

.industries-section{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.industries-section::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(13,110,253,.08),transparent 70%);
    pointer-events:none;
}

.industries-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-100px;
    width:350px;
    height:350px;
    background:radial-gradient(circle,rgba(79,70,229,.06),transparent 70%);
    pointer-events:none;
}

/* Container */

.industries-section .container{
    position:relative;
    z-index:2;
}

/* Eyebrow */

.industries-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#edf4ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.industries-eyebrow::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0d6efd;
    box-shadow:0 0 12px rgba(13,110,253,.5);
}

/* Heading */

.industries-heading{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:20px;
}

.industries-sub{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
    max-width:780px;
}

/* ===========================
   Card
=========================== */

.industry-card{
    height:95%;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:35px 28px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.industry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#4f46e5);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.12);

    border-color:#dbeafe;

}

.industry-card:hover::before{

    transform:scaleX(1);

}

/* Icon */

.industry-icon{

    width:64px;

    height:64px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0d6efd,#4f46e5);

    color:#fff;

    font-size:28px;

    margin-bottom:24px;

    transition:.35s;

}

.industry-card:hover .industry-icon{

    transform:rotate(-8deg) scale(1.08);

}

/* Title */

.industry-title{

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:14px;

    line-height:1.4;

}

/* Description */

.industry-desc{

    font-size:15px;

    color:#64748b;

    line-height:1.8;

    margin:0;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.industries-section{

padding:80px 0;

}

.industries-heading{

font-size:38px;

}

}

@media(max-width:768px){

.industries-heading{

font-size:32px;

}

.industries-sub{

font-size:15px;

}

.industry-card{

padding:28px 22px;

}

.industry-icon{

width:56px;

height:56px;

font-size:24px;

}

}

@media(max-width:576px){

.industries-section{

padding:60px 0;

}

.industries-heading{

font-size:28px;

}

.industries-eyebrow{

font-size:12px;

}

}

/* ==========================================
   SERVICES SECTION
========================================== */
/* ============================================
   SECTION: .sgcrm  (CRM Features)
   ============================================ */

.sgcrm {
    background: #0a0a0f;
    padding: 100px 24px;
}

.sgcrm-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Header ===== */
.sgcrm-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.sgcrm-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 16px;
}

.sgcrm-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #f5f5f7;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}


.sgcrm-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #9ca0ab;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sgcrm-sub-icon {
    flex-shrink: 0;
    color: #a78bfa;
}

/* ===== Row 1: image + 2 cards ===== */
.sgcrm-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

/* ===== Row 2: last 3 cards, forced to 3 equal columns ===== */
.sgcrm-grid--3col {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    margin-top: 20px;
}

/* ===== Card ===== */
.sgcrm-card {
    background: #121218;
    border: 1px solid #1f2029;
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.sgcrm-card:hover {
    border-color: #34324a;
    background: #15151d;
    transform: translateY(-3px);
}

/* ===== Image card ===== */
.sgcrm-card--main {
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.sgcrm-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ===== Icon badge ===== */
.sgcrm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c6cf6, #5b4fe0);
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(99, 82, 230, 0.35);
}

/* ===== Card text ===== */
.sgcrm-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #f5f5f7;
    margin: 0 0 10px;
}

.sgcrm-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #9ca0ab;
    margin: 0;
}
/* Card becomes a column: heading on top, image fills the rest */
.sgcrm-card--main {
    grid-row: span 2;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sgcrm-main-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sgcrm-main-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #1c1c24;
    padding: 4px;
    flex-shrink: 0;
}

.sgcrm-main-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f7;
    margin: 0;
    letter-spacing: -0.01em;
}

.sgcrm-main-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 12px;
    border: 1px solid #1f2029;
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
    .sgcrm-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sgcrm-card--main {
        grid-column: span 2;
        grid-row: auto;
        min-height: 260px;
    }
    .sgcrm-grid--3col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .sgcrm {
        padding: 64px 16px;
    }
    .sgcrm-grid,
    .sgcrm-grid--3col {
        grid-template-columns: 1fr;
    }
    .sgcrm-card--main {
        grid-column: span 1;
    }
}
/* ==============================
   Section Heading
============================== */

.sg-section__head{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.sg-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 18px;
    border-radius:50px;
    background:#eaf2ff;
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.sg-eyebrow__dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0d6efd;
    box-shadow:0 0 12px rgba(13,110,253,.5);
}
.sg-services h2{
  color: #000;
}

.sg-section__head h2{
    font-size:48px;
    font-weight:700;
    margin:25px 0 18px;
    line-height:1.2;
}

.sg-section__head p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

/* ==============================
   Grid
============================== */

.sg-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ==============================
   Card
============================== */

.sg-service-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(12px);

    border:1px solid #e8edf7;

    border-radius:22px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.sg-service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#4f46e5);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.sg-service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(13,110,253,.12);

    border-color:#cfe2ff;

}

.sg-service-card:hover::before{

    transform:scaleX(1);

}

/* ==============================
   Icon
============================== */

.sg-service-card__icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    color:#fff;

    margin-bottom:28px;

    transition:.35s;

}

.sg-service-card:hover .sg-service-card__icon{

    transform:rotate(-8deg) scale(1.08);

}

/* ==============================
   Typography
============================== */

.sg-service-card h3{

    font-size:24px;

    font-weight:700;

    color:#111827;

    margin-bottom:16px;

}

.sg-service-card p{

    color:#6b7280;

    line-height:1.8;

    font-size:15px;

    margin-bottom:28px;

}

.sg-service-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.sg-service-card a:hover{

    color:#4f46e5;

    gap:14px;

}

/* ==============================
   Responsive
============================== */

@media(max-width:1200px){

.sg-service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.sg-services{

padding:70px 0;
}

.sg-section__head{

margin-bottom:50px;

}

.sg-section__head h2{

font-size:34px;

}

.sg-section__head p{

font-size:16px;

}

.sg-service-grid{

grid-template-columns:1fr;

}

.sg-service-card{

padding:28px;

}

}

@media(max-width:576px){

.sg-section__head h2{

font-size:28px;

}

.sg-service-card__icon{

width:60px;

height:60px;

}

.sg-service-card h3{

font-size:21px;

}

}
/* ============================================
   Technology Stack Section — Styles
   ============================================ */

:root{
  --tech-bg:      #05070D;
  --tech-panel:   #0D111C;
  --tech-panel-2: #10141F;
  --tech-line:    #1C2333;
  --tech-text:    #F5F7FA;
  --tech-muted:   #93A0B7;
  --tech-blue:    #4F7EFF;
  --tech-blue-dim: rgba(79,126,255,.14);
}

.tech-section{
  background:var(--tech-bg);
  color:var(--tech-text);
  font-family:'Inter',system-ui,sans-serif;
  padding:6rem 0;
}

.tech-badge{
  display:inline-flex;
  align-items:center;
  padding:.4rem 1.1rem;
  border:1px solid rgba(79,126,255,.4);
  border-radius:999px;
  font-family:'Space Grotesk',sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--tech-blue);
  margin-bottom:1.4rem;
}

.tech-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.6rem);
  line-height:1.2;
  max-width:820px;
  margin-bottom:1rem;
}

.tech-sub{
  color:var(--tech-muted);
  max-width:760px;
  font-size:1.02rem;
  line-height:1.65;
}

/* ---------- category nav ---------- */

.tech-nav{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  position:sticky;
  top:1.5rem;
}

.tech-nav .nav-link{
  display:flex;
  align-items:center;
  gap:.85rem;
  width:100%;
  text-align:left;
  padding:.85rem 1rem;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  color:var(--tech-muted);
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:.92rem;
  transition:background .18s ease, border-color .18s ease, color .18s ease;
}

.tech-nav .nav-link i{
  font-size:1.05rem;
  color:var(--tech-blue);
  flex:0 0 auto;
}

.tech-nav .nav-link:hover{
  background:var(--tech-panel);
  color:var(--tech-text);
}

.tech-nav .nav-link.active{
  background:var(--tech-blue-dim);
  border-color:rgba(79,126,255,.4);
  color:var(--tech-text);
}

/* ---------- panel ---------- */

.tech-panel{
  background:var(--tech-panel);
  border:1px solid var(--tech-line);
  border-radius:18px;
  padding:2.4rem;
  min-height:100%;
}

.tech-panel-eyebrow{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--tech-blue);
  margin-bottom:.5rem;
}

.tech-panel-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:1.5rem;
  margin-bottom:1.8rem;
  color:var(--tech-text);
}

.tech-group + .tech-group{
  margin-top:1.9rem;
  padding-top:1.9rem;
  border-top:1px solid var(--tech-line);
}

.tech-group-title{
  display:flex;
  align-items:center;
  gap:.55rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--tech-muted);
  margin-bottom:1rem;
}

.tech-group-title::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--tech-blue);
  flex:0 0 auto;
}

.tech-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  list-style:none;
  padding:0;
  margin:0;
}

.tech-chip{
  display:inline-flex;
  align-items:center;
  padding:.5rem .95rem;
  border-radius:999px;
  border:1px solid var(--tech-line);
  background:var(--tech-panel-2);
  color:var(--tech-text);
  font-size:.85rem;
  font-weight:500;
  transition:border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.tech-chip:hover{
  border-color:var(--tech-blue);
  background:var(--tech-blue-dim);
  color:#fff;
  transform:translateY(-1px);
}

@media (max-width: 991.98px){
  .tech-nav{
    position:static;
    flex-direction:row;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:.5rem;
    margin-bottom:1.5rem;
    scrollbar-width:none;
  }
  .tech-nav::-webkit-scrollbar{ display:none; }
  .tech-nav .nav-link{ white-space:nowrap; flex:0 0 auto; }
  .tech-panel{ padding:1.8rem; }
}
@media (max-width: 767.98px){
  .tech-section{ padding:4rem 0; }

  .tech-badge{
    font-size:.68rem;
    padding:.35rem .95rem;
    margin-bottom:1.1rem;
  }

  .tech-sub{ font-size:.95rem; }

  .tech-nav{ gap:.4rem; margin-bottom:1.2rem; }
  .tech-nav .nav-link{
    padding:.7rem .9rem;
    font-size:.85rem;
    gap:.6rem;
  }
  .tech-nav .nav-link i{ font-size:.95rem; }

  .tech-panel{ padding:1.5rem; border-radius:14px; }
  .tech-panel-heading{ font-size:1.25rem; margin-bottom:1.4rem; }
  .tech-panel-eyebrow{ font-size:.72rem; }

  .tech-group + .tech-group{ margin-top:1.5rem; padding-top:1.5rem; }
  .tech-group-title{ font-size:.75rem; margin-bottom:.8rem; }

  .tech-chip{
    padding:.45rem .85rem;
    font-size:.8rem;
  }
}

@media (max-width: 399.98px){
  .tech-section{ padding:3rem 0; }
  .tech-panel{ padding:1.25rem; }
  .tech-panel-heading{ font-size:1.1rem; }
  .tech-chips{ gap:.45rem; }
  .tech-chip{ padding:.4rem .75rem; font-size:.76rem; }
}
/* ============================================
   CRM Services Section — Styles
   
   ============================================ */

:root{
  --crm-bg:      #05070D;
  --crm-panel:   #0D111C;
  --crm-line:    #1C2333;
  --crm-text:    #F5F7FA;
  --crm-muted:   #93A0B7;
  --crm-blue:    #4F7EFF;
  --crm-blue-dim: rgba(79,126,255,.14);
}

.crm-services{
  background:var(--crm-bg);
  color:var(--crm-text);
  font-family:'Inter',system-ui,sans-serif;
}

.crm-badge{
  display:inline-flex;
  align-items:center;
  padding:.4rem 1.1rem;
  border:1px solid rgba(79,126,255,.4);
  border-radius:999px;
  font-family:'Space Grotesk',sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--crm-blue);
}

.crm-title{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.6rem);
  line-height:1.2;
  color:var(--crm-text);
}

.crm-subtitle{
  color:var(--crm-muted);
  font-size:1.02rem;
  line-height:1.65;
  margin:0 auto;
}

/* ---------- card ---------- */

.crm-service-card{
  background:var(--crm-panel);
  border:1px solid var(--crm-line);
  border-radius:16px;
  padding:2.2rem 2rem;
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}

.crm-service-card:hover{
  transform:translateY(-4px);
  border-color:var(--crm-blue);
  background:#101627;
}

.crm-icon{
  width:52px;
  height:52px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  background:var(--crm-blue-dim);
  color:var(--crm-blue);
  margin-bottom:1.4rem;
}

.crm-service-card h4{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:1.2rem;
  color:var(--crm-text);
  margin-bottom:.7rem;
}

.crm-service-card > p{
  color:var(--crm-muted);
  font-size:.95rem;
  line-height:1.6;
  margin-bottom:1.4rem;
}

.crm-service-card ul{
  list-style:none;
  padding:0;
  margin:0;
  border-top:1px solid var(--crm-line);
  padding-top:1.2rem;
}

.crm-service-card ul li{
  position:relative;
  padding-left:1.6rem;
  color:var(--crm-text);
  font-size:.9rem;
  line-height:1.9;
}

.crm-service-card ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55rem;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--crm-blue);
}

/*=======CASE STUDY==========*/
  #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }
 
  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
 
  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
 
  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
 
  #CaseStudies .client-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }
 
 
 
  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }
 
  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }
 
  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }
 
  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }
 
  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }
 
  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }
 
  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }
 
  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }
 
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
 
  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }
 
  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }
 
  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }
 
  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
 
  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
 
  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }
 
  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }
 
  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }
 
  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }
 
  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }
 
  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }
 
  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }
 
  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }
 
  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }
 
  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }
 
  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
 
  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }
 
  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }
 
  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }
 
  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }
 
  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }
 
  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }
 
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }
 
  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }

    .tech-nav{
      display: flex!important;
      flex-wrap: nowrap!important;
      overflow-y: scroll;
      width: 100%;
    }
    .tech-nav .nav-link{
      width: 70%;
    }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}

/*=====SERVICE=====*/
.crm-caps-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-top: auto;
    padding-top: 20px;
}

.crm-service-card ul {
    padding-top: 12px;
}