/*
Theme Name: Sietrix
Theme URI: https://sietrix.com
Author: Antigravity
Version: 1.0.0
Text Domain: sietrix
*/

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

/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
  --green: #3ec878;
  /* bright CTA green */
  --green-dark: #47C56E;
  /* dark nav/footer green */
  --green-light: #f0faf5;
  /* section bg tint */
  --title: #091C0F;
  /* hero h1 dark */
  --body-text: #45556C;
  /* paragraph text */
  --muted: #9ca3af;
  /* dates, subcaptions */
  --border: #e9eef2;
  /* card borders */
  --white: #ffffff;
  --card-bg: #ffffff;
  --font-sans: 'Gabarito', sans-serif;
  --font-head: 'Gabarito', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================
   HEADER  (sticky, glass)
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0px 1px 2px -1px #0000001A;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.71px solid #E2E8F0;
  transition: border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo svg {
  flex-shrink: 0;
}

.brand-logo span {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 500;
  color: #091C0F;
}

/* Nav */
.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: #45556C;
  transition: color .2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

/* Book CTA */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #47C56E;
  color: #091C0F;
  font-size: 16px;
  font-weight: 600;
  border-radius: 99px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: 20px;
  flex-shrink: 0;
}

.btn-book:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mega Menu Base */
.has-megamenu {
  position: static;
}

.megamenu-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1.71px solid #F1F5F9;
  box-shadow: 0px 25px 50px -12px #00000040;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  z-index: 1001;
}

.has-megamenu:hover .megamenu-container {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.megamenu-inner {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 380px;
  min-height: 520px;
}

/* Columns */
.megamenu-col {
  padding: 40px 20px;
  border-right: 1px solid #f1f5f9;
}

.promo-col {
  background: #F8FAFC;
  border-right: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Common Label */
.menu-label {
  font-size: 11px;
  font-weight: 700;
  color: #90A1B9;
  letter-spacing: 1.1px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

/* Col 1: Platforms */
.platform-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.platform-item {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
}

.platform-icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1.71px solid #F1F5F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.platform-icon-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.platform-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 4px;
}

.platform-text p {
  font-size: 11px;
  color: #62748E;
  line-height: 18px;
  max-width: 220px;
}

/* Col 2: Capabilities */
.capability-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s var(--ease);
  text-decoration: none;
}

.capability-item:hover {
  background: #F4F7F9;
}

.capability-item .cap-text {
  display: flex;
  flex-direction: column;
}

.capability-item strong {
  font-size: 13px;
  font-weight: 700;
  color: #0F172B;
  transition: color 0.2s;
  line-height: normal;
}

.capability-item:hover strong {
  color: #47C56E;
}

.capability-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 11px;
  color: #62748E;
  line-height: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.capability-item:hover p {
  max-height: 60px;
  opacity: 1;
  margin-top: 8px;
}

.cap-icon {
  color: #CBD5E1;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-top: 3px;
}

.capability-item:hover .cap-icon {
  color: #47C56E;
}

/* Col 3: Promo Card */
.mega-promo-card {
  background: #ffffff;
  border: 1.71px solid #E2E8F0;
  border-radius: 6px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.promo-icon-box {
  width: 40px;
  height: 40px;
  background: #47C56E1A;
  color: #47C56E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.mega-promo-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 10px;
}

.promo-subheadline {
  font-size: 12px;
  font-weight: 700;
  color: #47C56E;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.promo-desc {
  font-size: 14px;
  color: #62748E;
  line-height: 23px;
  margin-bottom: 35px;
}

.supported-platforms span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.plat-mini-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.plat-mini-logos img {
  height: 20px;
  width: auto;
}

.btn-mega-cta {
  background: #0F172B;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s, transform .2s;
  text-decoration: none;
}

.btn-mega-cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-mega-cta svg {
  transition: transform .2s;
}

.btn-mega-cta:hover svg {
  transform: translateX(4px);
}

.submenu-arrow {
  transition: transform .3s;
}

.has-megamenu:hover .submenu-arrow {
  transform: rotate(180deg);
}

/* Industries Mega Menu Specifics */
.megamenu-industries .megamenu-inner {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
}

.menu-label-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.label-icon {
  width: 32px;
  height: 32px;
  background: #47C56E1A;
  color: #47C56E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.megamenu-industries .menu-label {
  margin-bottom: 0;
  line-height: 1.4;
}

.megamenu-industries .megamenu-col {
  padding: 40px 15px;
}

.megamenu-industries .capability-items {
  gap: 15px;
  /* Increased back slightly for better legibility */
}

.megamenu-industries .capability-item {
  padding: 8px 10px;
  background: transparent;
  align-items: center;
  gap: 12px;
}

.megamenu-industries .capability-item .cap-icon {
  color: #94A3B8;
  /* Muted icons by default */
}

/* Maintain top-alignment and hover-bg only for Col 1 */
.megamenu-industries .megamenu-col:first-child .capability-item {
  align-items: flex-start;
}

.megamenu-industries .megamenu-col:first-child .capability-item:hover .cap-icon {
  color: #47C56E;
}

.megamenu-industries .megamenu-col:not(:first-child) .capability-item:hover {
  background: transparent;
}

.megamenu-industries .megamenu-col:not(:first-child) .capability-item:hover strong {
  color: #47C56E;
}

.megamenu-industries .megamenu-col:not(:first-child) .capability-item:hover .cap-icon {
  color: #47C56E;
}

/* Only the first column has hover bg and expansion */
.megamenu-industries .megamenu-col:first-child .capability-item:hover {
  background: #F4F7F9;
  padding: 16px 10px;
}

.industries-cta-box {
  margin-top: 40px;
  padding-left: 10px;
}

.btn-mega-industries {
  background: #47C56E;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all .2s;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-mega-industries:hover {
  background: #3eb461;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 197, 110, 0.2);
}

/* ==========================================
   RESPONSIVE NAVIGATION (REFINED)
   ========================================== */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0;
    height: 80px;
    justify-content: space-between;
    gap: 0;
  }

  .brand-logo img {
    height: 38px;
    width: auto;
  }

  .brand-logo span {
    font-size: 28px;
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    padding: 20px 24px 60px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    margin-left: 0;
    border-top: 1px solid #f1f5f9;
  }

  .site-header.is-open .primary-nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid #0F172B08;
  }

  .nav-list > li:last-child {
    border-bottom: none;
  }

  .nav-list > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 20px;
    font-weight: 800;
    color: #0F172B;
    width: 100%;
    transition: color 0.2s;
  }

  /* Highlighting primary menu items with brand green */
  .nav-list > li > a:hover,
  .nav-list > li > a.active,
  .nav-list > li.has-megamenu > a {
    color: var(--green);
  }

  /* Reset Industries and secondary items to dark if preferred by context */
  .nav-list > li.has-megamenu:nth-child(3) > a {
    color: #1a2b3c; /* Only Industries is dark until active? Based on image */
  }
  
  .has-megamenu.active > a {
    color: var(--green) !important;
  }

  .has-megamenu .submenu-arrow {
    width: 20px;
    height: 20px;
    color: #0F172B;
    transition: transform 0.3s;
  }

  .has-megamenu.active .submenu-arrow {
    transform: rotate(180deg);
    color: var(--green);
  }

  .btn-book {
    display: none;
  }

  /* Mobile Menu Toggle button */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .hamburger {
    position: relative;
    width: 26px;
    height: 2.5px;
    background: #0F172B;
    transition: 0.3s;
  }

  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #0F172B;
    transition: 0.3s;
  }

  .hamburger::before { top: -9px; }
  .hamburger::after { bottom: -9px; }

  .site-header.is-open .hamburger { background: transparent; }
  .site-header.is-open .hamburger::before { transform: rotate(45deg) translate(6px, 6px); }
  .site-header.is-open .hamburger::after { transform: rotate(-45deg) translate(6px, -6px); }

  /* Mega Menu to Accordion Transformation */
  .megamenu-container {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #fbfdfe;
    margin: 0 -24px;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
  }

  .has-megamenu.active .megamenu-container {
    max-height: 5000px;
    padding: 10px 24px 30px;
  }

  .megamenu-inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    gap: 30px;
  }

  .megamenu-col {
    padding: 0;
    border: none;
  }

  .menu-label-box {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0F172B08;
  }

  .menu-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .platform-text strong, 
  .capability-item strong {
    font-size: 16px;
    font-weight: 700;
  }

  .platform-item, .capability-item {
    padding: 14px 0 !important;
  }

  .platform-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  /* Hide specific desktop-only elements on mobile */
  .platform-text p, 
  .capability-item p, 
  .promo-col,
  .industries-cta-box {
    display: none !important;
  }
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 90% at 50% 0%, #e8fdf1 0%, #ffffff 65%);
}

/* Track */
.slides-track {
  display: flex;
  transition: transform .75s var(--ease);
}

/* Each Slide */
.hero-slide {
  min-width: 100%;
  padding: 60px 20px 60px;
  text-align: center;
  background-color: #F6F9F6;
}

.hero-slide .container {
  position: relative;
}

/* Text */
.slide-heading {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--title);
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}

.slide-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #47C56E 0%, #4CC771 10%, #51CA74 20%, #55CC78 30%, #5ACF7B 40%, #5ED17E 50%, #5ACF7B 60%, #55CC78 70%, #51CA74 80%, #4CC771 90%, #47C56E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
}

.slide-desc {
  font-size: 24px;
  color: var(--body-text);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Brand logos row */
.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* CTA Button in hero */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--green-dark);
  color: #091C0F;
  font-size: 18px;
  font-weight: 700;
  border-radius: 99px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0px 0px 40px 0px #47C56E4D;
}

.btn-cta:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 200, 120, .35);
}

.btn-cta svg {
  transition: transform .2s;
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* Arrow controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  transition: background .2s, border-color .2s;
  z-index: 5;
}

.hero-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.hero-arrow-prev {
  left: 15px;
}

.hero-arrow-next {
  right: 15px;
}

/* Dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 30px;
  margin-top: -25px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ==========================================
   LATEST HIGHLIGHTS SECTION
   ========================================== */
.highlights-section {
  padding: 50px 0 60px;
  background: var(--white);
}

/* Section header */
.sec-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #47C56E;
  background: #47C56E1A;
  border: 0.6px solid #47C56E33;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
  width: fit-content;
}

.sec-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #091C0F;
  line-height: 60px;
  margin-bottom: 14px;
}

.sec-title span {
  color: var(--green);
}

.sec-desc {
  font-size: 18px;
  color: #45556C;
  max-width: 650px;
  margin-inline: auto;
  line-height: 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

/* ---- GRID ---- */
/*
  Left column:  1 tall card (rows 1-2)
  Right column: 2 stacked cards (rows 1, 2)
  Bottom row:  2 equal horizontal cards (spanning both columns, side by side)
*/
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Slot assignments */
.hl-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hl-right-top {
  grid-column: 2;
  grid-row: 1;
}

.hl-right-bot {
  grid-column: 2;
  grid-row: 2;
}

.hl-btm-left {
  grid-column: 1;
  grid-row: 3;
}

.hl-btm-right {
  grid-column: 2;
  grid-row: 3;
}

/* ---- CARD base ---- */
.hl-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.hl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

/* --- FEATURED card (tall, dark content area) --- */
.hl-featured .card-img {
  height: 240px;
  background: #1a3d2b center / cover no-repeat;
  position: relative;
  flex-shrink: 0;
}

.hl-featured .card-body {
  flex: 1;
  background: #091C0F;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.hl-featured .card-body .ctag {
  color: rgba(255, 255, 255, .55);
}

.hl-featured .card-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 36px;
  margin-bottom: 12px;
}

.hl-featured .card-text {
  color: #CAD5E2;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.hl-featured .card-link {
  color: #47C56E;
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- SMALL RIGHT cards (horizontal layout: image | text) --- */
.hl-small {
  flex-direction: row;
  min-height: 150px;
}

.hl-small .card-img {
  width: 180px;
  flex-shrink: 0;
  background: #cde8d8 center / cover no-repeat;
}

.hl-small .card-body {
  padding: 15px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hl-small .card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  line-height: 28px;
  margin-bottom: 8px;
}

.hl-small .card-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 20px;
  margin-bottom: 20px;
}

.hl-small .card-link {
  font-size: 14px;
  color: #47C56E;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* --- BOTTOM row cards (same as small, but larger) --- */
.hl-bottom {
  flex-direction: row;
  min-height: 140px;
}

.hl-bottom .card-img {
  width: 190px;
  flex-shrink: 0;
  background: #b8d8c8 center / cover no-repeat;
}

.hl-bottom .card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hl-bottom .card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #091C0F;
  line-height: 1.4;
  margin-bottom: 8px;
}

