/* SECTION */
.hero-section {
  --hero-black: #0B0E14;
  --hero-black-70: rgba(11, 14, 20, 0.7);
  --hero-black-45: rgba(11, 14, 20, 0.45);
  --hero-black-10: rgba(11, 14, 20, 0.08);
  --hero-blue: #1656E0;
  --hero-blue-dark: #0E3FB0;
  --hero-blue-08: rgba(22, 86, 224, 0.08);
  --hero-blue-15: rgba(22, 86, 224, 0.15);
  --hero-white: #FFFFFF;

  background: #F6F8FC;
  padding: 30px;
  overflow: hidden;
}

.hero-section * { box-sizing: border-box; }

.hero-section__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ===== LEFT CONTENT ===== */
.hero-section__title {
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--hero-black);
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.hero-section__title-highlight { color: var(--hero-blue); }

.hero-section__subheading {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hero-black-70);
  margin: 0 0 24px;
  max-width: 640px;
}

.hero-section__trustline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px 18px;
  background: var(--hero-blue-08);
  border: 1px solid var(--hero-blue-15);
  border-radius: 12px;
}

.hero-section__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hero-black);
}

.hero-section__trust-item i { color: var(--hero-blue); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.hero-section__cta-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }

.hero-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.hero-section__btn--primary {
  background: var(--hero-blue);
  color: var(--hero-white);
  box-shadow: 0 10px 24px rgba(22, 86, 224, 0.28);
  cursor: pointer;
}

.hero-section__btn--primary:hover {
  background: var(--hero-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 86, 224, 0.35);
  color: #fff;
}

.hero-section__btn--secondary {
  background: var(--hero-white);
  color: var(--hero-black);
  border: 1.5px solid var(--hero-black-10);
}

.hero-section__btn--secondary:hover {
  border-color: var(--hero-blue);
  color: var(--hero-blue);
  transform: translateY(-2px);
}

.hero-section__micro-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--hero-black-45);
  margin: 0;
}

.hero-section__micro-cta i { color: var(--hero-blue); }

/* ===== RIGHT VISUAL — VIDEO BACKGROUND ===== */
/* Hidden by default (mobile/phone) */
.hero-section__visual {
  display: none;
}

.hero-section__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,20,0.15) 0%, rgba(11,14,20,0.55) 100%),
    linear-gradient(90deg, rgba(11,14,20,0.35) 0%, rgba(22,86,224,0.15) 100%);
  pointer-events: none;
}

/* Corner brackets — matches reference style */
.hero-section__corner {
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 2;
  pointer-events: none;
}

.hero-section__corner--tl { top: 14px; left: 14px; border-top: 2px solid var(--hero-blue); border-left: 2px solid var(--hero-blue); }
.hero-section__corner--tr { top: 14px; right: 14px; border-top: 2px solid var(--hero-blue); border-right: 2px solid var(--hero-blue); }
.hero-section__corner--bl { bottom: 14px; left: 14px; border-bottom: 2px solid var(--hero-blue); border-left: 2px solid var(--hero-blue); }
.hero-section__corner--br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--hero-blue); border-right: 2px solid var(--hero-blue); }

/* Floating tech labels — like "Digitalisation / Analytic / Connections" in reference */
.hero-section__float-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 14, 20, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--hero-white);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
  z-index: 2;
  animation: heroVideoFloat 4s ease-in-out infinite;
}

.hero-section__float-label i { color: #4C82F5; font-size: 12px; }

.hero-section__float-label--1 { top: 18%; left: 8%; animation-delay: 0s; }
.hero-section__float-label--2 { top: 42%; right: 8%; animation-delay: 1.3s; }
.hero-section__float-label--3 { bottom: 20%; left: 14%; animation-delay: 2.6s; }

@keyframes heroVideoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-section__video-caption {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-white);
  color: var(--hero-black);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(11,14,20,0.2);
  z-index: 3;
}

.hero-section__video-caption i { color: var(--hero-blue); }

