

:root {
  --navy: #0d1b3e;
  --navy-mid: #0a3e7a;
  --accent: #1b7fe1;
  --accent-light: #e8f1fc;
  --ai-glow: #00d4ff;
  --ai-mid: #0099cc;
  --text: #0d0d0d;
  --text-2: #1a1a2e;
  --text-3: #333344;
  --border: #e2e8f0;
  --bg-off: #f8fafd;
  --white: #ffffff;
  --green: #00a86b;
  --amber: #f59e0b;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1320px;
  width: 100%;
}


/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.nav-logo {
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}

.nav-logo span {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy);
  text-decoration: none;
  color: white;
}

/* ── HERO ── */
.hero {
  padding: 10px 20px 100px 20px !important;
  position: relative;
  overflow: hidden;
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;

}

/* Floating grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;

}

/* Animated pulse ring */
.hero-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.08);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.06);
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 140px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.04);
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (max-width: 1023px) {
  .hero-inner {
     grid-template-columns: 1fr;
   }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
    border: 1px solid rgba(27, 127, 225, 0.35);
  color: #0094d1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7EC8F7;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h2 {
  font-size: clamp(38px, 4.5vw, 30px);
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
}

.hero h2 .glow {
  color: transparent;
  background: linear-gradient(135deg,
      var(--ai-glow) 0%,
      var(--accent) 60%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  font-size: 19px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-ai {
  background: linear-gradient(135deg,
      var(--accent) 0%,
      var(--ai-mid) 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: poppins_semiboldregular;
  font-size: 15px;
  display: inline-block;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27, 127, 225, 0.35);
}

.btn-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
  text-decoration: none;
  color: white;
}

.btn-ghost-ai {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-ai:hover {
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Hero stat pills */
/* hero-proof-section */
.hero-proof-section {
  background: #0d1b3e;
  padding: 15px 0;
}

.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-pill {
  background: #174276;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ai-glow);

}

.proof-label {
  font-size: 12px;
  color: #fff;
  line-height: 1.3;
}

/* Hero right   animated agent illustration */
.hero-viz {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.agent-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: float-in 0.6s ease both;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.3),
      transparent);
}

.agent-card:nth-child(1) {
  animation-delay: 0.1s;
}

.agent-card:nth-child(2) {
  animation-delay: 0.25s;
}

.agent-card:nth-child(3) {
  animation-delay: 0.4s;
}

.agent-card:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.agent-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.agent-body {
  flex: 1;
  min-width: 0;
}

.agent-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.agent-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.dot-green {
  background: #00d4a0;
}

.dot-blue {
  background: var(--ai-glow);
}

.dot-yellow {
  background: #ffd700;
}

.agent-action {
  margin-top: 8px;
  font-size: 11px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 6px;
  padding: 5px 9px;
  color: var(--ai-glow);
  display: inline-block;
}

/* ── SECTIONS ── */
.section {
  padding: 88px 30px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--navy);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.section-title {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--text);
  margin-bottom: 16px;
  font-family: poppins_semiboldregular;
}

.section-dark .section-title {
  color: white;
}

.section-lead {
  font-size: 18px;
  color: var(--text-2);
  /* max-width: 620px; */
  line-height: 1.7;
  font-weight: 400;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  margin-bottom: 56px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ── WHAT IS AGENTFORCE ── */
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.explainer-visual {
  background: #0d9eda;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.explainer-visual .btn-ai {
  background: #fff;
  color: #0d9eda;
  max-width: 310px;
  margin: 20px auto 0 auto;
  width: 100%;
}

.explainer-visual .btn-ai:hover {
  background: #feb200;
  color:#fff;
}
.explainer-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 30%,
      rgba(0, 212, 255, 0.12),
      transparent 70%);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-text h5 {
  font-size: 15px;
  font-family: poppins_semiboldregular;
  color: white;
  margin-bottom: 3px;
}