.hl-bottom .card-text {
  font-size: 14px;
  color: #45556C;
  margin-bottom: 12px;
  line-height: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-footer div p {
  color: #90A1B9;
  font-size: 12px;
  font-weight: 400;
}

.hl-bottom .card-link {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* Shared card elements */
.ctag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #47C56E;
  margin-bottom: 10px;
}

.ctag svg {
  flex-shrink: 0;
  background: #47C56E1A;
  padding: 8px;
  border-radius: 6px;
  color: #47C56E;
  width: 34px;
  height: 34px;
}

.img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #47C56E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
}

/* View All Button */
.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #091C0F;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  transition: background .2s, transform .2s;
}

.btn-dark:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================
   CRM SERVICES SECTION
   ========================================== */
.crm-services-section {
  padding: 60px 0 60px;
  background: #F6F9F6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--white);
  border: 0.6px solid #0F172B1A;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0px 1px 2px -1px #0000001A;
  box-shadow: 0px 1px 3px 0px #0000001A;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .07);
}

/* Icon circle */
.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #47C56E1A;
  border: 0.6px solid #47C56E33;
  color: #47C56E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.srv-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #091C0F;
  margin-bottom: 10px;
  line-height: 32px;
}

.srv-desc {
  font-size: 16px;
  color: #45556C;
  line-height: 26px;
  margin-bottom: 20px;
}

.srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srv-list li {
  font-size: 14px;
  color: #62748E;
  font-weight: 500;
  padding: 5px 0 2px 18px;
  position: relative;
  line-height: 24px;
}

.srv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================
   PLATFORM EXPERTISE SECTION (NEW)
   ========================================== */
.platforms-section {
  padding: 70px 0;
  background: var(--white);
}

.platforms-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Platform Card */
.p-card {
  background: #f1f8f5;
  border-radius: 32px;
  padding: 30px;
  display: flex;
  gap: 60px;
  border: 1px solid rgba(62, 200, 120, 0.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Card Left Side */
.p-card-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
}

.p-logo-wrap {
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.p-logo-wrap .salesforce-logo {
  border: 0.6px solid #E2E8F0;
  width: fit-content;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 161, 224, 0.2) 0%, rgba(0, 161, 224, 0.05) 100%);
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-logo-wrap .hubspot-logo {
  border: 0.6px solid #E2E8F0;
  width: fit-content;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.2) 0%, rgba(255, 122, 89, 0.05) 100%);
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-logo-wrap .zoho-logo {
  border: 0.6px solid #E2E8F0;
  width: fit-content;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.2) 0%, rgba(255, 122, 89, 0.05) 100%);
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-logo-wrap img,
.p-logo-wrap svg {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.p-card-left h3 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}

.p-card-left p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body-text);
  margin-bottom: 30px;
}

.p-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--title);
  margin-top: auto;
}

.p-explore svg {
  transition: transform .2s;
}

.p-explore:hover svg {
  transform: translateX(5px);
}

/* Card Right Side Grid (2x2) */
.p-card-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.p-feature-item {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-feat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--title);
}

/* Feature dots */
.p-card-salesforce {
  background: #F6F9F6;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-card-hubspot {
  background: #F6F9F6;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-card-zoho {
  background: #F6F9F6;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.p-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-card-salesforce .p-dot {
  background: #00A1E0;
}

.p-card-hubspot .p-dot {
  background: #FF7A59;
}

.p-card-zoho .p-dot {
  background: #E42527;
}

.p-feat-desc {
  font-size: 14px;
  line-height: 23px;
  color: #62748E;
}

/* Responsive adjustments for platforms */
@media (max-width: 1024px) {
  .p-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .p-card-left {
    flex: none;
    width: 100%;
  }
}

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

  .p-card {
    padding: 30px;
    border-radius: 24px;
  }
}

/* ==========================================
   WHY CHOOSE US SECTION (NEW)
   ========================================== */
.why-choose-section {
  padding: 70px 0;
  background: #F6F9F6;
  /* very light green tint */
}

.why-row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.why-left {
  flex: 0 0 420px;
  position: sticky;
  top: 120px;
}

.why-left .sec-title {
  text-align: left;
  margin-bottom: 24px;
  line-height: 50px;
}

.why-left .sec-desc {
  text-align: left;
  margin-inline: 0;
  max-width: 100%;
  margin-bottom: 40px;
}

.btn-light-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #e8fdf1;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  border-radius: 99px;
  transition: all .2s;
}

.btn-light-green:hover {
  background: var(--green);
  color: #fff;
}

.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Feature Card */
.why-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 24px;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #47C56E1A;
  border: 0.6px solid #47C56E33;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-content {
  flex: 1;
}

.why-card-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 16px;
  line-height: 26px;
  color: #45556C;
  margin-bottom: 20px;
}

/* Tags row */
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-tag {
  font-size: 14px;
  font-weight: 500;
  color: #45556C;
  background: #f3f4f6;
  border: 0.6px solid #E2E8F0;
  padding: 4px 12px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-row {
    flex-direction: column;
    gap: 50px;
  }

  .why-left {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 640px) {
  .why-card {
    flex-direction: column;
    padding: 24px;
  }

  .why-left .sec-title {
    font-size: 32px;
  }
}

/* ==========================================
   APPROACH / METHODOLOGY SECTION (NEW)
   ========================================== */
.approach-section {
  padding: 70px 0;
  background: var(--white);
}

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

.proc-card {
  background: var(--white);
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border-radius: 24px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all .3s var(--ease);
}

.proc-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.proc-icon-box {
  width: 63px;
  height: 63px;
  margin-inline: auto;
  margin-bottom: 24px;
  position: relative;
}

.proc-icon {
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1.81px solid #47C56E33;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-num {
  position: absolute;
  top: -11px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #47C56E;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 15px 0px #47C56E80;
}

.proc-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #091C0F;
  margin-bottom: 12px;
}

.proc-desc {
  font-size: 14px;
  line-height: 23px;
  color: #45556C;
}

/* ==========================================
   INDUSTRIES SECTION (NEW)
   ========================================== */
.industries-section {
  padding: 70px 0;
  background: #F6F9F6;
}

.indus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.indus-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border-top: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
  transition: all .3s;
}

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

.indus-icon {
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.indus-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #091C0F;
  margin-bottom: 10px;
}

.indus-desc {
  font-size: 14px;
  line-height: 23px;
  color: #45556C;
}

/* Responsive */
@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

/* ==========================================
   IMPACT / CASE STUDIES SECTION (NEW)
   ========================================== */
.impact-section {
  padding: 70px 0;
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.impact-card {
  background: #F6F9F6;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.impact-card-head .icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--green);
  padding: 14px;
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-card-head h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
}

/* Sub-blocks inside card */
.impact-block {
  padding: 16px;
  border-radius: 14px;
}

.impact-block.white {
  background: var(--white);
  border: 0.6px solid #E2E8F0;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.impact-block.tint {
  background: #47C56E0D;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 0.6px solid #47C56E33;
}

.impact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #47C56E;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.impact-text {
  font-size: 14px;
  line-height: 20px;
  color: #45556C;
}

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

  .impact-card {
    padding: 30px;
  }
}

/* ==========================================
   ASSESSMENT / HEALTH CHECK SECTION (NEW)
   ========================================== */
.assessment-section {
  padding: 70px 0;
  background: #F6F9F6;
  border-bottom: 1.71px solid #E2E8F0;
}

/* Logos in assessment */
.as-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  opacity: 0.7;
}

.as-logos img,
.as-logos svg {
  height: 32px;
  width: auto;
}

/* Grid for Evaluate vs Receive */
.as-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  margin-bottom: 60px;
}

.as-card {
  background: var(--white);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0px 2px 4px -2px #0000001A;
  display: flex;
  flex-direction: column;
}

.as-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 4px solid var(--green);
  line-height: 36px;
}

/* List of items */
.as-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.as-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  transition: background .2s;
}

.as-item.active {
  background: #f8faf9;
}

.as-item-icon {
  width: 51px;
  height: 51px;
  background: #47C56E1A;
  color: var(--green);
  border: 1.71px solid #47C56E4D;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px;
}

.as-item-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 4px;
}

.as-item-content p {
  font-size: 16px;
  color: #45556C;
  line-height: 26px;
}

/* Receive Right Column */
.as-receive-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px;
  background: #F9F9F9;
  border-radius: 12px;
  margin-bottom: 12px;
}

.as-receive-item span {
  font-size: 18px;
  font-weight: 700;
  color: #0F172B;
}

.as-note {
  margin-top: auto;
  padding: 17px;
  background: #47C56E0D;
  border: 1.71px solid #47C56E33;
  border-radius: 6px;
  font-size: 14px;
  color: #314158;
  font-weight: 500;
}

/* FORM CARD */
.as-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px;
  /* max-width: 900px; */
  margin-inline: auto;
  box-shadow: 0px 4px 6px -4px #0000001A;
  border: 1.71px solid #E2E8F0;
}

.as-form-card .section-head {
  margin-bottom: 40px;
}

.as-form-card .sec-title {
  font-size: 36px;
}

.as-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.as-form-field.full {
  grid-column: 1 / -1;
}

.as-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #314158;
  margin-bottom: 4px;
  letter-spacing: 0.7px;
}

.as-input {
  width: 100%;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1.71px solid #E2E8F0;
  border-radius: 6px;
  font-size: 14px;
  color: #90A1B9;
  transition: all .2s;
}

.as-input::placeholder {
  color: #90A1B9;
  opacity: 1;
}

.as-input:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(62, 200, 120, 0.1);
}

.btn-submit {
  grid-column: 1 / -1;
  background: #47C56E;
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform .2s, background .2s;
  border: 1.71px solid #47C56E;
  box-shadow: 0px 4px 6px -4px #0000001A;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

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

  .as-form-card {
    padding: 40px 24px;
  }

  .as-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SERVICE TEMPLATE (NEW)
   ========================================== */
/* ==========================================
   SERVICE TEMPLATE (PIXEL PERFECT REFINEMENT)
   ========================================== */
.service-hero {
  padding: 60px 0 60px;
  background: #ffffff;
  text-align: center;
}

.srv-hero-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.srv-h-tag {
  font-size: 14px;
  font-weight: 700;
  color: #62748E;
  background: #F8FAFC;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.71px solid #F1F5F9;
}

/* Specific Badge style for Service Hero */
.service-hero .sec-label {
  background: #fff;
  border: 1.71px solid #F1F5F9;
  box-shadow: 0px 1px 2px -1px #0000001A;
  color: #90A1B9;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
}

.service-hero .srv-hero-title {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 24px;
  line-height: 80px;
}

.service-hero .srv-hero-desc {
  font-size: 24px;
  color: #45556C;
  line-height: 32px;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.service-hero .srv-hero-title span {
  color: var(--green);
}

/* Bright Green Button for Service page */
.btn-srv-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #47C56E;
  color: #091C0F;
  font-size: 18px;
  font-weight: 700;
  border-radius: 99px;
  transition: transform .2s var(--ease), box-shadow .2s;
}

.btn-srv-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(62, 200, 120, 0.3);
}

/* Stats Row - Clean, no borders */
.srv-stats-row {
  padding: 50px 0;
  background: #ffffff;
  border-width: 1.71px, 0px, 1.71px, 0px;
  border-style: solid;
  border-color: #F1F5F9;
}

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

.stat-item h3 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #90A1B9;
  letter-spacing: 1.4px;
}

/* Split Details Section */
.srv-split-section {
  padding: 70px 0;
  background: #F6F9F6;
}

.srv-split-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

.srv-split-left {
  flex: 1;
}

.srv-split-right {
  flex: 0 0 450px;
}

.srv-split-left .sec-title {
  text-align: left;
  font-size: 48px;
  font-weight: 600;
  color: #091C0F;
  line-height: 1.15;
  margin-bottom: 28px;
}

.srv-split-left p {
  font-size: 18px;
  line-height: 30px;
  color: #45556C;
  margin-bottom: 24px;
}

.srv-split-left p strong {
  color: #1D293D;
  font-weight: 700;
}

.srv-split-img {
  width: 100%;
  aspect-ratio: 10 / 13;
  background: #e5e7eb center / cover no-repeat;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .service-hero .srv-hero-title {
    font-size: 42px;
  }

  .srv-split-row {
    flex-direction: column;
    gap: 60px;
  }

  .srv-split-right {
    flex: none;
    width: 100%;
  }
}

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

  .service-hero .srv-hero-title {
    font-size: 34px;
  }
}

/* ==========================================
   SERVICE CAPABILITIES GRID (8-CARD)
   ========================================== */