/* ===== TABLET — visual shows from here onward ===== */
@media (min-width: 768px) {
  .hero-section { padding: 56px 32px 72px; }
  .hero-section__cta-group { flex-direction: row; }

  .hero-section__visual {
    display: block;
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--hero-black);
    box-shadow: 0 30px 60px var(--hero-black-10);
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {

  .hero-section__container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero-section__content { flex: 1; max-width: 540px; }

  .hero-section__visual {
    flex: 1;
    height: 560px;
    align-self: stretch;
  }
}
/* SECTION */
.quick-summary {
  background: #FFFFFF;
  padding: 30px;
}

.quick-summary * { box-sizing: border-box; }

.quick-summary__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.quick-summary__title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 18px;
}

.quick-summary__answer {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(11,14,20,0.75);
  margin: 0 0 16px;
}

.quick-summary__followup {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11,14,20,0.6);
  margin: 0 0 22px;
}

.quick-summary__visual-text {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1656E0;
  background: rgba(22,86,224,0.08);
  border: 1px solid rgba(22,86,224,0.15);
  padding: 12px 16px;
  border-radius: 10px;
  margin: 0;
}

.quick-summary__visual-text span { color: #0B0E14; opacity: 0.3; }

/* Diagram */
.quick-summary__diagram {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: 300px;
}

.quick-summary__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.quick-summary__lines line {
  stroke: rgba(11,14,20,0.15);
  stroke-width: 2;
  stroke-dasharray: 4 5;
}

.quick-summary__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #0B0E14;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  z-index: 2;
  box-shadow: 0 18px 30px rgba(11,14,20,0.2);
}

.quick-summary__center strong { font-size: 13px; margin-bottom: 4px; }
.quick-summary__center small { font-size: 9.5px; color: rgba(255,255,255,0.7); }