.flow-text p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.vs-box {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.vs-title {
  font-size: 15px;
  font-family: poppins_semiboldregular;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.vs-bad {
  color: #000;
  text-align: right;
  font-size: 14px;
}

  @media (max-width: 767px) {
   .vs-bad {
     width: 100%;
   }
  }

.vs-good {
  color: #007eb3;
  font-size: 14px;
}

.vs-sep {
  color: #000;
  font-size: 14px;
  text-align: center;
}

.key-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.key-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.key-point h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.key-point p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #161f2d;
  padding: 56px 48px;
}

.stats-row {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-big {
  font-size: 52px;
  font-weight: 800;
  color: #0d9eda;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.stat-source {
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
}

/* ── USE CASES ── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.uc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.uc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.uc-card:hover::before {
  transform: scaleX(1);
}

.uc-card:hover {
  box-shadow: 0 10px 36px rgba(27, 127, 225, 0.12);
  transform: translateY(-4px);
  border-color: #c5d9f0;
}

.uc-card.c-service::before {
  background: linear-gradient(90deg, #1b7fe1, #00d4ff);
}

.uc-card.c-sales::before {
  background: linear-gradient(90deg, #0a7c4a, #45c65a);
}

.uc-card.c-ops::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.uc-card.c-mkt::before {
  background: linear-gradient(90deg, #b35b00, #ffa430);
}

.uc-card.c-hr::before {
  background: linear-gradient(90deg, #ae0000, #e83030);
}

.uc-card.c-data::before {
  background: linear-gradient(90deg, #0a3e7a, #1b7fe1);
}

.uc-cloud {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.uc-card.c-service .uc-cloud {
  color: #1b7fe1;
}

.uc-card.c-sales .uc-cloud {
  color: #0a7c4a;
}

.uc-card.c-ops .uc-cloud {
  color: #7c3aed;
}

.uc-card.c-mkt .uc-cloud {
  color: #b35b00;
}

.uc-card.c-hr .uc-cloud {
  color: #ae0000;
}

.uc-card.c-data .uc-cloud {
  color: #0a3e7a;
}

.uc-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.uc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.uc-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* uc-outcomes */
.uc-outcomes {
  line-height: 22px;
}

.uc-outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-2);
  position: relative;
  padding: 0 0 0 17px;
}

.uc-outcome::before {
  content: "→";
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: -1px;
}

/* ── HOW WE DELIVER ── */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phase {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.phase:first-child {
  border-top: 1px solid var(--border);
}

.phase-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.phase h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.phase p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.phase-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

.offerings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offering-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.offering-card:hover {
  border-color: var(--accent);
  background: white;
}

.offering-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.offering-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.offering-tag {
  font-size: 12px;
  font-family: poppins_semiboldregular;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
}

.tag-weeks {
  background: #d1fae5;
  color: #065f46;
}

.tag-custom {
  background: #dbeafe;
  color: #1e40af;
}

.tag-ms {
  background: #fee2e2;
  color: #991b1b;
}

/* ── DATA CLOUD PREREQ ── */
.datacloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dc-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.dc-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dc-layer {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  font-family: poppins_semiboldregular;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.dc-layer.l-agent {
  background: linear-gradient(135deg, #0d1b3e, #0a3e7a);
  color: white;
}

.dc-layer.l-cloud {
  background: linear-gradient(135deg, #0a3e7a, #1b7fe1);
  color: white;
}

.dc-layer.l-data {
  background: linear-gradient(135deg, #0a7c4a, #45c65a);
  color: white;
}

.dc-layer.l-sys {
  background: var(--bg-off);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.dc-arrow {
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1;
}

.dc-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dc-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.dc-point h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dc-point p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}

.ind-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-2px);
}

.ind-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ind-icon {
  font-size: 26px;
}

.ind-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.ind-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.ind-agents {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ind-agent {
  font-size: 12px;
  padding: 9px;
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
}

/* ── WHY ARESS ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wp {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.wp:first-child {
  border-top: 1px solid var(--border);
}

.wp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wp p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* Readiness box */
.readiness {
  background: #161f2d;
  border-radius: 20px;
  padding: 36px;
  color: white;
}

.readiness h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;

}

.readiness p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-item .chk {
  color: #00d4a0;
  font-size: 16px;
  flex-shrink: 0;
}

.readiness .btn-ai {
  display: block;
  text-align: center;
  font-size: 15px;
}

/* ── FAQ ── */
.faq-grid {
  gap: 20px;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 20px;
}

.faq-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);

  padding-right: 24px;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
}

.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.25s ease;
}