.srv-capabilities-section {
  padding: 70px 0;
  background: #F6F9F6;
  border-width: 1.71px, 0px, 1.71px, 0px;
  border-style: solid;
  border-color: #F1F5F9;
}

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

.cap-card {
  background: #ffffff;
  border: 1.71px solid #F1F5F9;
  border-radius: 24px;
  padding: 25px;
  transition: transform .3s var(--ease), border-color .3s;
}

.cap-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.cap-icon {
  width: 47px;
  height: 47px;
  color: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
  line-height: 25px;
}

.cap-desc {
  font-size: 14px;
  color: #62748E;
  line-height: 23px;
}

/* ==========================================
   SERVICE LIST GRID (6-CARD WITH BULLETS)
   ========================================== */
.srv-list-section {
  padding: 70px 0;
  background: #ffffff;
}

.srv-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.srv-li-card {
  background: #F6F9F6;
  border-radius: 24px;
  padding: 40px 25px;
  border: 1.71px solid #F1F5F9;
}

.srv-li-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 14px;
}

.srv-li-card p {
  font-size: 14px;
  color: #62748E;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 23px;
}

.srv-li-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srv-li-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 12px;
  font-weight: 700;
  color: #45556C;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.srv-li-bullets li:last-child {
  margin-bottom: 0;
}

.srv-li-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: #e8fdf1 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233ec878' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / 10px;
  border-radius: 50%;
}

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

  .srv-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SERVICE APPROACH (4-CARD NUMERIC)
   ========================================== */
.srv-approach-section {
  padding: 70px 0;
  background: #F6F9F6;
  border-width: 1.71px, 0px, 1.71px, 0px;
  border-style: solid;
  border-color: #E2E8F0;
}

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

.approach-card {
  background: #ffffff;
  border: 1.71px solid #F1F5F9;
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
}

.approach-card .icon-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.approach-card .icon {
  width: 47px;
  height: 47px;
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  color: #90A1B9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card .num {
  font-size: 30px;
  font-weight: 700;
  color: #F1F5F9;
  /* very light grey */
  font-family: var(--font-head);
}

.approach-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 14px;
  color: #90A1B9;
  line-height: 23px;
}

/* ==========================================
   INDUSTRIES SMALL GRID (REFINED)
   ========================================== */
.srv-industries-small {
  padding: 70px 0;
  background: #ffffff;
}

.indus-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.indus-small-card {
  background: #F8FAFC;
  border-radius: 24px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  border: 1.71px solid #F1F5F9;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 130px;
  box-sizing: border-box;
}

/* Decorative corner shape */
.indus-small-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(71, 197, 110, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50%;
  transition: all .4s var(--ease);
  z-index: 1;
}

.indus-small-card .icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #47C56E;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease);
  box-shadow: 0px 1px 2px -1px #0000001A;
  position: relative;
  z-index: 2;
}

.indus-small-card span {
  font-size: 20px;
  font-weight: 700;
  color: #091C0F;
  transition: all .4s var(--ease);
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-block;
  padding-bottom: 4px;
}

/* Fix: Absolute underline to prevent "Hillna" (Jumping) */
.indus-small-card span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .3s var(--ease);
}

/* Hover State */
.indus-small-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.indus-small-card:hover::after {
  background: var(--green);
}

.indus-small-card:hover .icon {
  background: var(--green);
  color: #fff;
}

.indus-small-card:hover span {
  color: var(--green);
}

.indus-small-card:hover span::after {
  width: 100%;
}

/* ==========================================
   PARTNER FOR GROWTH SECTION
   ========================================== */
.srv-growth-section {
  padding: 70px 0;
  background-color: #F6F9F6;
}

.growth-row {
  display: flex;
  gap: 80px;
  align-items: center;
}

.growth-left {
  flex: 1;
}

.growth-right {
  flex: 0 0 540px;
}

.growth-left .sec-title {
  text-align: left;
  font-size: 48px;
  margin-bottom: 24px;
}

.growth-left .sec-desc {
  font-size: 20px;
  font-weight: 500;
  color: #45556C;
  margin-bottom: 24px;
  line-height: 32px;
}

.growth-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.growth-li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #314158;
}

.growth-li .check-img {
  color: var(--green);
  flex-shrink: 0;
  background: #47C56E1A;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  padding: 5px;
}

.growth-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  background: #e5e7eb center / cover no-repeat;
}

/* Floating Stat Card */
.stat-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 1.71px solid #F1F5F9;
  border-radius: 24px;
  padding: 20px 41px;
  width: 320px;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.stat-float h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--title);
  line-height: 60px;
}

/* .stat-float h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 10px auto;
} */

.stat-float p {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #62748E;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.stat-float span {
  font-size: 14px;
  color: #90A1B9;
  line-height: 20px;
  display: block;
}

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

  .indus-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-row {
    flex-direction: column;
    gap: 60px;
  }

  .growth-right {
    width: 100%;
    flex: none;
  }

  .growth-bullets {
    grid-template-columns: 1fr;
  }
}

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

/* ==========================================
   FINAL CTA FORM SECTION (DARK)
   ========================================== */
.srv-form-section {
  padding: 70px 0;
  background: #091C0F;
  color: #fff;
}

.srv-form-row {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.srv-form-left {
  flex: 0 0 440px;
}

.srv-form-right {
  flex: 1;
}

.srv-form-left h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 50px;
}

.srv-form-left h2 span {
  color: var(--green);
}

/* Switcher Buttons */
.srv-switcher-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-switch-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-radius: 6px;
  background: #FFFFFF0D;
  border: 1.71px solid #FFFFFF1A;
  cursor: pointer;
  transition: all .3s;
}

.srv-switch-item.active {
  background: #47C56E;
  border: 1.71px solid #47C56E;
}

.srv-switch-item .sw-info h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #ffffff;
}

.srv-switch-item .sw-info p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.4;
}

.srv-switch-item.active .sw-info h4 {
  color: #fff;
}

.srv-switch-item.active .sw-info p {
  opacity: 0.8;
}

.srv-switch-item svg {
  opacity: 0.5;
}

/* WHITE CARD FORM */
.srv-white-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0px 25px 50px -12px #00000040;
  padding: 40px;
  color: var(--title);
}

.srv-white-card h3 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #091C0F;
  margin-bottom: 12px;
}

.srv-white-card .desc {
  font-size: 16px;
  color: #62748E;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 24px;
}

.srv-form-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #CAD5E2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid #f3f4f6;
}

.srv-form-step-label span {
  color: var(--green);
}

.srv-form-step-label:first-of-type {
  border: none;
  padding-top: 0;
}

.srv-f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.srv-f-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #90A1B9;
}

.srv-f-input {
  width: 100%;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  border-radius: 6px;
  font-size: 14px;
  color: #0F172B80;
}

.srv-f-input::placeholder {
  color: #0F172B80;
  opacity: 1;
}

.srv-f-input:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(62, 200, 120, 0.1);
}

/* Radio Pill Selector */
.srv-pill-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.srv-pill {
  flex: 1;
  padding: 14px 4px;
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

/* .srv-pill.active {
  background: var(--white);
  border-color: var(--green);
  color: var(--green);
} */

.btn-transmit {
  width: 100%;
  padding: 18px;
  background: #47C56E;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0px 8px 10px -6px #0F172B33;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .srv-form-row {
    flex-direction: column;
    gap: 60px;
  }

  .srv-form-left {
    width: 100%;
    flex: none;
  }
}

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

  .srv-pill-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-white-card {
    padding: 40px 24px;
  }
}

/* ==========================================
   ABOUT US TEMPLATE
   ========================================== */
.about-hero .srv-hero-title {
  font-size: 64px;
}

.about-hero .srv-hero-title span {
  color: var(--green);
}

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

.team-card {
  text-align: center;
}

.team-img {
  aspect-ratio: 1 / 1.25;
  border-radius: 24px;
  background: #f3f4f6 center / cover no-repeat;
  margin-bottom: 24px;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.team-card:hover .team-img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-cta h2 span {
  color: var(--green);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-hero .srv-hero-title {
    font-size: 42px;
  }
}

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

/* ==========================================
   ABOUT US TEMPLATE (FINAL MASTERING)
   ========================================== */
.about-hero-v2 {
  padding: 70px 0 70px;
  background: #ffffff;
  text-align: center;
}

.about-hero-v2 .sec-label {
  background: #ffffff;
  border: 1.71px solid #F1F5F9;
  box-shadow: 0px 1px 2px -1px #0000001A;
  color: #90A1B9;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.about-hero-v2 .srv-hero-title {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -1.8px;
  color: var(--title);
  margin-bottom: 24px;
}

.about-hero-v2 .srv-hero-title span {
  color: var(--green);
}

.about-hero-v2 .srv-hero-desc {
  font-size: 20px;
  color: #45556C;
  line-height: 32px;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.about-hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.about-hero-logos img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity .3s;
}

.about-hero-logos img:hover {
  opacity: 1;
}

/* Who We Are & Mission Card Section */
.who-we-are {
  padding: 70px 0;
  background: #F8FAFC80;
}

.who-row {
  display: flex;
  gap: 80px;
  align-items: center;
}

.who-left {
  flex: 2.7;
}

/* Wider text column */
.who-right {
  flex: 2.7;
}

/* Tighter mission card */

.who-left .sec-label {
  background: #f0fdf4;
  border: none;
  color: #166534;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.who-left .sec-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--title);
  margin-bottom: 36px;
  text-align: left;
}

.who-left p {
  font-size: 20px;
  color: #45556C;
  line-height: 32px;
  margin-bottom: 24px;
  font-weight: 500;
}

.mission-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0px 8px 10px -6px #E2E8F080;
  border: 1px solid #E2E8F0;
}

.mission-card .label {
  font-size: 20px;
  font-weight: 700;
  color: #47C56E;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.mission-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--title);
  line-height: 33px;
  margin-bottom: 30px;
  margin-top: 10px;
}

.mission-quote {
  padding-top: 36px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  gap: 16px;
}

.mission-quote svg {
  width: 80px;
  height: 40px;
  border-radius: 6px;
  color: var(--green);
  background: #47C56E1A;
  padding: 10px;
}

.mission-quote p {
  font-size: 18px;
  color: #45556C;
  line-height: 28px;
}

/* The Sietrix Advantage (Dark Grid) */
.diff-section {
  padding: 70px 0;
  background: #091C0F;
}

.diff-section .sec-label {
  background: rgba(62, 200, 120, 0.08);
  border-color: rgba(62, 200, 120, 0.15);
  color: var(--green);
  font-size: 14px;
}

.diff-section .sec-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.diff-card {
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF1A;
  border-radius: 24px;
  padding: 40px 35px;
  transition: all .4s var(--ease);
}

.diff-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.diff-icon {
  width: 56px;
  height: 56px;
  background: #FFFFFF1A;
  color: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.diff-card h4 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.diff-card p {
  font-size: 18px;
  color: #90A1B9;
  line-height: 30px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .who-row {
    flex-direction: column;
    gap: 60px;
  }

  .who-right {
    width: 100%;
    flex: none;
  }

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

  .about-hero-v2 .srv-hero-title {
    font-size: 42px;
  }
}

/* ==========================================
   ABOUT MASTERY GRID (EQUAL HEIGHTS)
   ========================================== */
.about-mastery-section {
  padding: 70px 0;
  background: #ffffff;
}

.mastery-row {
  display: flex;
  gap: 100px;
  align-items: stretch;
  /* Enforce global equal height */
}

.mastery-left {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
}

.mastery-right {
  flex: 1;
}

.mastery-left .sec-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #091C0F;
  line-height: 60px;
  margin-bottom: 24px;
}

.mastery-img-box {
  width: 100%;
  flex: 1;
  /* Grow to fill the column height */
  border-radius: 20px;
  background: #e5e7eb center / cover no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.mastery-img-box .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(0deg, rgba(2, 6, 24, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
}

.mastery-img-box .overlay-text p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1.4px;
}

.mastery-img-box .overlay-text h4 {
  font-size: 24px;
  font-weight: 700;
}

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

.mastery-card {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 24px;
  padding: 32px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s;
}

.mastery-card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border-color: #f1f3f2;
}

.mastery-card .m-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin-bottom: 20px;
}

.mastery-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #314158;
  line-height: 25px;
  margin-bottom: 0;
}

/* ==========================================
   ABOUT FINAL CTA (DARK)
   ========================================== */
.about-final-cta {
  padding: 70px 0;
  background: #091C0F;
  text-align: center;
}

.about-final-cta .sec-title {
  color: #fff;
  font-weight: 700;
  font-size: 64px;
  line-height: 91.2px;
  letter-spacing: -4.8px;
  text-align: center;

  margin-bottom: 24px;
}

.about-final-cta p {
  color: #90A1B9;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 48px;
  font-size: 20px;
  font-weight: 500;
}