.quick-summary__node {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(22,86,224,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 22px rgba(11,14,20,0.08);
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-summary__node:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 26px rgba(22,86,224,0.2);
}

.quick-summary__node i { color: #1656E0; font-size: 18px; }
.quick-summary__node span { font-size: 11px; font-weight: 700; color: #0B0E14; }

.quick-summary__node--store { top: 0; left: 50%; transform: translateX(-50%); }
.quick-summary__node--app { top: 50%; right: 0; transform: translateY(-50%); }
.quick-summary__node--warehouse { bottom: 0; left: 50%; transform: translateX(-50%); }
.quick-summary__node--customer { top: 50%; left: 0; transform: translateY(-50%); }

@media (min-width: 1024px) {
  .quick-summary__container { flex-direction: row; align-items: center; gap: 60px; }
  .quick-summary__content { flex: 1.2; }
  .quick-summary__diagram { flex: 1; max-width: 380px; height: 360px; }
}
/* SECTION */
.trust-bar { background: #F6F8FC; padding: 30px; }
.trust-bar * { box-sizing: border-box; }

.trust-bar__container { max-width: 1200px; margin: 0 auto; }

.trust-bar__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 36px;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.trust-bar__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-bar__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.trust-bar__card i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
}

.trust-bar__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.trust-bar__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .trust-bar__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.problem-section { background: #FFFFFF; padding: 30px; }
.problem-section * { box-sizing: border-box; }

.problem-section__container { max-width: 1200px; margin: 0 auto; }

.problem-section__head { max-width: 800px; margin: 0 auto 36px; text-align: center; }

.problem-section__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.problem-section__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.problem-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.problem-section__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  /* Mobile: 1 card per row */
  flex: 0 0 100%;
  max-width: 100%;
}

.problem-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(11,14,20,0.08);
}

.problem-section__card i {
  font-size: 20px;
  color: #1656E0;
  margin-bottom: 14px;
  display: block;
}

.problem-section__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.problem-section__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

.problem-section__cta-box {
  position: relative;
  background-color: #0B0E14;
  background-image:
    linear-gradient(rgba(11,14,20,0.85), rgba(11,14,20,0.85)),
    url('../images/retail-software-dubai/retail-bussiness.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
}

.problem-section__cta-box h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.problem-section__cta-box p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0 0 22px; }

.problem-section__cta-btn {
  display: inline-block;
  background: #1656E0;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.problem-section__cta-btn:hover { color: #0E3FB0; background: #fff; transform: translateY(-2px); }

@media (min-width: 640px) {
  /* Tablet: 2 cards per row */
  .problem-section__card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (min-width: 1024px) {
  .problem-section__body { flex-direction: row; align-items: stretch; gap: 28px; }
  .problem-section__grid { flex: 2.2; }
  .problem-section__cta-box { flex: 1; display: flex; flex-direction: column; justify-content: center; }

  /* Desktop: 3 cards per row — last 2 cards auto-center */
  .problem-section__card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
/* SECTION */
.solution-overview { background: #F6F8FC; padding: 30px; }
.solution-overview * { box-sizing: border-box; }

.solution-overview__container { max-width: 1200px; margin: 0 auto; }

.solution-overview__head { max-width: 800px; margin: 0 auto 36px; text-align: center; }

.solution-overview__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.solution-overview__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.solution-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.solution-overview__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-overview__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.solution-overview__card i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 16px;
}

.solution-overview__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.solution-overview__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .solution-overview__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .solution-overview__grid { grid-template-columns: repeat(4, 1fr); }
}
/* SECTION */
.ai-answer { background: #FFFFFF; padding: 30px; }
.ai-answer * { box-sizing: border-box; }

.ai-answer__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-left: 4px solid #1656E0;
  border-radius: 16px;
  padding: 32px 26px;
}

.ai-answer__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #0B0E14;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ai-answer__title {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.ai-answer__direct {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(11,14,20,0.78);
  margin: 0 0 14px;
  font-weight: 500;
}

.ai-answer__followup {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 768px) {
  .ai-answer__container { flex-direction: row; padding: 40px 36px; }
}
/* SECTION */
.industry-solutions { background: #F6F8FC; padding: 30px; }
.industry-solutions * { box-sizing: border-box; }

.industry-solutions__container { max-width: 1100px; margin: 0 auto; }

.industry-solutions__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 32px;
}

.industry-solutions__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.industry-solutions__tab {
  background: #FFFFFF;
  border: 1.5px solid rgba(11,14,20,0.1);
  color: #0B0E14;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.industry-solutions__tab:hover {
  border-color: #1656E0;
  color: #1656E0;
}

.industry-solutions__tab--active {
  background: #0B0E14;
  border-color: #0B0E14;
  color: #FFFFFF;
}

.industry-solutions__panels {
  position: relative;
}

.industry-solutions__panel {
  display: none;
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  animation: industrySolutionsFade 0.35s ease;
}

.industry-solutions__panel--active { display: block; }

@keyframes industrySolutionsFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.industry-solutions__panel i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 50%;
  font-size: 24px;
  margin: 0 auto 18px;
}

.industry-solutions__panel h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 12px;
}

.industry-solutions__panel p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}
/* SECTION */
.mobile-app-dev { background: #FFFFFF; padding: 30px; }
.mobile-app-dev * { box-sizing: border-box; }

.mobile-app-dev__container { max-width: 1200px; margin: 0 auto; }

.mobile-app-dev__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.mobile-app-dev__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.mobile-app-dev__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.mobile-app-dev__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.mobile-app-dev__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-app-dev__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.08);
}

.mobile-app-dev__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1656E0;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.mobile-app-dev__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.mobile-app-dev__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

.mobile-app-dev__cta-wrap { text-align: center; }

