
/* ============================
   SISGAIN AI PAGE — STYLES
   ============================ */

/* ---- FONTS & BASE ---- */
.sg-page-wrap {
  
  background: #03060f;
  color: #e2e8f0;
  overflow-x: hidden;
}

/* ---- SHARED UTILITIES ---- */
.sg-section {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.sg-display-font {

}

.sg-gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-gradient-text-gold {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.sg-btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  color: #fff;
  text-decoration: none;
}

.sg-btn-outline {
  background: transparent;
  color: #93c5fd;
  border: 1px solid rgba(147,197,253,0.4);
  border-radius: 6px;
  padding: 12px 28px;
  
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.sg-btn-outline:hover {
  background: rgba(147,197,253,0.08);
  border-color: #60a5fa;
  color: #60a5fa;
  transform: translateY(-2px);
  text-decoration: none;
}

.sg-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 22px;
  
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.sg-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.sg-microcopy {
  font-size: 0.78rem;
  color: #fff;
  margin-top: 6px;
  font-style: italic;
}

.sg-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #60a5fa;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sg-section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  animation: sg-pulse-dot 2s infinite;
}
@keyframes sg-pulse-dot {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.5;transform:scale(1.4);}
}

.sg-conversion-strip {
  background: linear-gradient(135deg, rgba(29,78,216,0.15), rgba(37,99,235,0.08));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}
.sg-conversion-strip h3 {

  font-size: 2.4rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.sg-conversion-strip p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* ---- SCROLL REVEAL ---- */
.sg-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sg-reveal h3{
  font-size: 1.8rem;
}
.sg-reveal.sg-visible {
  opacity: 1;
  transform: translateY(0);
}
.sg-reveal-delay-1 { transition-delay: 0.1s; }
.sg-reveal-delay-2 { transition-delay: 0.2s; }
.sg-reveal-delay-3 { transition-delay: 0.3s; }
.sg-reveal-delay-4 { transition-delay: 0.4s; }

.navbar{
  background: #111;
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.sg-hero {
  background: #03060f;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sg-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.sg-hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.sg-hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sg-hero-left h1 {

  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #f8fafc;
  margin-bottom: 20px;
}
.sg-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.sg-hero-cta-group .sg-microcopy {
  width: 100%;
  margin-top: 2px;
}
.sg-hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.sg-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}
.sg-trust-badge svg {
  width: 12px;
  height: 12px;
  fill: #3b82f6;
}
.sg-hero-support-strip {
  background: rgba(37,99,235,0.06);
  border-top: 1px solid rgba(59,130,246,0.15);
  padding: 14px 0;
  margin-top: 10px;
}
.sg-hero-support-strip p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}
.sg-hero-support-strip strong {
  color: #93c5fd;
}