.about-final-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 24px 48px;
  background: transparent;
  border: 1px solid #FFFFFF1A;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  transition: all .3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 1024px) {
  .mastery-row {
    flex-direction: column;
    gap: 60px;
  }

  .mastery-left {
    width: 100%;
    flex: none;
  }

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

/* ==========================================
   CONTACT US TEMPLATE
   ========================================== */
.contact-hero .srv-hero-title span {
  color: var(--green);
}

.info-item .icon {
  flex-shrink: 0;
  transition: all .3s var(--ease);
}

.info-item:hover .icon {
  background: var(--green) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(62, 200, 120, 0.15);
}

.srv-main-form input,
.srv-main-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  font-size: 16px;
  color: #CAD5E2;
  transition: all .3s;
}

.srv-main-form input::placeholder,
.srv-main-form textarea::placeholder {
  color: #CAD5E2;
}

.srv-main-form input:focus,
.srv-main-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 10px 25px rgba(62, 200, 120, 0.05);
}

@media (max-width: 1024px) {
  .contact-main .srv-split-row {
    flex-direction: column;
    gap: 60px;
  }

  .contact-main .srv-split-left {
    width: 100%;
    flex: none;
  }
}

/* ==========================================
   CONTACT US TEMPLATE V2 (PIXEL PERFECT)
   ========================================== */
.contact-v2-hero {
  padding: 70px 0 50px;
  background: #0A1C0F;
  color: #fff;
}

.contact-v2-hero .srv-hero-title {
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-v2-hero .srv-hero-title span {
  color: var(--green);
}

.contact-v2-hero .srv-hero-desc {
  font-size: 20px;
  color: #90A1B9;
  max-width: 760px;
  border-bottom: 1px solid #FFFFFF0D;
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.contact-hero-partners {
  display: flex;
  /* gap: 32px; */
  /* opacity: 0.8;x  */
}

.contact-hero-partners p {
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
  text-transform: uppercase;
  color: #62748E;
  padding-right: 20px;
}

.contact-hero-partners img {
  height: 28px;
}

/* Main Section: Booking & Form */
.contact-main-v2 {
  padding: 70px 0;
  background: #ffffff;
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 30px;
}

.booking-card,
.contact-card-v2 {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0px 30px 60px -15px #00000014;
  border: 1px solid #E2E8F0;
}

.card-icon-box {
  width: 64px;
  height: 64px;
  background: #47C56E1A;
  color: var(--green);
  border: 1px solid #47C56E33;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.booking-card h3,
.contact-card-v2 h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  color: #0F172B;
  margin-bottom: 16px;
}

.booking-card p {
  font-size: 18px;
  color: #62748E;
  line-height: 30px;
  margin-bottom: 30px;
}

.booking-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.booking-checklist .check-img {
  color: var(--green);
  flex-shrink: 0;
  background: #47C56E1A;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  padding: 5px;
}

.booking-checklist li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #45556C;
  font-weight: 500;
  margin-bottom: 16px;
}

.booking-checklist li svg {
  color: var(--green);
  flex-shrink: 0;
}

.dark-submit-btn {
  width: 100%;
  padding: 18px;
  background: #0F172B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity .3s;
}

.dark-submit-btn:hover {
  opacity: 0.9;
}

/* Audit Banner */
.audit-banner {
  padding: 80px 0;
  margin-top: 60px;
  background: #f0fdf4;
  border-radius: 30px;
}

.audit-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

.audit-content {
  flex: 1.2;
}

.audit-float-card {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
}

.audit-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.audit-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #314158;
}

.audit-feature-item svg {
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  color: var(--green);
  padding: 4px;
}

.claim-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0px 20px 40px -15px #0000000D;
  border: 1px solid #F1F5F9;
  width: 380px;
  position: relative;
}

.claim-card .badge-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--green);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(62, 200, 120, 0.3);
}

@media (max-width: 1024px) {
  .contact-grid-v2 {
    grid-template-columns: 1fr;
  }

  .audit-row {
    flex-direction: column;
    text-align: center;
  }

  .audit-float-card {
    justify-content: center;
  }

  .contact-hero-partners {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-hero-partners p {
    border-right: none;
    padding-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.site-footer {
  background: radial-gradient(70.71% 70.71% at 50% 50%, #0F172B 0.07%, rgba(0, 0, 0, 0) 0.07%);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -20px;
  right: 5%;
  font-size: 18vw;
  font-weight: 900;
  color: #F8FAFC;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-head);
  letter-spacing: -0.05em;
  opacity: 0.5;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  text-decoration: none;
}

.footer-brand .brand-logo img {
  height: 40px;
  width: auto;
}

.footer-brand .brand-logo span {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 500;
  color: #0F172B;
}

.footer-brand p {
  font-size: 16px;
  color: #62748E;
  line-height: 23px;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex !important;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  border: 1.71px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90A1B9;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #F8FAFC;
  color: var(--green);
  border-color: var(--green);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: #0F172B;
  margin-bottom: 25px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
  line-height: 1.2;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 15px;
  color: #62748E;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--green);
}

.location-details .address {
  font-size: 15px;
  color: #62748E;
  line-height: 24px;
  margin-bottom: 20px;
}

.global-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #009966;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0F172B;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.contact-link svg {
  color: var(--green);
}

.contact-link:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid #E2E8F0;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #90A1B9;
  letter-spacing: 1.1px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 10px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--green);
}

.scroll-top {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #0F172B;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.scroll-top .arrow-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.71px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  color: var(--green);
}

.scroll-top:hover .arrow-box {
  border-color: var(--green);
  background: #F8FAFC;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center;
  }
}

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

  .footer-brand p {
    max-width: 100%;
  }
}

/* ==========================================
   CONTACT US — GET IN TOUCH + WHY WORK WITH US
   ========================================== */
.contact-details-v3 {
  padding: 70px 0;
  background: #091C0F;
  color: #fff;
}

.details-row-v3 {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* -- Left column: contact list -- */
.details-left-v3 {
  flex: 0 0 330px;
}

.details-left-v3 h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 44px;
  color: #fff;
}

.contact-info-list-v3 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item-v3 {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-item-v3 .icon-sq {
  width: 48px;
  height: 48px;
  background: #FFFFFF0D;
  color: #47C56E;
  border: 1px solid #FFFFFF1A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-v3 .text-box span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #62748E;
  margin-bottom: 4px;
}

.info-item-v3 .text-box p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* -- Right column: why card -- */
.details-right-v3 {
  flex: 1;
}

.why-card-v3 {
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF1A;
  border-radius: 24px;
  padding: 56px 55px;
  position: relative;
  overflow: hidden;
}

.why-card-v3::after {
  content: "Sietrix";
  position: absolute;
  bottom: 0px;
  right: -20px;
  font-family: var(--font-head);
  font-size: 140px;
  font-weight: 800;
  color: #ffffff05;
  pointer-events: none;
  line-height: 1;
}

.why-card-v3 h3 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.why-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  position: relative;
  z-index: 1;
}

.why-item-v3 .icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
}

.why-item-v3 h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-item-v3 p {
  font-size: 14px;
  color: #62748E;
  line-height: 23px;
  font-weight: 400;
  margin: 0;
}

/* ==========================================
   CONTACT US — GROWTH ENGINE CTA
   ========================================== */
.final-cta-v3 {
  padding: 70px 0;
  background: #ffffff;
}

.cta-card-v3 {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.cta-card-v3 h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #0F172B;
  line-height: 60px;
  margin-bottom: 20px;
}

.cta-card-v3 h2 span {
  color: #47C56E;
}

.cta-card-v3 p {
  font-size: 20px;
  color: #62748E;
  line-height: 33px;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 500;
}

.cta-btns-v3 {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-cta-v3 {
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1.71px solid transparent;
}

.btn-cta-v3.primary {
  background: #47C56E;
  color: #fff;
  box-shadow: 0px 15px 30px -10px #47C56E4D;
}

.btn-cta-v3.primary:hover {
  transform: translateY(-3px);
}

.btn-cta-v3.secondary {
  background: #ffffff;
  color: #0F172B;
  border: 1px solid #E2E8F0;
}

.btn-cta-v3.secondary:hover {
  border-color: #E2E8F0;
  background: #F8FAFC;
}

@media (max-width: 1100px) {
  .details-row-v3 {
    flex-direction: column;
    gap: 60px;
  }

  .details-left-v3 {
    flex: none;
    width: 100%;
  }

  .why-grid-v3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-card-v3 h2 {
    font-size: 36px;
  }

  .cta-card-v3 {
    padding: 60px 36px;
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .slide-heading {
    font-size: 38px;
  }

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

  .hl-featured,
  .hl-right-top,
  .hl-right-bot,
  .hl-btm-left,
  .hl-btm-right {
    grid-column: 1;
    grid-row: auto;
  }

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

  .nav-list {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .nav-list {
    display: none;
  }

  .slide-heading {
    font-size: 30px;
  }

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

  .hl-small,
  .hl-bottom {
    flex-direction: column;
  }

  .hl-small .card-img,
  .hl-bottom .card-img {
    width: 100%;
    height: 160px;
  }
}

/* ==========================================
   HOMEPAGE MOBILE & TABLET RESPONSIVE FIXES
   ========================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body.no-scroll {
  overflow: hidden;
}

/* Mobile Toggle Styles */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background: var(--title, #091C0F);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {

  /* Site Header */
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .btn-book {
    display: none !important;
  }

  /* Mobile Navigation Overlay */
  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: var(--white, #ffffff);
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease, ease);
    z-index: 99;
    display: flex !important;
  }

  .primary-nav.nav-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center;
    display: flex !important;
  }

  .nav-list li a {
    font-size: 22px;
  }

  /* Hero Slider */
  .hero-slide {
    padding: 120px 0 60px;
  }

  .slide-heading {
    font-size: 32px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.8px;
  }

  .slide-desc {
    font-size: 16px !important;
  }

  .brand-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .brand-logo-item img {
    max-width: 100px;
    height: auto !important;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Latest Highlights refined for tablet */
  .hl-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 24px !important;
  }

  .hl-featured {
    grid-column: span 2 !important;
    grid-row: auto !important;
  }

  .hl-right-top,
  .hl-right-bot,
  .hl-btm-left,
  .hl-btm-right {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }

  /* Universal Section Reset & Grids */
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 0 !important;
  }

  .sec-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
  }

  .services-grid,
  .process-grid,
  .p-card-right,
  .why-grid-v3,
  .impact-grid,
  .srv-f-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    flex-direction: row !important;
  }

  /* Stacking where horizontal space is really needed */
  .why-row,
  .p-card,
  .contact-grid-v2,
  .details-row-v3,
  .audit-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* Reset all highlighted grid specific alignments to ensure 2-column flow */
  /* (Already handled above for HL) */

  /* Sub-cards inside platforms, contact, and why choose us */
  .p-card-left,
  .p-card-right,
  .why-left,
  .why-right,
  .srv-split-left,
  .srv-split-right,
  .audit-float-card,
  .audit-content,
  .details-left-v3,
  .details-right-v3,
  .booking-card,
  .contact-card-v2 {
    width: 100% !important;
    flex: none !important;
  }

  .audit-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .why-left {
    position: static !important;
  }

  /* Ensure the grid of platforms internal items also stacks if needed */
  .p-card-right {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .srv-split {
    flex-direction: column !important;
  }

  /* Footer details */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* --- Refined Mobile Adjustments (under 768px) --- */
@media (max-width: 767px) {
  .container {
    padding: 0 20px !important;
  }

  section {
    padding: 45px 0 !important;
  }

  .sec-title {
    font-size: 26px !important;
    text-align: center;
    margin-bottom: 24px !important;
  }

  .sec-desc {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 30px !important;
  }

  /* Stack all grids on phone */
  .services-grid,
  .process-grid,
  .p-card-right,
  .why-grid-v3,
  .impact-grid,
  .srv-f-grid,
  .hl-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Latest Highlights full stack */
  .hl-featured,
  .hl-right-top,
  .hl-right-bot,
  .hl-btm-left,
  .hl-btm-right {
    grid-column: span 1 !important;
  }

  /* Fix card image heights for mobile */
  .card-img {
    height: 180px !important;
  }

  .hl-featured .card-img {
    height: 200px !important;
  }

  /* Center headings on mobile for better symmetry */
  .section-head, 
  .srv-sec-head {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .slide-heading {
    font-size: 26px !important;
    letter-spacing: -0.8px;
  }

  .brand-logo-item img {
    max-width: 80px;
  }
}

/* ==========================================
   CONTACT PAGE INLINE CSS EXTRACTION
   ========================================== */
.brand-logo-hub {
  height: 50px;
}

.brand-logo-sf {
  height: 40px;
}

.brand-logo-zoho {
  height: 40px;
}

.booking-card-cta {
  width: 100%;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-right {
  margin-left: 8px;
}

.booking-card-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 0;
  color: #90A1B9;
}

.booking-disclaimer-icon {
  width: 14px;
  height: 14px;
}

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

.card-icon-muted {
  background: #f8fafb;
  color: #94a3b8;
}

.contact-header-title {
  margin-bottom: 0;
}

.contact-header-desc {
  font-size: 14px;
  color: #62748E;
  margin-bottom: 32px;
}

.f-row-spacing {
  margin-bottom: 20px;
}

.f-row-spacing-lg {
  margin-bottom: 32px;
}

.f-label-v2 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #90A1B9;
  margin-bottom: 8px;
  display: block;
}

.f-label-icon {
  margin-right: 4px;
}

.f-select-v2 {
  width: 100%;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  font-size: 16px;
  color: #CAD5E2;
}

.audit-banner-v2 {
  margin-top: 50px;
  background: #ffffff;
  border: 1.71px solid #F1F5F9;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0px 4px 6px -4px #0000001A;
}

.audit-row-v2 {
  display: flex;
  gap: 60px;
  align-items: center;
}

.audit-content-v2 {
  flex: 1;
}

.audit-sec-label {
  background: transparent;
  border: none;
  padding: 0;
  color: #47C56E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
}

.audit-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 20px;
  line-height: 45px;
}