.mobile-app-dev__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0B0E14;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.mobile-app-dev__cta:hover { background: #1656E0; transform: translateY(-2px); color: #fff;}

@media (min-width: 640px) {
  .mobile-app-dev__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .mobile-app-dev__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.billing-software { background: #F6F8FC; padding: 30px; }
.billing-software * { box-sizing: border-box; }

.billing-software__container { max-width: 1200px; margin: 0 auto; }

.billing-software__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.billing-software__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.billing-software__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.billing-software__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.billing-software__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.billing-software__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.billing-software__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.billing-software__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.billing-software__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .billing-software__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .billing-software__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.smart-meter { background: #FFFFFF; padding: 30px; }
.smart-meter * { box-sizing: border-box; }

.smart-meter__container { max-width: 1200px; margin: 0 auto; }

.smart-meter__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.smart-meter__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.smart-meter__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.smart-meter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.smart-meter__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smart-meter__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.08);
}

.smart-meter__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.smart-meter__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.smart-meter__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .smart-meter__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .smart-meter__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.field-service { background: #F6F8FC; padding: 30px; }
.field-service * { box-sizing: border-box; }

.field-service__container { max-width: 1200px; margin: 0 auto; }

.field-service__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.field-service__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.field-service__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.field-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field-service__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.field-service__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.field-service__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.field-service__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.field-service__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .field-service__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .field-service__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.outage-mgmt { background: #FFFFFF; padding: 30px; }
.outage-mgmt * { box-sizing: border-box; }

.outage-mgmt__container { max-width: 1200px; margin: 0 auto; }

.outage-mgmt__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.outage-mgmt__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.outage-mgmt__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.outage-mgmt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.outage-mgmt__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.outage-mgmt__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.08);
}

.outage-mgmt__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.outage-mgmt__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.outage-mgmt__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .outage-mgmt__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .outage-mgmt__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.ai-automation { background: #0B0E14; padding: 30px; }
.ai-automation * { box-sizing: border-box; }

.ai-automation__container { max-width: 1200px; margin: 0 auto; }

.ai-automation__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.ai-automation__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,86,224,0.15);
  color: #4C82F5;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.ai-automation__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.ai-automation__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.ai-automation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ai-automation__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ai-automation__card:hover {
  transform: translateY(-6px);
  border-color: #1656E0;
  background: rgba(22,86,224,0.08);
}

.ai-automation__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1656E0;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.ai-automation__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.ai-automation__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (min-width: 640px) {
  .ai-automation__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ai-automation__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.customer-portal { background: #F6F8FC; padding: 30px; }
.customer-portal * { box-sizing: border-box; }

.customer-portal__container { max-width: 1200px; margin: 0 auto; }

.customer-portal__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }

.customer-portal__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.customer-portal__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.customer-portal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.customer-portal__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.customer-portal__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.customer-portal__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.customer-portal__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.customer-portal__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .customer-portal__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .customer-portal__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.key-features { background: #FFFFFF; padding: 30px; }
.key-features * { box-sizing: border-box; }

.key-features__container { max-width: 1200px; margin: 0 auto; }

.key-features__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 36px;
}

.key-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.key-features__group {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 16px;
  padding: 26px 24px;
}

.key-features__group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11,14,20,0.08);
}

.key-features__group-head i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.key-features__group-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0;
}

.key-features__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.key-features__list li {
  font-size: 13.5px;
  color: rgba(11,14,20,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-features__list i {
  color: #1656E0;
  font-size: 11px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .key-features__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.security-section { background: #0B0E14; padding: 30px; }
.security-section * { box-sizing: border-box; }

.security-section__container { max-width: 1200px; margin: 0 auto; }

.security-section__head { max-width: 780px; margin: 0 auto 36px; text-align: center; }

.security-section__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.security-section__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.security-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.security-section__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.security-section__card:hover {
  transform: translateY(-6px);
  border-color: #1656E0;
  background: rgba(22,86,224,0.08);
}

.security-section__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1656E0;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.security-section__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.security-section__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (min-width: 640px) {
  .security-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .security-section__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.integration-section { background: #FFFFFF; padding: 30px; }
.integration-section * { box-sizing: border-box; }

.integration-section__container { max-width: 1200px; margin: 0 auto; }

.integration-section__head { max-width: 780px; margin: 0 auto 36px; text-align: center; }

.integration-section__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.integration-section__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.integration-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.integration-section__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.integration-section__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.08);
}

.integration-section__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.08);
  color: #1656E0;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.integration-section__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.integration-section__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .integration-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .integration-section__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.dev-process { background: #F6F8FC; padding: 30px; }
.dev-process * { box-sizing: border-box; }

.dev-process__container { max-width: 1200px; margin: 0 auto; }

.dev-process__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 36px;
}

.dev-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.dev-process__card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dev-process__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,14,20,0.1);
  border-color: rgba(22,86,224,0.3);
}

.dev-process__step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  font-weight: 800;
  color: rgba(11,14,20,0.07);
}