.faq-item.faq-open .faq-a {
  max-height: 560px;
  opacity: 1;
  margin-top: 18px;
}

.faq-item.faq-open .faq-q::after {
  content: "−";
}

/* ── CTA ── */
.cta-section {
  background: #161f2d;
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #161f2d;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: var(--ai-glow);
}

.cta-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 23px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--navy);
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 30px 28px 30px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #fff;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  animation: fade-up 0.55s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.45s;
}


/* */
/* salesforce certifications */
.salesforce-certifications ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.salesforce-certifications ul li {
  list-style: none;
  display: flex;

}


/* certificate-tab-section */
.certificate-tab-section .custom-tabs {
  border: none;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  justify-content: flex-start;
  padding-bottom: 5px;
  background: transparent;
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px) {
  .certificate-tab-section .custom-tabs {
    display: none;
  }

  .tab-content>.tab-pane {
    display: block;
    opacity: 01;
  }

  .tab-pane {
    margin-top: 25px;
  }
}

.certificate-tab-section .custom-tabs::-webkit-scrollbar {
  height: 6px;
}

.certificate-tab-section .custom-tabs::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 20px;
}

.certificate-tab-section .custom-tabs .nav-link {
  border: none;
  border-radius: 6px;
  background: #003b57;
  color: #fff;
  padding: 12px 20px;
  /* font-weight:600; */
  min-width: max-content;
}

.certificate-tab-section .custom-tabs .nav-link.active {
  background: #159bd3;
  color: #fff;
}

.certificate-tab-section .tab-content-wrapper {
  border-radius: 12px;
  padding: 0;
  margin-top: 20px;

}

.certificate-tab-section .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.certificate-tab-section .cert-card {
  overflow: hidden;
  border-radius: 4px;
}

.certificate-tab-section .card-top {
  background: #003b57;
  padding: 12px 14px;
  position: relative;
  min-height: 60px;
}

.certificate-tab-section .title {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.certificate-tab-section .title span {
  display: block;
}

/* Cloud icon */
.certificate-tab-section .cloud {
  position: absolute;
  right: 12px;
  top: 28px;
  width: 22px;
  height: 10px;
  background: #11b5ea;
  border-radius: 20px;
}

.certificate-tab-section .cloud::before,
.certificate-tab-section .cloud::after {
  content: "";
  position: absolute;
  background: #11b5ea;
  border-radius: 50%;
}

.certificate-tab-section .cloud::before {
  width: 10px;
  height: 10px;
  top: -4px;
  left: 2px;
}

.certificate-tab-section .cloud::after {
  width: 12px;
  height: 12px;
  top: -5px;
  right: 2px;
}

.certificate-tab-section .card-bottom {
  padding: 14px;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.certificate-tab-section .certificate-name {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

@media(max-width:576px) {

  .certificate-tab-section .custom-tabs .nav-link {
    padding: 10px 16px;
    font-size: 14px;
  }

  .certificate-tab-section .tab-content-wrapper {
    padding: 15px;
  }

  .certificate-tab-section .certification-grid {
    grid-template-columns: 1fr;
  }
}

.cloud-tabs-section {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}


/* =========================
       ACCORDION
    ========================== */
#certifications .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

#certifications .accordion-button {
  background: #e8f6fc;
  color: #000;
  font-family: poppins_semiboldregular;
  padding: 18px 20px;
}

#certifications .accordion-button:not(.collapsed) {
  background: #159bd3;
  color: #fff;
  box-shadow: none;
}

#certifications .accordion-button:focus {
  box-shadow: none;
}

#certifications .accordion-body {
  background: #fff;
  padding: 20px;
}

/*     -----   */

#capabilities .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

#capabilities .accordion-button {
  background: #e8f6fc;
  color: #000;
  font-family: poppins_semiboldregular;
  padding: 18px 20px;
}

#capabilities .accordion-button:not(.collapsed) {
  background: #159bd3;
  color: #fff;
  box-shadow: none;
}