.audit-desc {
  font-size: 18px;
  color: #62748E;
  font-weight: 400;
  line-height: 30px;
  max-width: 440px;
  margin-bottom: 40px;
}

.audit-features-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audit-float-card-v2 {
  flex: 0 0 350px;
  justify-content: center;
}

.audit-badge-icon {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #47C56E;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0px 4px 6px -4px #0000001A;
}

.claim-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 6px;
}

.claim-card-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #90A1B9;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.claim-card-btn {
  width: 100%;
  background: #47C56E;
  color: white;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
}

.claim-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #CAD5E2;
  letter-spacing: 1.5px;
  border-top: 1px solid #F8FAFC;
  padding-top: 10px;
  text-transform: uppercase;
}

/* Responsive adjustments for extracted classes */
@media (max-width: 1024px) {
  .audit-banner-v2 {
    margin-top: 30px;
    padding: 24px;
  }

  .audit-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .audit-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .claim-card-btn {
    padding: 12px 16px;
  }
}

/* ==========================================
   ABOUT PAGE — RESPONSIVE (Mobile & Tablet)
   ========================================== */
@media (max-width: 1024px) {

  /* Hero */
  .about-hero-v2 .container {
    padding: 100px 20px 60px;
    text-align: center;
  }

  .about-hero-v2 .brand-row {
    justify-content: center;
  }

  .about-hero-v2 .btn-srv-cta {
    width: 100%;
    justify-content: center;
  }

  /* Who We Are */
  .who-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .who-left,
  .who-right {
    width: 100% !important;
    flex: none !important;
  }

  /* What Makes Us Different */
  .diff-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .diff-section .section-head {
    margin-bottom: 32px !important;
  }

  .diff-section .sec-title {
    margin-bottom: 32px !important;
  }

  /* End-to-End CRM Mastery */
  .mastery-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .mastery-left,
  .mastery-right {
    width: 100% !important;
    flex: none !important;
  }

  .mastery-left p {
    max-width: 100% !important;
  }

  .mastery-img-box {
    height: 220px !important;
  }

  .mastery-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* How We Work / Approach */
  .approach-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .srv-approach-section .section-head {
    margin-bottom: 32px !important;
  }

  /* Industries We Serve */
  .indus-small-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* About Final CTA */
  .about-final-cta .container {
    padding: 60px 20px;
    text-align: center;
  }

  .about-final-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center;
  }

  .about-final-btns .btn-srv-cta,
  .about-final-btns .btn-outline-white {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================
   SERVICES PAGE — RESPONSIVE (Mobile & Tablet)
   ========================================== */
@media (max-width: 1024px) {

  /* Service Hero */
  .service-hero .container {
    padding: 100px 20px 60px;
    text-align: center;
  }

  .srv-hero-tags {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .service-hero .btn-srv-cta {
    width: 100%;
    justify-content: center;
  }

  /* Stats Row */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center;
  }

  /* Split Details Section */
  .srv-split-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .srv-split-left,
  .srv-split-right {
    width: 100% !important;
    flex: none !important;
  }

  .srv-split-img {
    height: 240px !important;
  }

  /* Capabilities Grid */
  .cap-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Services List Grid */
  .srv-list-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Our Approach Section */
  .srv-approach-section .section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    text-align: left;
  }

  .srv-approach-section .section-head p {
    max-width: 100% !important;
    text-align: left !important;
    font-size: 16px !important;
  }

  /* Partner for Growth */
  .growth-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .growth-left,
  .growth-right {
    width: 100% !important;
    flex: none !important;
  }

  .growth-image-box {
    height: 260px !important;
  }

  .growth-bullets {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* CTA Form Section */
  .srv-form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .srv-form-left,
  .srv-form-right {
    width: 100% !important;
    flex: none !important;
  }

  .srv-switcher-box {
    flex-direction: column;
    gap: 12px;
  }

  .srv-f-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .btn-transmit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mastery-grid {
    grid-template-columns: 1fr !important;
  }

  .indus-small-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   SERVICE PAGE — COMPREHENSIVE RESPONSIVE FIX
   Breakpoint: ≤ 1024px (mobile + tablet)
   These rules override / supplement the scattered rules
   already in the file. Desktop layout is NOT changed.
   ===================================================== */
@media (max-width: 1024px) {

  /* ── Hero ── */
  .service-hero {
    padding: 80px 0 48px;
    overflow-x: hidden;
  }

  .service-hero .container {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .service-hero .srv-hero-title {
    font-size: 34px !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
  }

  .service-hero .srv-hero-desc {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
  }

  .srv-hero-tags {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
  }

  .service-hero .btn-srv-cta {
    width: 100% !important;
    justify-content: center !important;
    font-size: 16px !important;
    padding: 14px 24px !important;
  }

  /* ── Stats Row ── */
  .srv-stats-row {
    padding: 36px 0 !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .stat-item h3 {
    font-size: 28px !important;
  }

  /* ── Split Section ── */
  .srv-split-section {
    padding: 48px 0 !important;
  }

  .srv-split-row {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .srv-split-left,
  .srv-split-right {
    width: 100% !important;
    flex: none !important;
  }

  .srv-split-left .sec-title {
    font-size: 28px !important;
    margin-bottom: 16px !important;
  }

  .srv-split-left p {
    font-size: 15px !important;
    line-height: 26px !important;
  }

  .srv-split-img {
    aspect-ratio: 16 / 9 !important;
    border-radius: 20px !important;
  }

  /* ── Capabilities Grid (4-col → 2-col) ── */
  .srv-capabilities-section {
    padding: 48px 0 !important;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .cap-title {
    font-size: 16px !important;
  }

  .cap-card {
    padding: 20px !important;
  }

  /* ── Services List Grid (3-col → 1-col) ── */
  .srv-list-section {
    padding: 48px 0 !important;
  }

  .srv-list-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .srv-li-card {
    padding: 28px 20px !important;
  }

  .srv-li-card h3 {
    font-size: 20px !important;
  }

  /* ── Approach Grid (4-col → 2-col) ── */
  .srv-approach-section {
    padding: 48px 0 !important;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .approach-card {
    padding: 24px 20px !important;
  }

  .approach-card h3 {
    font-size: 18px !important;
  }

  /* ── Industries Grid (4-col → 2-col) ── */
  .srv-industries-small {
    padding: 48px 0 !important;
  }

  .indus-small-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* ── Partner for Growth ── */
  .srv-growth-section {
    padding: 48px 0 !important;
  }

  .growth-row {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .growth-left,
  .growth-right {
    width: 100% !important;
    flex: none !important;
  }

  .growth-left .sec-title {
    font-size: 28px !important;
  }

  .growth-left .sec-desc {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .growth-bullets {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .growth-image-box {
    aspect-ratio: 4 / 3 !important;
    border-radius: 20px !important;
  }

  /* Make stat-float card non-absolute on mobile so it doesn't overflow */
  .stat-float {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px !important;
    box-shadow: none !important;
    border: 1.71px solid #F1F5F9 !important;
    border-radius: 16px !important;
    padding: 20px !important;
  }

  /* ── CTA Form Section ── */
  .srv-form-section {
    padding: 48px 0 !important;
  }

  .srv-form-row {
    flex-direction: column !important;
    gap: 36px !important;
  }

  .srv-form-left,
  .srv-form-right {
    width: 100% !important;
    flex: none !important;
  }

  .srv-form-left h2 {
    font-size: 28px !important;
    margin-bottom: 28px !important;
  }

  .srv-switcher-box {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .srv-switch-item {
    padding: 16px 20px !important;
  }

  .srv-switch-item .sw-info h4 {
    font-size: 16px !important;
  }

  .srv-white-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }

  .srv-f-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
  }

  .srv-pill-selector {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .btn-transmit {
    width: 100% !important;
    justify-content: center !important;
    padding: 15px !important;
  }

  /* ── Section head typography for all service sections ── */
  .srv-capabilities-section .sec-title,
  .srv-list-section .sec-title,
  .srv-approach-section .sec-title,
  .srv-industries-small .sec-title,
  .srv-growth-section .sec-title {
    font-size: 28px !important;
  }
}

/* =====================================================
   SERVICES PAGE — EXTRA SMALL (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .service-hero .srv-hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .service-hero .srv-hero-desc {
    font-size: 14px !important;
  }

  .cap-grid {
    grid-template-columns: 1fr !important;
  }

  .approach-grid {
    grid-template-columns: 1fr !important;
  }

  .indus-small-grid {
    grid-template-columns: 1fr !important;
  }

  .srv-pill-selector {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =====================================================
   ABOUT PAGE — COMPREHENSIVE RESPONSIVE FIX
   Breakpoint: ≤ 1024px (mobile + tablet)
   These rules are authoritative and override scattered
   rules already present in this file.
   Desktop layout is NOT changed.
   ===================================================== */
@media (max-width: 1024px) {

  /* ── Hero V2 ── */
  .about-hero-v2 {
    padding: 80px 0 48px !important;
    overflow-x: hidden;
  }

  .about-hero-v2 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center !important;
  }

  .about-hero-v2 .srv-hero-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 16px !important;
  }

  .about-hero-v2 .srv-hero-desc {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
  }

  /* Brand logos row — wrap and centre on mobile */
  .brand-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
  }

  .brand-logo-item {
    flex-shrink: 0;
  }

  .about-hero-v2 .btn-srv-cta {
    width: 100% !important;
    justify-content: center !important;
    font-size: 16px !important;
    padding: 14px 24px !important;
  }

  /* ── Who We Are ── */
  .who-we-are {
    padding: 48px 0 !important;
  }

  .who-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .who-left,
  .who-right {
    width: 100% !important;
    flex: none !important;
  }

  .who-left .sec-title {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
  }

  .who-left p {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 16px !important;
  }

  .mission-card {
    padding: 28px 20px !important;
    border-radius: 16px !important;
  }

  .mission-card .label {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }

  .mission-card h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
  }

  .mission-quote p {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  /* ── What Makes Us Different (dark grid) ── */
  .diff-section {
    padding: 48px 0 !important;
  }

  .diff-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .diff-section .sec-title {
    font-size: 26px !important;
    margin-bottom: 32px !important;
    letter-spacing: -0.5px !important;
  }

  .diff-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .diff-card {
    padding: 28px 20px !important;
    border-radius: 16px !important;
  }

  .diff-card h4 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .diff-card p {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .diff-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 20px !important;
  }

  /* ── End-to-End CRM Mastery ── */
  .about-mastery-section {
    padding: 48px 0 !important;
  }

  .mastery-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .mastery-left,
  .mastery-right {
    width: 100% !important;
    flex: none !important;
  }

  .mastery-left .sec-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .mastery-left p {
    font-size: 15px !important;
    line-height: 24px !important;
    max-width: 100% !important;
  }

  .mastery-img-box {
    height: 220px !important;
    margin-top: 24px !important;
    border-radius: 16px !important;
    flex: none !important;
  }

  .mastery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .mastery-card {
    padding: 20px !important;
    min-height: 120px !important;
  }

  .mastery-card h4 {
    font-size: 15px !important;
    line-height: 22px !important;
  }

  /* ── How We Work (Approach Grid) ── */
  .srv-approach-section {
    padding: 48px 0 !important;
  }

  .srv-approach-section .section-head {
    margin-bottom: 32px !important;
    text-align: center !important;
  }

  .srv-approach-section .sec-title {
    font-size: 26px !important;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .approach-card {
    padding: 24px 18px !important;
  }

  .approach-card h3 {
    font-size: 17px !important;
    line-height: 22px !important;
  }

  /* ── Industries We Serve ── */
  .srv-industries-small {
    padding: 48px 0 !important;
  }

  .srv-industries-small .section-head {
    margin-bottom: 28px !important;
  }

  .srv-industries-small .sec-title {
    font-size: 26px !important;
  }

  .indus-small-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* ── About Final CTA (dark) ── */
  .about-final-cta {
    padding: 48px 0 !important;
  }

  .about-final-cta .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center !important;
  }

  .about-final-cta .sec-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 16px !important;
  }

  .about-final-cta p {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 32px !important;
    max-width: 100% !important;
  }

  .about-final-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: center !important;
    width: 100% !important;
  }

  .about-final-btns .btn-srv-cta,
  .about-final-btns .btn-outline-white {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    padding: 16px 24px !important;
  }
}

/* =====================================================
   ABOUT PAGE — EXTRA SMALL (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .about-hero-v2 .srv-hero-title {
    font-size: 26px !important;
  }

  .about-hero-v2 .srv-hero-desc {
    font-size: 14px !important;
  }

  .mastery-grid {
    grid-template-columns: 1fr !important;
  }

  .approach-grid {
    grid-template-columns: 1fr !important;
  }

  .indus-small-grid {
    grid-template-columns: 1fr !important;
  }

  .diff-section .sec-title {
    font-size: 22px !important;
  }

  .about-final-cta .sec-title {
    font-size: 26px !important;
  }
}

/* ==========================================
   CRM DEVELOPMENT TEMPLATE
   ========================================== */

/* Hero accent — slight warm tint over the service-hero white */
.crm-dev-hero {
  background: #F6F9F6;
}

/* ── Technology Stack Section ── */
.crm-techstack-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1.71px solid #F1F5F9;
  border-bottom: 1.71px solid #F1F5F9;
}

.techstack-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.tech-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  border-radius: 16px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: default;
}

.tech-badge:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(71, 197, 110, 0.08);
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1.71px solid #F1F5F9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background .25s ease, color .25s ease;
}

.tech-badge:hover .tech-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.tech-badge span {
  font-size: 12px;
  font-weight: 700;
  color: #62748E;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

/* ── CRM Dev Responsive ── */
@media (max-width: 1024px) {
  .techstack-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
  }

  .tech-badge {
    padding: 20px 12px !important;
  }
}

@media (max-width: 480px) {
  .techstack-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================
   CRM DEVELOPMENT - SPLIT HERO
   ========================================== */
.crm-split-hero {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid #F1F5F9;
}

.crm-split-hero-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: var(--green);
  border: 1px solid #D0FAE5;
  box-shadow: 0px 1px 2px -1px #0000001A;
  padding: 6px 16px;
  border-radius: 56px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.crm-hero-title {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  color: #020618;
  margin-bottom: 24px;
}

.crm-hero-title .highlight {
  color: var(--green);
}

.crm-hero-desc {
  font-size: 20px;
  color: #45556C;
  line-height: 33px;
  margin-bottom: 32px;
  max-width: 520px;
}

.crm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.srv-h-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #62748E;
  border: 1px solid #F1F5F9;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border-radius: 76px;
  padding: 8px 16px;
  background: #ffffff;
}

.srv-h-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.crm-hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-srv-cta.shadow-green {
  background: #47C56E;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 25px 50px -12px #0F172B33;
  transition: all 0.3s ease;
}

.btn-srv-cta.shadow-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(71, 197, 110, 0.35);
}

.btn-outline-dark {
  background: transparent;
  color: #020618;
  border: 1px solid #E2E8F0;
  border-radius: 66px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  border-color: var(--title);
  background: whitesmoke;
}

.crm-hero-img-box img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}