.dev-process__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1656E0;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 18px;
}

.dev-process__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
  padding-right: 30px;
}

.dev-process__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

@media (min-width: 640px) {
  .dev-process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dev-process__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.why-choose { background: #FFFFFF; padding: 30px; }
.why-choose * { box-sizing: border-box; }

.why-choose__container { max-width: 1100px; margin: 0 auto; }

.why-choose__head { max-width: 780px; margin: 0 auto 36px; text-align: center; }

.why-choose__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 14px;
}

.why-choose__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
}

.why-choose__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.why-choose__col {
  border-radius: 16px;
  padding: 28px 24px;
}

.why-choose__col--us {
  background: #0B0E14;
}

.why-choose__col--them {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
}

.why-choose__col h3 {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.why-choose__col--us h3 { color: #FFFFFF; }
.why-choose__col--us h3 i { color: #1656E0; }

.why-choose__col--them h3 { color: #0B0E14; }
.why-choose__col--them h3 i { color: rgba(11,14,20,0.4); }

.why-choose__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-choose__col li {
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-choose__col--us li { color: rgba(255,255,255,0.8); }
.why-choose__col--them li { color: rgba(11,14,20,0.6); }

.why-choose__col--us li i {
  color: #1656E0;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-choose__col--them li i {
  color: rgba(11,14,20,0.3);
  margin-top: 2px;
  flex-shrink: 0;
}

.why-choose__cta-wrap { text-align: center; }

.why-choose__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1656E0;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.why-choose__cta:hover { background: #0E3FB0; transform: translateY(-2px); color: #fff;}

@media (min-width: 768px) {
  .why-choose__compare { grid-template-columns: repeat(2, 1fr); }
}
/* SECTION */
.use-cases { background: #F6F8FC; padding: 30px; }
.use-cases * { box-sizing: border-box; }

.use-cases__container { max-width: 1100px; margin: 0 auto; text-align: center; }

.use-cases__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 32px;
}

.use-cases__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.use-cases__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.1);
  color: #0B0E14;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  transition: all 0.25s ease;
  cursor: default;
}

.use-cases__chip i { color: #1656E0; font-size: 12px; }

.use-cases__chip:hover {
  background: #0B0E14;
  border-color: #0B0E14;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.use-cases__chip:hover i { color: #FFFFFF; }
/* SECTION */
.tech-stack { background: #FFFFFF; padding: 30px; }
.tech-stack * { box-sizing: border-box; }

.tech-stack__container { max-width: 1200px; margin: 0 auto; }

.tech-stack__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 36px;
}

.tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tech-stack__card {
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 12px;
  padding: 20px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tech-stack__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(11,14,20,0.08);
  border-color: rgba(22,86,224,0.3);
}

.tech-stack__card i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 9px;
  font-size: 14px;
  margin-bottom: 12px;
}

.tech-stack__card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 6px;
}

.tech-stack__card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(11,14,20,0.58);
  margin: 0;
}

@media (min-width: 640px) {
  .tech-stack__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .tech-stack__grid { grid-template-columns: repeat(4, 1fr); }
}
/* SECTION */
.business-outcomes { background: #0B0E14; padding: 30px; }
.business-outcomes * { box-sizing: border-box; }

.business-outcomes__container { max-width: 1200px; margin: 0 auto; }

.business-outcomes__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 36px;
}

.business-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.business-outcomes__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.business-outcomes__card:hover {
  transform: translateY(-6px);
  border-color: #1656E0;
  background: rgba(22,86,224,0.08);
}

.business-outcomes__card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1656E0;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.business-outcomes__card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.business-outcomes__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (min-width: 640px) {
  .business-outcomes__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .business-outcomes__grid { grid-template-columns: repeat(3, 1fr); }
}
/* SECTION */
.project-examples { background: #F6F8FC; padding: 30px; }
.project-examples * { box-sizing: border-box; }

.project-examples__container { max-width: 1200px; margin: 0 auto; }

.project-examples__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 36px;
}

.project-examples__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.project-examples__card {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  /* Mobile: 1 card per row */
  flex: 0 0 100%;
  max-width: 100%;
}

.project-examples__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(11,14,20,0.1);
}

.project-examples__media {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.project-examples__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-examples__card:hover .project-examples__media img {
  transform: scale(1.06);
}

.project-examples__body { padding: 22px 20px; }

.project-examples__body i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 14px;
}

.project-examples__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 8px;
}

.project-examples__body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,14,20,0.6);
  margin: 0;
}