#capabilities .accordion-button:focus {
  box-shadow: none;
}

#certifications .accordion-body {
  background: #fff;
  padding: 20px;
}


.cloud-panel .cloud-service {
  display: block;
}
@media(min-width:1200px) {

  .desktop-view {
    display: block;
  }

  .mobile-view {
    display: none;
  }

}


/* =========================
       BELOW 1200PX
    ========================== */

@media(max-width:1199px) {

  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

}

/* =========================
       MOBILE
    ========================== */

@media(max-width:576px) {

  .main-wrapper {
    padding: 25px 15px;
  }

  .certification-grid {
    grid-template-columns: 1fr;
  }

  #certifications .accordion-button {
    padding: 15px;
    font-size: 15px;
  }

}

/* */
.cert-group {
  margin-bottom: 36px;
}

.cert-group:last-child {
  margin-bottom: 0;
}

.cert-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--aress-navy);
  padding: 5px 14px 5px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.cert-group-label .gl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cert-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  cursor: default;
}

.cert-card:hover {
  border-color: var(--aress-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 127, 225, 0.1);
}

.cert-icon-wrap {
  width: 72px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon-wrap svg {
  width: 72px;
  height: 80px;
}

.cert-name {
  font-size: 12px;
  font-family: poppins_semiboldregular;
  color: var(--text-primary);
  line-height: 1.4;
}

.cert-issuer {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-group-scrum .cert-card {
  border-color: #e2e8f0;
}

.cert-tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cert-tab {
  border: 1px solid var(--border);
  background: white;
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-family: poppins_semiboldregular;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cert-tab:hover,
.cert-tab:focus-visible {
  border-color: var(--aress-accent);
  outline: none;
}

.cert-tab.active {
  background: var(--aress-accent);
  color: white;
  border-color: var(--aress-accent);
}

.cert-tab-panels {
  display: grid;
}

.cert-panel {
  display: none;
}

.cert-panel.active {
  display: block;
}


/* */
.cloud-tab {
  font-size: 16px;
  font-family: poppins_semiboldregular;
  padding: 12px 20px;
  border: none;
  background: none;
  color: var(--text-3);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.cloud-tab:hover {
  color: var(--text);
}

.cloud-tab.active-tab {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cap-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.cap-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.08);
}

.cap-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cap-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.cap-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}





/* */

@media (max-width: 1024px) {
  .cloud-tab {
    padding: 12px 18px;
  }
}


@media (max-width: 768px) {
  .cert-tab-header {
    justify-content: center;
  }

  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 50px 30px;
  }

  .stats-bar {
    padding: 30px;
  }

  .stat-item {
    padding: 0 20px;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .uc-card {
    padding: 20px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phase p {
    margin-bottom: 0;
  }

  .datacloud-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-card {
    padding: 20px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .agentforce-insights {
    grid-template-columns: 1fr !important;
  }

  .cta-section {
    padding: 40px;
  }

  .section-header-row {
    margin-bottom: 30px;
  }

  .a-service {
    grid-template-columns: 1fr !important;
  }

  .a-sales {
    grid-template-columns: 1fr !important;
  }

  .a-marketing {
    grid-template-columns: 1fr !important;
  }

  .a-commerce {
    grid-template-columns: 1fr !important;
  }

  .a-data360 {
    grid-template-columns: 1fr !important;
  }


}

@media (max-width: 650px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
    padding: 0 0 20px 0;
  }
}



.agentforce-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.inner-header-section .content-wrapper a {
  max-width: 500px;
}


.inner-header-section {
  overflow: hidden;
}

@media (max-width: 767px) {
  .inner-header-section {
    height: auto;
  }
}

@media (max-width: 575px) {
  .mobile-article-footer {
    flex-direction: column !important;
    gap: 12px;
  }

  .section {
    padding: 30px 15px;
  }
}


@media (max-width: 1199px) {
.inner-header-section .content-wrapper h1 {
  font-size: 27px;
}
}


/* insights-section */

.insights-section .btn-ai {
  margin-bottom: 50px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


@media (max-width: 767px) {
  .insights-grid {
   grid-template-columns: 1fr;
  }
}