/* ==========================================
   COMMON CRM CHALLENGES SECTION
   ========================================== */
.crm-challenges-section {
  padding: 70px 0;
  background: #F6F9F6;
}

.challenges-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ch-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #091C0F;
  margin-bottom: 24px;
  text-align: center;
}

.ch-title .highlight {
  color: var(--green);
}

.ch-bold-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
  line-height: 30px;
  margin-bottom: 24px;
}

.ch-text {
  font-size: 18px;
  color: #45556C;
  line-height: 30px;
  margin-bottom: 20px;
}

.challenges-card {
  background: #ffffff;
  border-radius: 24px;
  border-top: 1px solid #E2E8F0;
  padding: 40px;
  box-shadow: 0px 8px 10px -6px #0000001A;
}

.challenges-card h3 {
  font-family: var(--font-head);
  font-size: 33px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 30px;
}

.ch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.ch-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.ch-icon {
  width: 20px;
  height: 20px;
  background: #FEF2F2;
  color: #FB2C36;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ch-list p {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  margin: 0;
}

.ch-highlight-box {
  background: #ECFDF5;
  color: var(--green);
  border: 1px solid #D0FAE5;
  padding: 25px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

/* ── CRM Dev Tablet & Mobile (1024px) ── */
@media (max-width: 1024px) {
  .crm-split-hero-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .crm-hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .crm-hero-desc {
    margin: 0 auto 32px;
  }

  .crm-hero-tags {
    justify-content: center;
  }

  .crm-hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .crm-hero-img-box img {
    height: 400px;
  }

  .challenges-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .ch-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .ch-list {
    text-align: left;
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .crm-hero-title {
    font-size: 36px;
  }

  .ch-title {
    font-size: 30px;
  }

  .crm-split-hero,
  .crm-challenges-section,
  .crm-capabilities-matrix,
  .crm-dev-models,
  .crm-build-section,
  .crm-delivery-framework,
  .crm-why-choose,
  .crm-final-cta-form {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .crm-hero-title {
    font-size: 32px;
  }

  .crm-hero-img-box img {
    height: 300px;
  }

  .btn-srv-cta.shadow-green,
  .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   CAPABILITY MATRIX SECTION
   ========================================== */
.crm-capabilities-matrix {
  padding: 70px 0;
  background: #091C0F;
}

.matrix-label {
  display: inline-flex;
  background: #47C56E1A;
  border: 0.6px solid #47C56E33;
  color: #47C56E;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 24px;
}

.text-white {
  color: #fff !important;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.matrix-card {
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF1A;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.matrix-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.mc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mc-icon {
  width: 48px;
  height: 48px;
  background: #47C56E1A;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.mc-mod {
  font-size: 10px;
  font-weight: 700;
  color: #47C56E66;
}

.mc-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
  margin-bottom: 12px;
}

.mc-desc {
  font-size: 14px;
  color: #90A1B9;
  line-height: 23px;
  flex-grow: 1;
  margin-bottom: 32px;
}

.mc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #FFFFFF0D;
  padding-top: 16px;
  font-size: 10px;
  font-weight: 500;
  color: #62748E;
}

.mc-dots {
  color: #00BC7D33;
}

/* ==========================================
   FLEXIBLE DEVELOPMENT MODELS
   ========================================== */
.crm-dev-models {
  padding: 70px 0;
  background: #ffffff;
}

.model-subtitle {
  font-size: 20px;
  color: #62748E;
  text-align: center;
  margin-bottom: 50px;
  line-height: 33px;
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.model-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid #E2E8F0;
  box-shadow: 0px 4px 6px -4px #0000001A;
  display: flex;
  flex-direction: column;
}

.model-card.bg-green-tint {
  background: #ffffff;
  border: 1px solid #D0FAE5;
  box-shadow: 0px 4px 6px -4px #0000001A;
}

.modal-bg-shadow {
  background: #F8FAFC;
  border-radius: 24px;
  padding: 24px;
}

.modal-right-bg-shadow {
  background: #ECFDF5;
  border-radius: 24px;
  padding: 24px;
}

.model-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.model-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.black-icon {
  background: #0F172A;
  color: #fff;
}

.green-icon {
  color: #47C56E;
}

.model-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 4px;
}

.model-sublabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green);
}

.model-desc {
  font-size: 15px;
  color: #62748E;
  line-height: 1.6;
  margin-bottom: 30px;
}

.model-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.model-pill {
  font-size: 11px;
  font-weight: 700;
  color: #62748E;
  background: #F1F5F9;
  padding: 8px 16px;
  border-radius: 50px;
}

.model-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--title);
  font-weight: 600;
  margin-bottom: 16px;
  gap: 12px;
}

.models-bottom-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
  background: #F8FAFC;
  color: #62748E;
  font-size: 16px;
  font-weight: 500;
  padding: 33px;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
}

/* ── Capabilities & Models Tablet ── */
@media (max-width: 1024px) {
  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .model-card {
    padding: 32px;
  }

  .modal-bg-shadow,
  .modal-right-bg-shadow {
    padding: 15px;
  }

  .models-bottom-text {
    width: 100%;
    padding: 24px;
    font-size: 14px;
  }
}

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

/* ==========================================
   WHAT WE HELP YOU BUILD SECTION
   ========================================== */
.crm-build-section {
  padding: 70px 0;
  background: #EFF5F0;
  border-width: 1px, 0px, 1px, 0px;
  border-style: solid;
  border-color: #E2E8F0;
  overflow: hidden;
}

.build-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.build-left {
  flex: 1;
}

.build-left .ch-title {
  margin-bottom: 40px;
  text-align: left;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.build-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease;
}

.build-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
}

.b-icon {
  width: 40px;
  height: 40px;
  background: #F8FAFC;
  color: #90A1B9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.build-card span {
  font-size: 20px;
  font-weight: 500;
  color: var(--title);
}

.build-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.abstract-rings {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #47C56E20;
}

.ring-outer {
  width: 100%;
  height: 100%;
  background: #47C56E08;
}

.ring-inner {
  width: 70%;
  height: 70%;
  background: #47C56E10;
  border-color: #47C56E30;
}

.center-black-card {
  position: relative;
  z-index: 2;
  background: #091C0F;
  width: 160px;
  height: 160px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  box-shadow: 0px 25px 50px -12px #00000040;
  transition: transform 0.4s ease;
}

.center-black-card:hover {
  transform: rotate(0deg) scale(1.05);
}

/* ==========================================
   DELIVERY FRAMEWORK OUTLINE
   ========================================== */
.crm-delivery-framework {
  padding: 70px 0;
  background: #ffffff;
}

.df-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.df-left .ch-title {
  margin-bottom: 8px;
}

.df-sub-link {
  font-size: 20px;
  font-weight: 500;
  color: #62748E;
}

.df-right p {
  font-size: 16px;
  color: #90A1B9;
  line-height: 26px;
  max-width: 400px;
  margin: 0;
  font-weight: 500;
  text-align: right;
}

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

.df-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.df-card:hover {
  transform: translateY(-5px);
  border-color: #E2E8F0;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.df-num-bg {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1;
  z-index: 1;
}