.project-examples__cta-wrap { text-align: center; }

.project-examples__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1656E0;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.project-examples__cta:hover { background: #0E3FB0; transform: translateY(-2px); color: #fff; }

@media (min-width: 640px) {
  /* Tablet: 2 cards per row */
  .project-examples__card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (min-width: 1024px) {
  /* Desktop: 3 cards per row — last 2 cards auto-center */
  .project-examples__card {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
/* SECTION */
.cost-section { background: #FFFFFF; padding: 30px; }
.cost-section * { box-sizing: border-box; }

.cost-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cost-section__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  margin: 0 0 16px;
}

.cost-section__answer {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11,14,20,0.62);
  margin: 0 0 28px;
}

.cost-section__factors-title {
  font-size: 16px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0 0 16px;
}

.cost-section__factors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cost-section__factors li {
  font-size: 13.5px;
  color: rgba(11,14,20,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6F8FC;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.cost-section__factors i {
  color: #1656E0;
  font-size: 11px;
  flex-shrink: 0;
}

.cost-section__cta-box {
  background: #0B0E14;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
}

.cost-section__cta-box i {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,86,224,0.2);
  color: #1656E0;
  border-radius: 50%;
  font-size: 22px;
  margin: 0 auto 16px;
}

.cost-section__cta-box h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.cost-section__cta-box p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0 0 22px; }

.cost-section__cta-btn {
  display: inline-block;
  background: #1656E0;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.cost-section__cta-btn:hover { background: #0E3FB0; transform: translateY(-2px); color: #fff;}

@media (min-width: 640px) {
  .cost-section__factors { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cost-section__container { flex-direction: row; align-items: flex-start; gap: 36px; }
  .cost-section__main { flex: 2; }
  .cost-section__cta-box { flex: 1; position: sticky; top: 100px; }
}
/* SECTION */
.faq-section { background: #F6F8FC; padding: 30px; }
.faq-section * { box-sizing: border-box; }

.faq-section__container { max-width: 860px; margin: 0 auto; }

.faq-section__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: #0B0E14;
  text-align: center;
  margin: 0 0 32px;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section__item {
  background: #FFFFFF;
  border: 1px solid rgba(11,14,20,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-section__item--active { border-color: rgba(22,86,224,0.35); }

.faq-section__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 18px 20px;
}

.faq-section__question h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0B0E14;
  margin: 0;
}

.faq-section__question i {
  color: #1656E0;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-section__item--active .faq-section__question i { transform: rotate(180deg); }

.faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-section__item--active .faq-section__answer { max-height: 400px; }

.faq-section__answer p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(11,14,20,0.62);
  margin: 0;
  padding: 0 20px 20px;
}

/* SECTION-26 */
.final-cta { background: #0B0E14; padding: 30px; }
.final-cta * { box-sizing: border-box; }

.final-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,14,20,0.95) 0%, rgba(11,14,20,0.85) 50%, rgba(22,86,224,0.55) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  padding: 48px 28px;
  text-align: center;
}

.final-cta__headline {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto 32px;
}

.final-cta__btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.final-cta__btn--primary {
  background: #1656E0;
  color: #FFFFFF;
  box-shadow: 0 14px 28px rgba(22,86,224,0.35);
}

.final-cta__btn--primary:hover {
  background: #0E3FB0;
  transform: translateY(-2px);
}

.final-cta__btn--secondary {
  background: #FFFFFF;
  color: #0B0E14;
}

.final-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.final-cta__micro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.final-cta__micro i { color: #1656E0; }

@media (min-width: 640px) {
  .final-cta__btn-group { flex-direction: row; }
  .final-cta__btn { width: auto; }
}

@media (min-width: 1024px) {
  .final-cta__content { padding: 80px 60px; }
}