/* Search Experience */
.sg-search-experience {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.sg-search-label {

  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 14px;
}
.sg-search-box-wrap {
  position: relative;
}
.sg-search-box-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #60a5fa;
  pointer-events: none;
}
.sg-search-input {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  color: #e2e8f0;
  padding: 12px 16px 12px 44px;
  
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.sg-search-input:focus {
  border-color: #3b82f6;
}
.sg-search-input::placeholder { color: #475569; }
.sg-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.sg-chip {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sg-chip:hover, .sg-chip.sg-chip-active {
  background: rgba(37,99,235,0.3);
  border-color: #3b82f6;
  color: #fff;
}
.sg-search-response {
  display: none;
  margin-top: 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  padding: 16px;
}
.sg-search-response.sg-response-visible {
  display: block;
  animation: sg-fade-in 0.4s ease;
}
@keyframes sg-fade-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.sg-response-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.sg-response-text {
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.sg-search-support {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #475569;
  font-style: italic;
}

/* Dashboard Widget */
.sg-dashboard-widget {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
.sg-dash-title {
  font-size: 0.72rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.sg-dash-metric {
  margin-bottom: 14px;
}
.sg-dash-metric-label {
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 4px;
}
.sg-dash-metric-value {

  font-size: 1.4rem;
  font-weight: 700;
  color: #f1f5f9;
}
.sg-dash-metric-value span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #22c55e;
  margin-left: 6px;
}
.sg-dash-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  margin-top: 4px;
}
.sg-dash-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  animation: sg-bar-grow 2s ease forwards;
}
@keyframes sg-bar-grow { from{width:0} }
.sg-dash-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: #22c55e;
  margin-top: 12px;
}
.sg-dash-status::before {
  content:'';
  width:6px;height:6px;
  background:#22c55e;
  border-radius:50%;
  animation: sg-pulse-dot 1.5s infinite;
}

/* =============================================
   SECTION 2 — GOAL NAVIGATOR
   ============================================= */
.sg-goal-nav {
  background: #04080f;
}
.sg-goal-nav-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sg-goal-nav-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 14px;
}
.sg-goal-nav-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
}
.sg-goal-helper {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.sg-goal-helper p {
  font-size: 1rem;
  color: #60a5fa;
  margin: 0;
}
.sg-goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}
@media(max-width:991px){ .sg-goal-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:575px){ .sg-goal-grid{grid-template-columns:1fr 1fr;} }
.sg-goal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sg-goal-card::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.sg-goal-card:hover::before, .sg-goal-card.sg-goal-active::before { transform: scaleX(1); }
.sg-goal-card:hover, .sg-goal-card.sg-goal-active {
  background: rgba(37,99,235,0.1);
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
}
.sg-goal-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.2rem;
}
.sg-goal-icon img{
  width: 32px;
  height: auto;
}
.sg-goal-card h4 {

  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
}
.sg-goal-detail-panel {
  display: none;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
  padding: 32px;
  margin-top: 20px;
  animation: sg-fade-in 0.35s ease;
}
.sg-goal-detail-panel.sg-panel-visible { display: block; }
.sg-goal-detail-panel h3 {

  font-size: 1.3rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 14px;
}
.sg-goal-detail-panel .sg-problem {
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.sg-goal-detail-panel .sg-solution {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.sg-goal-detail-panel .sg-outcome {
  color: #22c55e;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.sg-goal-detail-panel strong {
  color: #60a5fa;
}

/* =============================================
   SECTION 3 — INDUSTRY SELECTOR
   ============================================= */
.sg-industry {
  background: #03060f;
}
.sg-industry-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.sg-industry-intro h2 {

  font-size: 2.1rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-industry-intro p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}
.sg-industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}
.sg-industry-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 25px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sg-industry-tab:hover, .sg-industry-tab.sg-ind-active {
    font-size: 1rem;
  background: rgba(37,99,235,0.2);
  border-color: #3b82f6;
  color: #93c5fd;
}
.sg-industry-content {
  display: none;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  animation: sg-fade-in 0.3s ease;
}
.sg-industry-content.sg-ind-visible { display: block; }
.sg-industry-content h3 {

  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 20px;
}
.sg-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media(max-width:767px){ .sg-ind-grid{grid-template-columns:1fr;} }
.sg-ind-block {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px;
  border-left: 3px solid #1d4ed8;
}
.sg-ind-block-title {
  font-size: 1rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
}
.sg-ind-block p {
  color: #94a3b8;
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
}

/* =============================================
   SECTION 4 — BENTO GRID
   ============================================= */
.sg-bento {
  background: #04080f;
}
.sg-bento-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-bento-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-bento-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.sg-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
@media(max-width:991px){ .sg-bento-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:575px){ .sg-bento-grid{grid-template-columns:1fr;} }
.sg-bento-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sg-bento-card::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.sg-bento-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.sg-bento-card:hover::after { opacity: 1; }

@media(max-width:575px){ .sg-bento-card-wide{grid-column:span 1;} }
/* .sg-bento-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
} */
.sg-bento-icon img{
  width: 70px;
  height: auto;
  object-fit: cover;
}
.sg-bento-card h3 {

  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.sg-bento-card p {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.sg-bento-benefit {
  font-size: 0.75rem;
  color: #22c55e;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.sg-bento-cta {
  font-size: 0.75rem;
  color: #60a5fa;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sg-bento-cta::after { content: ' →'; }

/* =============================================
   SECTION 5 — ASK AI
   ============================================= */
.sg-ask-ai {
  background: #03060f;
  position: relative;
  overflow: hidden;
}
.sg-ask-ai-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sg-ask-ai-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-ask-ai-intro h2 {

  font-size: 2.5rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-ask-ai-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-ask-ai-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sg-ask-ai-box h3 {

  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.sg-ask-ai-box .sg-sub {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 18px;
}
.sg-ai-input-row {
  display: flex;
  gap: 10px;
}
.sg-ai-textarea {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 8px;
  color: #e2e8f0;
  padding: 12px 16px;
  
  font-size: 0.88rem;
  resize: none;
  height: 56px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}
.sg-ai-textarea:focus { border-color: #3b82f6; }
.sg-ai-textarea::placeholder { color: #475569; }
.sg-ai-submit {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px 20px;

  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  align-self: stretch;
}
.sg-ai-submit:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  transform: translateY(-1px);
}
.sg-ai-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.sg-ai-response-area {
  display: none;
  margin-top: 20px;
  animation: sg-fade-in 0.4s ease;
}
.sg-ai-response-area.sg-ai-resp-visible { display: block; }
.sg-ai-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.sg-ai-typing-dots span {
  display: inline-block;
  width: 5px; height: 5px;
  background: #3b82f6;
  border-radius: 50%;
  animation: sg-dot-bounce 1.2s infinite;
}
.sg-ai-typing-dots span:nth-child(2){animation-delay:0.2s;}
.sg-ai-typing-dots span:nth-child(3){animation-delay:0.4s;}
@keyframes sg-dot-bounce{0%,80%,100%{transform:translateY(0)}40%{transform:translateY(-5px)}}
.sg-ai-output {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  padding: 20px;
}
.sg-ai-output-section {
  margin-bottom: 14px;
}
.sg-ai-output-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.sg-ai-output-text {
  color: #cbd5e1;
  font-size: 0.83rem;
  line-height: 1.6;
  margin: 0;
}
.sg-ai-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.sg-ai-metric-pill {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: #93c5fd;
}
.sg-ai-impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sg-ai-impact-list li {
  font-size: 0.82rem;
  color: #94a3b8;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
.sg-ai-impact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 0.75rem;
}

/* =============================================
   SECTION 6 — AI READINESS SCORE
   ============================================= */
.sg-readiness {
  background: #04080f;
}
.sg-readiness-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-readiness-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-readiness-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-quiz-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.sg-quiz-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}
.sg-quiz-intro-text {
  text-align: center;
  margin-bottom: 24px;
}
.sg-quiz-intro-text p {
  color: #60a5fa;

  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.sg-quiz-intro-text small {
  color: #64748b;
  font-size: 0.9rem;
}
.sg-quiz-progress {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sg-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.sg-quiz-question { display: none; }
.sg-quiz-question.sg-q-visible { display: block; animation: sg-fade-in 0.3s ease; }
.sg-q-title {

  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.sg-q-helper {
  font-size: 0.78rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 16px;
}
.sg-q-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sg-q-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.83rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
}
.sg-q-option:hover, .sg-q-option.sg-opt-selected {
  background: rgba(37,99,235,0.15);
  border-color: #3b82f6;
  color: #fff;
}
.sg-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.sg-q-counter {
  font-size: 0.75rem;
  color: #475569;
}
.sg-quiz-result {
  display: none;
  text-align: center;
  animation: sg-fade-in 0.4s ease;
}
.sg-quiz-result.sg-result-visible { display: block; }
.sg-score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#2563eb 0deg, rgba(255,255,255,0.06) 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.sg-score-inner {
  width: 96px;
  height: 96px;
  background: #04080f;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sg-score-number {

  font-size: 1.8rem;
  font-weight: 800;
  color: #f1f5f9;
}
.sg-score-label {
  font-size: 0.62rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sg-score-title {

  font-size: 1.3rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.sg-score-description {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.sg-score-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.sg-badge-ready { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.sg-badge-emerging { background: rgba(234,179,8,0.15); color: #eab308; border: 1px solid rgba(234,179,8,0.3); }
.sg-badge-foundation { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

/* =============================================
   SECTION 7 — BEFORE / AFTER SLIDER
   ============================================= */
.sg-before-after {
  background: #03060f;
}
.sg-ba-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-ba-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-ba-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
@media(max-width:767px){ .sg-ba-cols{grid-template-columns:1fr; border-radius:12px;} }
.sg-ba-before {
  background: rgba(239,68,68,0.05);
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.sg-ba-after {
  background: rgba(34,197,94,0.05);
  padding: 32px 28px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.sg-ba-divider {
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
@media(max-width:767px){ .sg-ba-divider{padding:12px;} }
.sg-ba-vs {
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
}
.sg-ba-col-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.sg-ba-before .sg-ba-col-label { color: #ef4444; }
.sg-ba-after .sg-ba-col-label { color: #22c55e; }
.sg-ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.sg-ba-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.sg-ba-before .sg-ba-item-dot { background: #ef4444; }
.sg-ba-after .sg-ba-item-dot { background: #22c55e; }
.sg-ba-item-text h4 {

  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.sg-ba-before .sg-ba-item-text h4 { color: #fca5a5; }
.sg-ba-after .sg-ba-item-text h4 { color: #86efac; }
.sg-ba-item-text p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}
.sg-ba-metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media(max-width:767px){ .sg-ba-metric-row{grid-template-columns:repeat(2,1fr);} }
.sg-ba-metric-card {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.sg-ba-metric-num {

  font-size: 1.8rem;
  font-weight: 800;
  color: #60a5fa;
}
.sg-ba-metric-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}

/* =============================================
   SECTION 8 — COST CALCULATOR
   ============================================= */
.sg-calculator {
  background: #04080f;
}
.sg-calc-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-calc-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-calc-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-calc-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.sg-calc-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
}
.sg-calc-loss-list {
  margin-bottom: 24px;
}
.sg-calc-loss-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sg-calc-loss-item:last-child { border-bottom: none; }
.sg-calc-loss-icon {
  width: 32px;
  height: 32px;
  background: rgba(239,68,68,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sg-calc-loss-item h4 {

  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 2px;
}
.sg-calc-loss-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}
.sg-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media(max-width:767px){ .sg-calc-grid{grid-template-columns:1fr;} }
.sg-calc-inputs
.sg-calc-input-group {
  margin-bottom: 16px;
}
.sg-calc-label {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 6px;
  font-weight: 500;
  display: block;
}
.sg-calc-range {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.1);
  height: 4px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.sg-calc-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
}
.sg-calc-range-val {

  font-size: 0.88rem;
  font-weight: 700;
  color: #60a5fa;
  margin-top: 4px;
}
.sg-calc-output {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.sg-calc-output-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.sg-calc-output-value {

  font-size: 2.2rem;
  font-weight: 800;
  color: #ef4444;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.sg-calc-output-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}
.sg-calc-savings {

  font-size: 1.3rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 4px;
}
.sg-calc-savings-label {
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 16px;
}

/* =============================================
   SECTION 9 — PROCESS
   ============================================= */
.sg-process {
  background: #03060f;
}
.sg-process-intro {
  text-align: center;
  margin-bottom: 40px;
}
.sg-process-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-process-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-process-timeline {
  position: relative;
  padding: 0;
}
.sg-process-timeline::before {
  content:'';
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #1d4ed8, rgba(37,99,235,0.1));
}
@media(max-width:767px){ .sg-process-timeline::before{left:20px;transform:none;} }
.sg-process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
  position: relative;
}

.sg-process-step-content-left,
.sg-process-step-content-right {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.25s;
}
.sg-process-step-content-left:hover,
.sg-process-step-content-right:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(37,99,235,0.06);
}
.sg-process-step-content-right {
  background: transparent;
  border: none;
}
.sg-process-step:nth-child(even) .sg-process-step-content-right {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
}
.sg-process-step:nth-child(even) .sg-process-step-content-left {
  background: transparent;
  border: none;
}
.sg-process-step-content-left h3,
.sg-process-step-content-right h3 {

  font-size: 1.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.sg-process-step-content-left p,
.sg-process-step-content-right p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 6px;
  line-height: 1.55;
}
.sg-process-step-content-left .sg-step-value,
.sg-process-step-content-right .sg-step-value {
  font-size: 0.75rem;
  color: #22c55e;
  font-style: italic;
}
.sg-process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.sg-process-node-circle {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.sg-process-node-label {
  font-size: 0.65rem;
  color: #3b82f6;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.sg-process-step-content-left,
.sg-process-step-content-right{
    width: 100%;
    max-width: 600px;
}

.sg-process-step-content-left{
    justify-self: end;
}

.sg-process-step-content-right{
    justify-self: start;
}
/* =========================
   MOBILE & TABLET
========================= */
@media (max-width: 991px) {

  .sg-process-timeline::before{
    left:22px;
    transform:none;
  }

  .sg-process-step{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:15px;
    margin-bottom:24px;
    align-items:start;
  }

  .sg-process-node{
    grid-column:1;
    grid-row:1;
  }

  .sg-process-node-label{
    display:none;
  }

  .sg-process-step-content-left,
  .sg-process-step-content-right{
    grid-column:2;
    grid-row:1;
    width:100%;
    max-width:none;
    justify-self:stretch;

    background:rgba(255,255,255,.025) !important;
    border:1px solid rgba(255,255,255,.07) !important;
    padding:16px;
  }

  /* left card hidden ho to right card show */
  .sg-process-step-content-left:empty{
    display:none;
  }

  .sg-process-step-content-right:empty{
    display:none;
  }

  .sg-process-step-content-left:not(:empty){
    display:block;
  }

  .sg-process-step-content-right:not(:empty){
    display:block;
  }

  .sg-process-intro h2{
    font-size:2rem;
  }

  .sg-process-intro p{
    font-size:1rem;
  }

  .sg-process-step-content-left h3,
  .sg-process-step-content-right h3{
    font-size:1.2rem;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 575px){

  .sg-process-intro h2{
    font-size:1.7rem;
  }

  .sg-process-step-content-left,
  .sg-process-step-content-right{
    padding:14px;
  }

  .sg-process-node-circle{
    width:38px;
    height:38px;
    font-size:.8rem;
  }
}

/* =============================================
   SECTION 10 — AI AGENT MARKETPLACE
   ============================================= */
.sg-agents {
  background: #04080f;
}
.sg-agents-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-agents-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-agents-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media(max-width:991px){ .sg-agents-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:575px){ .sg-agents-grid{grid-template-columns:1fr 1fr;} }
.sg-agent-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sg-agent-card::before {
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:2px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sg-agent-card:hover::before { transform: scaleX(1); }
.sg-agent-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  background: rgba(37,99,235,0.08);
}
.sg-agent-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.sg-agent-icon img{
  width: 50px;
  height: auto;
    filter: brightness(1);
}
.sg-agent-card h3 {

  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.sg-agent-function {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 6px;
  line-height: 1.5;
}
.sg-agent-outcome {
  font-size: 0.75rem;
  color: #22c55e;
  font-style: italic;
  margin-bottom: 12px;
}
.sg-agent-cta-btn {
  font-size: 0.9rem;
  color: #60a5fa;
  font-weight: 600;
  cursor: pointer;
}

/* Agent Modal */
.sg-agent-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.sg-agent-modal-overlay.sg-modal-open { display: flex; animation: sg-fade-in 0.2s ease; }
.sg-agent-modal {
  background: #0a0f1e;
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.sg-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #64748b;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.sg-modal-close:hover { color: #fff; }
.sg-agent-modal h3 {

  font-size: 1.3rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.sg-modal-section { margin-bottom: 12px; }
.sg-modal-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.sg-modal-text {
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

/* =============================================
   SECTION 11 — BUILD AI STACK
   ============================================= */
.sg-stack-builder {
  background: #03060f;
}
.sg-stack-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-stack-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-stack-intro p {
  color: #94a3b8;
  font-size: 0.88rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-stack-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
@media(max-width:991px){ .sg-stack-layout{grid-template-columns:1fr;} }
.sg-stack-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-content: center;
}
@media(max-width:575px){ .sg-stack-options{grid-template-columns:1fr;} }
.sg-stack-option {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  position: relative;
   justify-content: center;
}
.sg-stack-option:hover { border-color: rgba(59,130,246,0.3); }
.sg-stack-option.sg-stack-selected {
  background: rgba(37,99,235,0.12);
  border-color: #3b82f6;
}
.sg-stack-option-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #3b82f6;
  transition: all 0.2s;
}
.sg-stack-selected .sg-stack-option-check {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.sg-stack-option-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}
.sg-stack-option h4 {

  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.sg-stack-option p {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 4px;
  line-height: 1.5;
}
.sg-stack-option .sg-benefit {
  font-size: 0.72rem;
  color: #22c55e;
  font-style: italic;
}
.sg-stack-preview {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 20px;
}
.sg-stack-preview-title {

  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
}
.sg-stack-selected-list {
  min-height: 120px;
  margin-bottom: 20px;
}
.sg-stack-empty {
  text-align: center;
  padding: 30px 0;
  color: #475569;
  font-size: 0.8rem;
  font-style: italic;
}
.sg-stack-selected-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(37,99,235,0.08);
  border-radius: 8px;
  margin-bottom: 8px;
  animation: sg-fade-in 0.3s ease;
}
.sg-stack-selected-item span:first-child { font-size: 1rem; }
.sg-stack-selected-item span:nth-child(2) {
  font-size: 0.8rem;
  color: #cbd5e1;
  flex: 1;
  font-weight: 500;
}
.sg-stack-options .sg-stack-option:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

/* =============================================
   SECTION 12 — ROI TIMELINE
   ============================================= */
.sg-roi-timeline {
  background: #04080f;
}
.sg-roi-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-roi-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-roi-intro p {
  color: #94a3b8;
  font-size: 0.88rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-roi-track {
  position: relative;
  padding: 0 0 0 0;
}
.sg-roi-track::before {
  content:'';
  position:absolute;
  left:0;right:0;
  top:32px;
  height:2px;
  background: linear-gradient(90deg, #1d4ed8 0%, #60a5fa 100%);
}
@media(max-width:767px){ .sg-roi-track::before{display:none;} }
.sg-roi-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media(max-width:767px){ .sg-roi-milestones{grid-template-columns:1fr;gap:12px;} }
.sg-roi-milestone {
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.25s;
}
.sg-roi-milestone:first-child { padding-left: 0; }
.sg-roi-milestone:last-child { padding-right: 0; }
.sg-roi-dot-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media(max-width:767px){ .sg-roi-dot-wrap{justify-content:flex-start;} }
.sg-roi-dot {
  width: 64px;
  height: 64px;
  background: #04080f;
  border: 2px solid #1d4ed8;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.sg-roi-milestone:hover .sg-roi-dot, .sg-roi-milestone.sg-roi-active .sg-roi-dot {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-color: #60a5fa;
  box-shadow: 0 0 20px rgba(37,99,235,0.5);
}
.sg-roi-dot-label {
  font-size: 0.55rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.sg-roi-dot-period {

  font-size: 0.75rem;
  font-weight: 800;
  color: #f1f5f9;
}
.sg-roi-content {
  padding: 0 4px;
}
.sg-roi-content h3 {

  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  text-align: center;
}
@media(max-width:767px){ .sg-roi-content h3{text-align:left;} }
.sg-roi-metric {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  border-left: 2px solid #1d4ed8;
}
.sg-roi-metric-label {
  font-size: 0.65rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 3px;
}
.sg-roi-metric-text {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

/* =============================================
   SECTION 13 — WHY SISGAIN
   ============================================= */
.sg-why {
  background: #03060f;
}
.sg-why-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-why-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-why-intro p {
  color: #94a3b8;
  font-size: 0.88rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-why-headline {
  text-align: center;
  margin-bottom: 24px;
}
.sg-why-headline h3 {

  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.sg-why-headline p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.sg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media(max-width:991px){ .sg-why-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:575px){ .sg-why-grid{grid-template-columns:1fr;} }
.sg-why-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.25s;
}
.sg-why-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
  background: rgba(37,99,235,0.06);
}
.sg-why-card-num {

  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.sg-why-card h4 {

  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.sg-why-card p {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.55;
}
.sg-why-proof {
  font-size: 0.72rem;
  color: #60a5fa;
  font-weight: 600;
  font-style: italic;
}

/* Process Steps Why */
.sg-why-process h3 {

  font-size: 2.6rem;
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 20px;
}
.sg-why-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media(max-width:991px){ .sg-why-steps{grid-template-columns:repeat(3,1fr);} }
@media(max-width:575px){ .sg-why-steps{grid-template-columns:1fr 1fr;} }
.sg-why-step {
  text-align: center;
  position: relative;
}
.sg-why-step-num {
  width: 40px;
  height: 40px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  font-weight: 700;
  color: #60a5fa;
  margin: 0 auto 8px;
}
.sg-why-step h5 {

  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}
.sg-why-step p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* Trust Band */
.sg-trust-band {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}
.sg-trust-band h3 {

  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
  text-align: center;
}
.sg-trust-bullets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media(max-width:767px){ .sg-trust-bullets{grid-template-columns:1fr 1fr;} }
.sg-trust-bullet {
  font-size: 0.8rem;
  color: #94a3b8;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sg-trust-bullet::before {
  content:'✔';
  color:#22c55e;
  font-size:0.7rem;
  flex-shrink:0;
}

/* Comparison */
.sg-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
@media(max-width:575px){ .sg-comparison{grid-template-columns:1fr;} }
.sg-compare-col {
  border-radius: 12px;
  padding: 20px;
}
.sg-compare-col-typical {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}
.sg-compare-col-sisgain {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(59,130,246,0.2);
}
.sg-compare-col h4 {

  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sg-compare-col-typical h4 { color: #fca5a5; }
.sg-compare-col-sisgain h4 { color: #93c5fd; }
.sg-compare-item {
  font-size: 0.8rem;
  color: #64748b;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sg-compare-item::before { font-size: 0.7rem; }
.sg-compare-col-typical .sg-compare-item::before { content:'✗'; color:#ef4444; }
.sg-compare-col-sisgain .sg-compare-item::before { content:'✓'; color:#22c55e; }

/* Case Studies */
.sg-cases h3 {

  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 6px;
}
.sg-cases-sub {
  color: #94a3b8;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 24px;
}
.sg-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
@media(max-width:767px){ .sg-cases-grid{grid-template-columns:1fr;} }
.sg-case-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.25s;
}
.sg-case-card:hover {
  border-color: rgba(59,130,246,0.25);
  background: rgba(37,99,235,0.05);
}
.sg-case-client {
  font-size: 0.72rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 6px;
}
.sg-case-card h4 {

  font-size: 0.92rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.sg-case-label {
  font-size: 0.68rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
  margin-top: 10px;
}
.sg-case-text {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}
.sg-case-results {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.sg-case-result-pill {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: #86efac;
}
.sg-case-quote {
  font-size: 0.78rem;
  color: #64748b;
  font-style: italic;
  border-left: 2px solid #1d4ed8;
  padding-left: 12px;
  margin-top: 12px;
  line-height: 1.55;
}
.sg-case-quote cite {
  display: block;
  font-size: 0.7rem;
  color: #475569;
  font-style: normal;
  margin-top: 4px;
}

/* =============================================
   SECTION 14 — COST ESTIMATOR FORM
   ============================================= */
.sg-estimator {
  background: #04080f;
}
.sg-estimator-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-estimator-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-estimator-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px;
}
.sg-form-title {

  font-size: 1.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.sg-form-helper {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 24px;
  line-height: 1.55;
}
.sg-form-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sg-form-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;

}
.sg-form-step-dot.sg-step-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.sg-form-step-dot.sg-step-done {
  background: rgba(34,197,94,0.2);
  border-color: #22c55e;
  color: #22c55e;
}
.sg-form-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  min-width: 16px;
}
.sg-form-page {
  display: none;
  animation: sg-fade-in 0.3s ease;
}
.sg-form-page.sg-fp-visible { display: block; }
.sg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media(max-width:575px){ .sg-form-row{grid-template-columns:1fr;} }
.sg-form-field {
  margin-bottom: 14px;
}
.sg-form-field label {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 6px;
}
.sg-form-select,
.sg-form-input {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e2e8f0;
  padding: 11px 14px;
  
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.sg-form-select:focus, .sg-form-input:focus { border-color: #3b82f6; }
.sg-form-select option { background: #0a0f1e; }
.sg-form-input::placeholder { color: #475569; }
.sg-form-trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sg-form-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #64748b;
}
.sg-form-trust-item::before { content:'🔒'; font-size:0.7rem; }
.sg-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.sg-form-counter {
  font-size: 0.75rem;
  color: #fff;
}

/* =============================================
   SECTION 15 — FAQ
   ============================================= */
.sg-faq {
  background: #03060f;
}
.sg-faq-intro {
  text-align: center;
  margin-bottom: 30px;
}
.sg-faq-intro h2 {

  font-size: 2.6rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sg-faq-intro p {
  color: #94a3b8;
  font-size: 0.88rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.sg-faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.sg-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sg-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #e2e8f0;
  
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
}
.sg-faq-q:hover { color: #60a5fa; }
.sg-faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60a5fa;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.3s, background 0.2s;
}
.sg-faq-item.sg-faq-open .sg-faq-icon {
  transform: rotate(45deg);
  background: rgba(37,99,235,0.3);
}
.sg-faq-a {
  display: none;
  padding-bottom: 16px;
}
.sg-faq-item.sg-faq-open .sg-faq-a { display: block; animation: sg-fade-in 0.3s ease; }
.sg-faq-a p {
  color: #94a3b8;
  font-size: 0.83rem;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   STICKY WIDGET
   ============================================= */
.sg-sticky-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sg-sticky-btn {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 12px 20px;

  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.sg-sticky-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.6);
  color: #fff;
  text-decoration: none;
}
.sg-sticky-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: sg-pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
.sg-sticky-tooltip {
  background: rgba(10,15,30,0.95);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: #94a3b8;
  max-width: 200px;
  text-align: center;
  display: none;
}
.sg-sticky-widget:hover .sg-sticky-tooltip { display: block; animation: sg-fade-in 0.2s ease; }

@media(max-width:575px){
  .sg-sticky-widget{ bottom:16px; right:16px; }
  .sg-sticky-btn{ padding:10px 16px; font-size:0.76rem; }
}






.sg-industry-content{
    animation:none !important;
    transition:none !important;
}

.sg-industry-tab{
    transition:none !important;
}

.sg-ind-active{
    transition:none !important;
}

.sg-search-support-wrap{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-top:18px;
    padding:16px 18px;
    border:1px solid rgba(96,165,250,.15);
    background:linear-gradient(
        180deg,
        rgba(15,23,42,.75) 0%,
        rgba(2,6,23,.95) 100%
    );
    border-radius:18px;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    position:relative;
    overflow:hidden;
}

.sg-search-support-wrap::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(
        180deg,
        #60a5fa,
        #2563eb
    );
}

.sg-search-support-icon{
    width:42px;
    min-width:42px;
    height:42px;
    border-radius:12px;
    background:rgba(37,99,235,.12);
    border:1px solid rgba(96,165,250,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#60a5fa;
}

.sg-search-support-icon svg{
    width:20px;
    height:20px;
}

.sg-search-support-title{
    margin:0 0 6px;
    color:#ffffff;
    font-size:.95rem;
    font-weight:700;
    letter-spacing:.02em;
}

.sg-search-support-text{
    margin:0;
    color:#94a3b8;
    font-size:.92rem;
    line-height:1.75;
}

@media(max-width:767px){

    .sg-search-support-wrap{
        padding:14px;
        gap:12px;
        border-radius:16px;
    }

    .sg-search-support-icon{
        width:38px;
        min-width:38px;
        height:38px;
    }

    .sg-search-support-title{
        font-size:.88rem;
    }

    .sg-search-support-text{
        font-size:.84rem;
        line-height:1.65;
    }

}

/* TRUST BADGE BAR */
.sg-trust-bar{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-top:35px;
}

.sg-trust-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:50px;

    background:rgba(15,23,42,.55);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(96,165,250,.18);

    transition:.35s ease;
}

.sg-trust-item:hover{
    transform:translateY(-3px);
    border-color:rgba(96,165,250,.45);

    box-shadow:
    0 10px 30px rgba(37,99,235,.15),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.sg-trust-icon{
    width:26px;
    height:26px;
    min-width:26px;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:#fff;
    font-size:13px;
    font-weight:700;
}

.sg-trust-item span{
    color:#e2e8f0;
    font-size:.92rem;
    font-weight:600;
    white-space:nowrap;
}

/* Tablet */

@media(max-width:991px){

    .sg-trust-bar{
        gap:12px;
    }

    .sg-trust-item{
        padding:10px 16px;
    }

}

/* Mobile */

@media(max-width:767px){

    .sg-trust-bar{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .sg-trust-item{
        width:100%;
        border-radius:16px;
        justify-content:flex-start;
        padding:12px;
    }

    .sg-trust-item span{
        font-size:.82rem;
        line-height:1.3;
        white-space:normal;
    }

}

/* SUPPORTING TRUST COPY */
.sg-proof-bar{
    display:flex;
    align-items:center;
    gap:16px;

    margin-top:24px;
    padding:18px 22px;

    border-radius:20px;

    background:linear-gradient(
        180deg,
        rgba(15,23,42,.85),
        rgba(2,6,23,.95)
    );

    border:1px solid rgba(96,165,250,.18);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    position:relative;
    overflow:hidden;
}

.sg-proof-bar::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;

    background:linear-gradient(
        180deg,
        #60a5fa,
        #2563eb
    );
}

.sg-proof-icon{
    width:54px;
    height:54px;
    min-width:54px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(37,99,235,.12);
    border:1px solid rgba(96,165,250,.18);

    color:#60a5fa;
}

.sg-proof-icon svg{
    width:24px;
    height:24px;
}

.sg-proof-label{
    display:inline-block;

    color:#60a5fa;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

    margin-bottom:6px;
}

.sg-proof-text{
    margin:0;

    color:#cbd5e1;
    font-size:.95rem;
    line-height:1.8;
}

.sg-proof-text strong{
    color:#ffffff;
    font-weight:700;
}

@media(max-width:767px){

    .sg-proof-bar{
        padding:16px;
        gap:12px;
        border-radius:18px;
    }

    .sg-proof-icon{
        width:44px;
        height:44px;
        min-width:44px;
    }

    .sg-proof-text{
        font-size:.86rem;
        line-height:1.7;
    }

}

/* TECHNOLOGY STACK */
.sg-tech-stack{
    position:relative;
}

.sg-tech-intro{
    max-width:850px;
    margin:0 auto 60px;
}

.sg-tech-intro h2{
    color:#fff;
    margin-bottom:20px;
}

.sg-tech-intro p{
    color:#94a3b8;
    line-height:1.8;
}

.sg-tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.sg-tech-card{

    background:rgba(15,23,42,.65);

    border:1px solid rgba(96,165,250,.15);

    border-radius:24px;

    padding:28px;

    backdrop-filter:blur(12px);

    transition:.35s ease;
}

.sg-tech-card:hover{

    transform:translateY(-8px);

    border-color:rgba(96,165,250,.35);

    box-shadow:
    0 20px 40px rgba(37,99,235,.12);
}

.sg-tech-category{

    display:inline-flex;

    padding:8px 14px;

    border-radius:50px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(96,165,250,.15);

    color:#60a5fa;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:18px;
}

.sg-tech-list{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:18px;
}

.sg-tech-list span{

    padding:10px 14px;

    border-radius:12px;

    background:#0f172a;

    border:1px solid rgba(96,165,250,.12);

    color:#fff;

    font-size:.9rem;

    font-weight:600;
}

.sg-tech-card p{

    margin:0;

    color:#94a3b8;

    line-height:1.8;

    font-size:.92rem;
}

.sg-tech-bottom{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.sg-tech-bottom-card{

    text-align:center;

    padding:25px;

    border-radius:20px;

    background:rgba(15,23,42,.65);

    border:1px solid rgba(96,165,250,.15);
}

.sg-tech-bottom-number{

    font-size:2rem;

    font-weight:800;

    color:#60a5fa;

    margin-bottom:8px;
}

.sg-tech-bottom-card p{

    margin:0;

    color:#cbd5e1;
}

/* Tablet */

@media(max-width:991px){

    .sg-tech-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .sg-tech-grid{
        grid-template-columns:1fr;
    }

    .sg-tech-bottom{
        grid-template-columns:1fr;
    }

}