.df-icon {
  width: 40px;
  height: 40px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  color: #62748E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.df-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.df-card p {
  font-size: 14px;
  color: #62748E;
  line-height: 23px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ── Build & Delivery Tablet/Mobile ── */
@media (max-width: 1024px) {
  .build-row {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .build-left .ch-title {
    text-align: center;
  }

  .df-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .df-right p {
    text-align: center;
    max-width: 100%;
  }

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

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

  .abstract-rings {
    width: 300px;
    height: 300px;
  }

  .center-black-card {
    width: 120px;
    height: 120px;
  }

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

  .df-num-bg {
    font-size: 44px;
  }
}

/* ==========================================
   WHY CHOOSE SIETRIX
   ========================================== */
.crm-why-choose {
  padding: 70px 0;
  background: #091C0F;
}

.wc-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

.wc-left {
  flex: 1.3;
}

.wc-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  margin-bottom: 40px;
}

.wc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.wc-icon {
  width: 24px;
  height: 24px;
  display: flex;
  background: #00BC7D33;
  padding: 5px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-check {
  color: var(--green);
}

.wc-list span {
  font-size: 18px;
  font-weight: 700;
  color: #CAD5E2;
}

.wc-right {
  flex: 1;
}

.stats-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.stat-box {
  border-radius: 24px;
  padding: 24px 33px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.dark-box {
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF1A;
}

.green-box {
  background: var(--green);
}

/* Mosaic layout logic */
.stat-tl {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.stat-bl {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  padding-top: 50px;
  /* padding-bottom: 50px; */
}

.stat-tr {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding-top: 100px;
  /* padding-bottom: 50px; */
}

.stat-br {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.stat-val {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
}

.text-green {
  color: var(--green);
}

.text-white {
  color: #fff;
}

.text-black {
  color: #0F172A;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #62748E;
}

.stat-label.text-black {
  color: #0F172A;
  opacity: 0.7;
}


/* ==========================================
   CTA FORM SECTION
   ========================================== */
.crm-final-cta-form {
  padding: 70px 0;
  background: #ffffff;
}

.cta-subtitle {
  font-size: 20px;
  color: #62748E;
  margin-top: 10px;
  margin-bottom: 50px;
  font-weight: 500;
}

.cta-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0px 25px 50px -12px #E2E8F080;
  border-radius: 24px;
  padding: 48px;
}

.crm-form .form-group {
  margin-bottom: 24px;
}

.crm-form label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #90A1B9;
}

.crm-form input,
.crm-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 16px 24px;
  font-size: 16px;
  color: #0F172B80;
  transition: all 0.3s;
}

.crm-form input::placeholder,
.crm-form textarea::placeholder {
  color: #0F172B80;
  font-size: 16px;
  font-weight: 700;
}

.crm-form input:focus,
.crm-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(71, 197, 110, 0.1);
}

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

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

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

.btn-submit-full {
  width: 100%;
  background: #47C56E;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(71, 197, 110, 0.3);
}

/* ── Why Choose & Form Tablet/Mobile ── */
@media (max-width: 1024px) {
  .wc-row {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .wc-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .wc-list li {
    justify-content: center;
  }

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-form-wrapper {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .stats-mosaic {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-box {
    padding: 30px 24px;
    text-align: center;
    align-items: center;
  }

  .stat-tl,
  .stat-tr,
  .stat-bl,
  .stat-br {
    grid-column: 1;
    grid-row: auto;
    padding-top: 30px;
  }

  .wc-title {
    font-size: 30px;
  }

  .wc-list span {
    font-size: 16px;
  }
}

/* ==========================================
   WEB DEVELOPMENT HERO
   ========================================== */
.web-dev-hero {
  padding: 70px 0;
  background: #0A120A;
  /* Dark background */
  position: relative;
  overflow: hidden;
}

.web-hero-content {
  max-width: 710px;
}

.web-hero-label {
  display: inline-block;
  background: #00BC7D1A;
  color: #47C56E;
  border: 1.71px solid #00BC7D33;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.web-hero-title {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 75px;
  margin-bottom: 24px;
}

.web-hero-title .highlight {
  color: var(--green);
}

.web-hero-desc {
  font-size: 20px;
  color: #90A1B9;
  line-height: 33px;
  margin-bottom: 40px;
  max-width: 600px;
}

.btn-web-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #47C56E;
  color: #091C0F;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0px 4px 6px -4px #00BC7D33;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.btn-web-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(71, 197, 110, 0.3);
  background: #3eb55a;
}

.web-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.web-hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #62748E;
}

.green-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}


/* ==========================================
   WEB DEV - DRIVE VALUE SECTION
   ========================================== */
.web-value-section {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1.71px solid #F1F5F9;
}

.web-value-row {
  display: flex;
  gap: 80px;
  align-items: center;
}

.web-value-left {
  flex: 1;
}

.web-value-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #0A120A;
  line-height: 1.2;
  margin-bottom: 30px;
}

.web-value-text {
  font-size: 18px;
  color: #45556C;
  line-height: 30px;
  margin-bottom: 24px;
}

.web-value-text:last-child {
  margin-bottom: 0;
}

.web-value-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.web-code-box {
  background: #0a120a;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 25px 50px -12px #00000040;
  border: 1.71px solid #E2E8F0;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.web-code-box:hover {
  transform: translateY(-5px);
}

/* ── Web App Hero & Value Tablet/Mobile ── */
@media (max-width: 1024px) {
  .web-dev-hero {
    padding: 60px 0;
    text-align: center;
  }

  .web-hero-content {
    max-width: 100%;
  }

  .web-hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .web-hero-desc {
    margin: 0 auto 40px;
  }

  .web-hero-features {
    justify-content: center;
  }

  .web-value-row {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .web-value-title {
    font-size: 36px;
  }

  .web-value-right {
    justify-content: center;
    width: 100%;
  }

  .web-code-box {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .web-hero-title {
    font-size: 38px;
  }

  .web-dev-hero,
  .web-value-section,
  .web-challenges-section,
  .web-capabilities-section,
  .web-solutions-card-sec,
  .web-scalability-section,
  .web-delivery-section,
  .web-why-choose-section,
  .web-contact-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .web-hero-title {
    font-size: 32px;
  }

  .web-hero-desc {
    font-size: 18px;
    line-height: 1.5;
  }

  .btn-web-hero {
    width: 100%;
    justify-content: center;
  }

  .web-value-title {
    font-size: 30px;
  }
}

/* ==========================================
   WEB APP - CHALLENGES SECTION
   ========================================== */
.web-challenges-section {
  padding: 70px 0;
  background: #0A120A;
}

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

.wc-subtitle {
  font-size: 20px;
  color: #90A1B9;
  margin-bottom: 30px;
}

.dark-mode-list li {
  margin-bottom: 20px;
}

.dark-mode-list .ch-icon {
  background: #FB2C361A;
  border: 1.71px solid #FB2C3633;
  color: #E02424;
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  padding: 3px;
}

.dark-mode-list p {
  color: #CAD5E2;
  font-weight: 500;
  font-size: 18px;
}

.outline-green {
  border: 1.71px solid #00BC7D33;
  background: #00BC7D1A;
  border-radius: 6px;
  padding: 24px;
  margin-top: 40px;
}

.outline-green p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
  max-width: 400px;
}

.wc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wc-link:hover {
  color: var(--green);
}

.abstract-wireframe-box {
  background: #0A120A;
  border: 1.71px solid #314158;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin-left: auto;
}

.aw-top-row {
  display: flex;
  gap: 16px;
}

.aw-card {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.71px solid #45556C;
}

.top-left,
.top-right {
  flex: 1;
  height: 120px;
  background: #31415880;
}

.bottom-full {
  height: 160px;
  background: #00BC7D1A;
  border: 1.71px solid #00BC7D33;
}

/* ==========================================
   WEB APP - CAPABILITIES SECTION
   ========================================== */
.web-capabilities-section {
  padding: 70px 0;
  background: #ffffff;
}

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

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.cap-card {
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  border-radius: 6px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.cap-icon-box {
  width: 47px;
  height: 47px;
  background: #fff;
  border: 1.71px solid #F1F5F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
}

.cap-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0A120A;
  margin-bottom: 5px;
  line-height: 28px;
}

.cap-desc {
  font-size: 18px;
  color: #62748E;
  line-height: 23px;
  margin: 0;
}

/* ── Challenges & Capabilities Tablet/Mobile ── */
@media (max-width: 1024px) {
  .web-challenges-section .wc-row {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .web-challenges-section .wc-left,
  .web-challenges-section .ch-title,
  .web-challenges-section .wc-subtitle {
    text-align: center !important;
  }

  .web-challenges-section .ch-list {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
  }

  .outline-green p {
    text-align: center;
    max-width: 100%;
    margin-inline: auto;
  }

  .wc-link {
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
  }

  .abstract-wireframe-box {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    padding: 16px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .web-challenges-section .ch-title {
    font-size: 30px;
  }

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

  .top-left,
  .top-right {
    height: 100px;
  }

  .bottom-full {
    height: 120px;
  }
}

/* ==========================================
   WEB APP - SOLUTIONS BIG CARD
   ========================================== */
.web-solutions-card-sec {
  padding: 70px 0;
  background: #F8FAFC;
}

.solutions-big-card {
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  box-shadow: 0px 8px 10px -6px #0000001A;
  border: 1.71px solid #E2E8F0;
  background: #ffffff;
  border-radius: 24px;
}

.sbc-left {
  flex: 0 0 65%;
  padding: 70px 60px;

}

.sbc-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: #0A120A;
  margin-bottom: 40px;
}

.sbc-list {
  display: flex;
  gap: 10px;
  max-width: 650px;
}

.sbc-list-col {
  flex: 1;
}

.sbc-list-col p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #314158;
  margin-bottom: 28px;
}

.sbc-right {
  flex: 0 0 35%;
  background: #0A120A;
  position: relative;
}

.sbc-dark-inner {
  position: absolute;
  top: 50%;
  left: -95px;
  transform: translateY(-50%);
  width: 440px;
  background: #0A120A;
  border: 1.71px solid #314158;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.sbc-inner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.sbc-inner-desc {
  font-size: 14px;
  color: #90A1B9;
  line-height: 23px;
  margin-bottom: 30px;
}

.sbc-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dark-pill {
  background: #FFFFFF0D;
  border: 1.71px solid #FFFFFF1A;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* ==========================================
   WEB APP - SCALABILITY & PERFORMANCE
   ========================================== */
.web-scalability-section {
  padding: 70px 0;
  background: #ffffff;
}

.scale-row {
  display: flex;
  gap: 80px;
  align-items: center;
}

.scale-left {
  flex: 1;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.scale-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1.71px solid #F1F5F9;
  text-align: center;
}

.sc-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0px 1px 2px -1px #0000001A;
}

.scale-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0A120A;
  margin-bottom: 8px;
}

.scale-card p {
  font-size: 12px;
  color: #62748E;
  margin: 0;
}

.scale-right {
  flex: 1;
}

.scale-desc {
  font-size: 16px;
  color: #45556C;
  line-height: 26px;
  margin-bottom: 20px;
}

.scale-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F8FAFC80;
  border: 1.71px solid #F1F5F9;
  padding: 20px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sf-item:hover {
  transform: translateX(5px);
  border-color: rgba(71, 197, 110, 0.3);
}

.sf-item span {
  font-size: 14px;
  font-weight: 700;
  color: #0A120A
}

/* ── Solutions & Scalability Tablet/Mobile ── */
@media (max-width: 1024px) {
  .solutions-big-card {
    flex-direction: column;
  }

  .sbc-left {
    padding: 50px 30px;
    flex: 1;
  }

  .sbc-title {
    font-size: 32px;
    text-align: center;
  }

  .sbc-list {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    text-align: left;
  }

  .sbc-right {
    padding: 60px 20px;
    flex: 1;
    min-height: 300px;
  }

  .sbc-dark-inner {
    position: static;
    transform: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .scale-row {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .scale-right .ch-title {
    text-align: center;
  }
}

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

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

/* ==========================================
   WEB APP - HOW WE DELIVER
   ========================================== */
.web-delivery-section {
  padding: 70px 0;
  background: #0A120A;
}

.web-delivery-section .section-head {
  margin-bottom: 60px;
}

.delivery-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.del-card {
  background: #FFFFFF0D;
  border: 1.71px solid #FFFFFF1A;
  border-radius: 6px;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.del-card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 197, 110, 0.3);
}

.del-num-bg {
  position: absolute;
  top: -8px;
  right: -5px;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF0D;
  line-height: 40px;
}

.del-circle-num {
  width: 32px;
  height: 32px;
  background: #00BC7D33;
  border: 1.71px solid #00BC7D4D;
  color: #47C56E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.del-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 20px;
}

.del-desc {
  font-size: 12px;
  color: #90A1B9;
  line-height: 20px;
  margin: 0;
}


/* ==========================================
   WEB APP - WHY CHOOSE SIETRIX
   ========================================== */
.web-why-choose-section {
  padding: 70px 0;
  background: #ffffff;
}

.wwc-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

.wwc-left {
  flex: 1;
}

.wwc-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: #0A120A;
  margin-bottom: 20px;
  line-height: 50px;
}

.wwc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wwc-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.wwc-icon {
  width: 40px;
  height: 40px;
  background: #F1FDF5;
  color: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wwc-list span {
  font-size: 18px;
  font-weight: 700;
  color: #314158;
}

.wwc-right {
  flex: 1;
}

.wwc-cta-box {
  background: #0A120A;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.cta-rocket {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  pointer-events: none;
}

.cta-box-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.cta-box-desc {
  font-size: 18px;
  color: #90A1B9;
  line-height: 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 380px;
}

/* ── Delivery & Why Choose Tablet/Mobile ── */
@media (max-width: 1024px) {
  .delivery-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .wwc-row {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .wwc-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .wwc-list li {
    justify-content: center;
  }

  .wwc-cta-box {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-box-title,
  .cta-box-desc {
    margin-inline: auto;
  }

  .cta-rocket {
    display: none;
  }
}

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

@media (max-width: 480px) {
  .delivery-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   WEB APP - EXPERT FORM STYLES (REFINED)
   ========================================== */
.web-contact-section {
  padding: 70px 0;
  background: #F8FAFC;
}

.web-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1.71px solid #E2E8F0;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.web-expert-form .form-step {
  margin-bottom: 50px;
}

.web-expert-form .step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 1.71px solid #F1F5F9;
  padding-bottom: 10px;
}

.web-expert-form .step-num {
  width: 28px;
  height: 28px;
  background: #4ade80;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.web-expert-form .step-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #90A1B9;
  text-transform: uppercase;
}

.web-expert-form .form-group {
  margin-bottom: 20px;
}

.web-expert-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #314158;
  text-transform: uppercase;
}

.web-expert-form input,
.web-expert-form select,
.web-expert-form textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1.71px solid #E2E8F0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0F172B80;
  transition: all 0.3s ease;
}

.web-expert-form input::placeholder,
.web-expert-form textarea::placeholder {
  color: #0F172B80;
  font-weight: 400;
}

.web-expert-form input:focus,
.web-expert-form select:focus,
.web-expert-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.web-expert-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 25px center;
}

.web-expert-form textarea {
  height: 160px;
  resize: vertical;
}

.form-divider {
  display: none;
  /* Removed as we use the step-header line now */
}

.btn-submit-dark {
  width: 100%;
  background: #0A120A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0px 8px 10px -6px #0000001A;
  text-transform: uppercase;
}

.btn-submit-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ── Expert Form Tablet/Mobile ── */
@media (max-width: 768px) {
  .web-form-wrapper {
    padding: 40px 20px;
  }

  .web-expert-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn-submit-dark {
    letter-spacing: 1px;
    font-size: 14px;
  }
}

/* ==========================================
   INSIGHTS & TRENDS TEMPLATE
   ========================================== */
.insights-hero {
  padding: 70px 0;
  background: #0A120A;
}

.insights-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00BC7D1A;
  border: 1.71px solid #00BC7D33;
  color: var(--green);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
}

.insights-title {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 80px;
  margin-bottom: 24px;
}

.insights-title .highlight {
  background: linear-gradient(90deg, #00D492 0%, #009966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.insights-hero-desc {
  font-size: 20px;
  color: #90A1B9;
  line-height: 32px;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Insights Search Bar */
.insights-search-wrapper {
  max-width: 480px;
}

.insights-search-form .search-input-group {
  position: relative;
  display: flex;
  background: #FFFFFF0D;
  border: 1.71px solid #FFFFFF1A;
  border-radius: 6px;
  padding: 6px;
  transition: border-color 0.3s ease;
}

.insights-search-form .search-input-group:focus-within {
  border-color: var(--green);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #62748E;
}

.search-field {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 12px 12px 50px;
  color: #45556C;
  font-size: 14px;
  font-weight: 400;
}

.search-field::placeholder {
  color: #45556C;
}

.search-field:focus {
  outline: none;
}

.search-submit {
  background: #00BC7D;
  color: #0F172B;
  border: none;
  border-radius: 6px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  cursor: pointer;
}

/* Latest Perspectives Section */
.latest-perspectives {
  padding: 70px 0;
  border-bottom: 1.71px solid #F1F5F9;
  background: #fff;
}

.perspectives-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.filter-pills {
  display: flex;
  gap: 12px;
}

.filter-pill {
  background: #fff;
  border: 1.71px solid #E2E8F0;
  color: #62748E;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill.active {
  background: #0F172B;
  border: 1.71px solid #0F172B;
  color: #fff;
}

.filter-pill:hover:not(.active) {
  border-color: var(--green);
  color: var(--green);
}

/* Grid & Cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.ic-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #F8FAFC;
  border-radius: 6px;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1.71px solid #F1F5F9;
  overflow: hidden;
  margin-bottom: 24px;
}

.ic-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ic-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FFFFFFF2;
  color: #0F172B;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1.71px solid #F1F5F9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ic-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.ic-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #90A1B9;
}

.ic-meta svg {
  width: 14px;
  height: 14px;
  stroke: #00BC7D;
}

.ic-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
  line-height: 25px;
  margin-bottom: 16px;
}

.ic-excerpt {
  font-size: 14px;
  color: #62748E;
  line-height: 23px;
  margin-bottom: 24px;
}

/* ── Insights Archive Tablet/Mobile ── */
@media (max-width: 1024px) {
  .insights-hero {
    padding: 60px 0;
  }

  .insights-title {
    font-size: 54px;
    line-height: 1.1;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .perspectives-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .insights-title {
    font-size: 42px;
  }

  .insights-hero-desc {
    font-size: 18px;
    line-height: 1.5;
  }

  .insights-search-wrapper {
    max-width: 100%;
  }

  .latest-perspectives {
    padding: 50px 0;
  }

  .perspectives-header {
    margin-bottom: 40px;
  }

  .filter-pills {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .insights-title {
    font-size: 34px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .search-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .search-field {
    background: #FFFFFF0D;
    border: 1.71px solid #FFFFFF1A;
    border-radius: 6px;
    padding-left: 50px;
    width: 100%;
  }

  .search-submit {
    width: 100%;
    height: 48px;
  }

  .ic-title {
    font-size: 18px;
    line-height: 1.4;
  }
}

.ic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #0F172B;
  text-decoration: none;
  text-transform: uppercase;
}


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

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

  .filter-pills {
    flex-wrap: wrap;
  }
}

/* ==========================================
   INSIGHT DETAIL (SINGLE POST)
   ========================================== */
.insight-detail-section {
  padding: 70px 0;
  background: #FEFEFE;
}

.id-header {
  max-width: 900px;
  margin-bottom: 60px;
}

.id-tag-outline {
  display: inline-block;
  border: 1.71px solid #00BC7D33;
  background: #00BC7D1A;
  color: #47C56E;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.id-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: #091C0F;
  line-height: 69px;
  margin-bottom: 24px;
}

.id-meta {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
}

.id-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #90A1B9;
  font-size: 14px;
  font-weight: 500;
}

.id-meta span svg {
  width: 14px;
  height: 14px;
  stroke: #00BC7D;
}

/* Layout Grid */
.id-container {
  display: flex;
  gap: 60px;
}

.id-main-content {
  flex: 1;
  max-width: 800px;
}

.id-sidebar {
  width: 380px;
  flex-shrink: 0;
}

.id-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 40px;
}

/* ── Insights Detail Tablet/Mobile ── */
@media (max-width: 1024px) {
  .id-header {
    margin-bottom: 40px;
  }

  .id-title {
    font-size: 38px;
    line-height: 1.25;
  }

  .id-container {
    flex-direction: column;
    gap: 50px;
  }

  .id-main-content {
    max-width: 100%;
  }

  .id-sidebar {
    width: 100%;
  }

  .sidebar-widget,
  .sidebar-cta-widget {
    padding: 30px;
    max-width: 500px;
  }
}

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

  .id-title {
    font-size: 30px;
  }

  .id-meta {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .id-content-body p,
  .id-content-body p strong {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px;
  }

  .id-section-title {
    font-size: 24px;
    margin: 30px 0 15px;
  }

  /* Managed Services Card */
  .id-managed-card {
    padding: 24px !important;
  }

  .id-managed-card h3 {
    font-size: 20px !important;
  }

  .id-managed-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Workflow Box */
  .id-workflow-box {
    padding: 24px !important;
  }

  .id-workflow-foot {
    font-size: 11px !important;
  }

  /* Steps List */
  .id-step-item {
    gap: 15px !important;
  }

  .id-step-num {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }

  /* Comp Table Mobile Refine */
  .id-comp-table th,
  .id-comp-table td {
    padding: 15px 12px !important;
    font-size: 14px !important;
  }

  /* Function Cards Refine */
  .id-func-card {
    padding: 24px !important;
  }

  .id-func-card h4 {
    font-size: 18px !important;
  }

  .id-func-tag {
    font-size: 10px !important;
  }
}

@media (max-width: 480px) {
  .id-title {
    font-size: 26px;
  }

  .id-assessment-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .ab-title {
    font-size: 24px !important;
  }

  .ab-desc {
    font-size: 14px !important;
  }
}

.id-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.id-content-body {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

.id-content-body p strong {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  color: #0F172B;
  line-height: 39px;
}

.id-content-body p {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  color: #45556C;
  line-height: 39px;
}


.id-section-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #0F172B;
  margin: 40px 0 20px;
}

/* Bullet list (Green) */
.green-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.green-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #314158;
  font-weight: 500;
}

.green-check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%234ADE80' stroke-width='2'/%3E%3Cpath d='M8 12L11 15L16 9' stroke='%234ADE80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Custom Content List (Green Circle) */
.id-content-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.id-content-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #314158;
  font-weight: 400;
  line-height: 30px;
}

.id-content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
}

/* Quote/Highlight Box */
.id-highlight-box {
  background: #F8FAFC;
  border-left: 3.42px solid #47C56E;
  padding: 32px;
  border-radius: 6px;
  margin: 40px 0;
}

.id-highlight-box blockquote {
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
  line-height: 33px;
  margin: 0;
}

/* Dark Sub-card (The Power Concept) */
.id-dark-card {
  background: #0F172B;
  padding: 30px 30px;
  border-radius: 24px;
  margin: 50px 0;
}

.id-dark-card .title {
  color: #47C56E;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.id-dark-card .text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 33px;
}

/* Numbered Steps */
.id-steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.id-step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.id-step-num {
  width: 48px;
  height: 48px;
  background: #0F172B;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.id-step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
}

.id-step-content p {
  font-size: 18px;
  color: #45556C;
  margin: 0;
}

/* Why Managed Card */
.id-managed-card {
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  padding: 40px;
  border-radius: 24px;
  margin: 40px 0;
}

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

.id-managed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #0A120A;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: #F8FAFC;
  border-radius: 24px;
  border: 1.71px solid #F1F5F9;
  padding: 30px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 24px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  margin-bottom: 20px;
}

.news-date {
  font-size: 12px;
  font-weight: 700;
  color: #47C56E;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172B;
  line-height: 20px;
  display: block;
  text-decoration: none;
}

.sidebar-cta-widget {
  background: #0F172A;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.sidebar-cta-title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sidebar-cta-desc {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 24px;
}

.btn-sidebar-talk {
  display: block;
  width: 100%;
  background: var(--green);
  color: #000;
  padding: 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

/* Bottom Assessment Banner */
.id-assessment-banner {
  background: #0F172B;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin-top: 50px;
}

.ab-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ab-desc {
  color: #90A1B9;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 24px;
}

.btn-assessment {
  display: inline-block;
  background: #47C56E;
  color: #000;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 10px -6px #00BC7D33;
}

.btn-assessment:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .id-container {
    flex-direction: column;
  }

  .id-sidebar {
    width: 100%;
  }

  .id-managed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .id-header {
    padding-top: 100px;
  }

  .id-title {
    font-size: 32px;
  }

  .id-dark-card {
    padding: 30px 24px;
    border-radius: 20px;
    margin: 30px 0;
  }

  .id-dark-card .title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .id-dark-card .text {
    font-size: 18px;
  }
}

/* Extra Insight Detail Sections */
.id-check-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.id-check-box {
  background: #F8FAFC;
  border: 1.71px solid #F1F5F9;
  padding: 16px 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #0A120A;
}

/* Comparison Table */
.id-comp-table-wrapper {
  margin: 40px 0;
  border-radius: 12px;
  overflow-x: auto;
  /* Enable scroll */
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-overflow-scrolling: touch;
}

.id-comp-table-wrapper table {
  min-width: 600px;
  /* Force minimum width for scroll on mobile */
}

.id-comp-table {
  width: 100%;
  border-collapse: collapse;
}

.id-comp-table th {
  background: #0F172A;
  border: 1.71px solid #0A120A;
  color: #fff;
  text-align: left;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.id-comp-table th.highlight {
  color: var(--green);
}

.id-comp-table td {
  padding: 20px 30px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 18px;
  color: #45556C;
  border-right: 1.71px solid #F1F5F9;
  font-weight: 500;
  white-space: normal;
}

.id-comp-table td strong {
  color: #0F172B;
}

/* Function Cards */
.id-func-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.id-func-card {
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 32px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px -1px #0000001A;
  border-width: 1.71px, 1.71px, 1.71px, 3.42px;
  border-style: solid;
  border-color: #47C56E;
}

.id-func-card:hover {
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.id-func-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 12px;
}

.id-func-card p {
  font-size: 14px;
  color: #45556C;
  line-height: 24px;
  margin-bottom: 12px;
}

.id-func-tag {
  font-size: 12px;
  font-weight: 700;
  color: #47C56E;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Workflow Example Box */
.id-workflow-box {
  background: #47C56E;
  padding: 40px;
  border-radius: 24px;
  margin: 60px 0;
}

.id-workflow-box h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.id-workflow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.id-workflow-step {
  background: #FFFFFF1A;
  border: 1.71px solid #FFFFFF33;
  padding: 16px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.id-workflow-step span {
  width: 24px;
  height: 24px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.id-workflow-foot {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFFE5;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}