:root {
  --sf-blue: #0070D2;
  --sf-dark: #032D60;
  --sf-mid: #0A3E7A;
  --aress-navy: #0D1B3E;
  --aress-accent: #1B7FE1;
  --aress-light: #E8F1FC;
  --text-primary: #0D1B3E;
  --text-secondary: #000;
  --text-muted: #718096;
  --border: #E2E8F0;
  --bg-off: #F8FAFD;
  --bg-dark: #0D1B3E;
  --white: #ffffff;
  --green: #00A86B;
  --amber: #F59E0B;
  --coral: #E05252;
}

:root {
  --white: #ffffff;
  --off: #f5f5f2;
  --ink: #0b0b0b;
  --ink2: #222;
  --ink3: #555;
  --border: #e2e2e2;

  /* Voice Agent — Blue */
  --va: #1246f6;
  --va-d: #0a2ea8;
  --va-lt: #e9eeff;
  --va-mid: #3d6bff;

  /* QA Tool — Violet */
  --qa: #6c2bd9;
  --qa-d: #4b1a99;
  --qa-lt: #f0eaff;
  --qa-mid: #8b50e8;

  /* PhishZen — Slate + Red */
  --pz: #0f1923;
  --pz-red: #e8283a;
  --pz-red-lt: #fff0f1;
  --pz-mid: #1e3045;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* body {
  color: var(--text-primary);
  background: var(--white);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
} */

html {
  scroll-behavior: smooth
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

a {
  color: var(--aress-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo a {
  display: flex;
}

.nav-logo img {
  width: 110px;
}


.nav-logo span {
  color: var(--aress-accent);
}

.nav-links {
  display: flex;
  gap: 28px;
}


@media (max-width: 1023px) {

  .nav-links {
    display: none;
  }
}



.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--aress-accent);
  text-decoration: none;
}

.nav-cta {
  background: var(--aress-accent);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--sf-dark);
  text-decoration: none;
  color: white;
}

/* ─── HERO ─── */
.hero {
  /* background: var(--aress-navy); */
  /* background: #ccc; */
  padding: 10px 20px 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(27, 127, 225, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;


  @media (max-width: 991px) {
     grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(27, 127, 225, 0.35);
  color: #0d9eda;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7EC8F7;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: #000;
  margin-bottom: 22px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: #0b9eda;
}

.hero-sub {
  font-size: 19px;
  color: #000;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #00a1e1;
  color: white;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.15s, background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #1569C2;
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #0d9eda;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
}

.stat-card .num {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 25px;
}

.stat-card .label {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  line-height: 17px;

}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg-off);
   border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}

.trust-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.trust-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-blue {
  background: var(--aress-accent);
}

.dot-green {
  background: var(--green);
}

.dot-gold {
  background: var(--amber);
}

/* ─── SHARED SECTION STYLES ─── */
.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--aress-navy);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aress-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-dark .section-title {
  color: white;
}

.section-lead {
  font-size: 19px;
  color: var(--text-secondary);
  /* max-width: 640px; */
  line-height: 1.65;
  font-weight: 300;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  margin-bottom: 52px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--aress-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(27, 127, 225, 0.12);
  transform: translateY(-3px);
  border-color: #C5D9F0;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--aress-accent);
}

.service-link:hover {
  text-decoration: underline;
}

/* ─── CLOUDS GRID ─── */
.clouds-intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 52px;

  @media (max-width: 767px) {
      grid-template-columns: 1fr;
  }
}

.clouds-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.cloud-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.cloud-card:hover {
  border-color: var(--aress-accent);
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.1);
  transform: translateY(-2px);
}

.cloud-icon {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.cloud-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cloud-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.cloud-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.tag-hot {
  background: #FEE2E2;
  color: #B91C1C;
}

.tag-new {
  background: #DBEAFE;
  color: #1D4ED8;
}

.tag-popular {
  background: #D1FAE5;
  color: #065F46;
}

/* ─── APPROACH ─── */
.steps {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;

}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aress-accent), transparent);


  @media (max-width: 1199px) {
    display: none;
  }
}

.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00a1e1;
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--aress-accent);
}

.step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step p {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

/* ─── INDUSTRIES ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;

  @media (max-width: 767px) {
   grid-template-columns: 1fr;   
  }
}

.industry-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  background: white;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-card:hover {
  border-color: var(--aress-accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-2px);
}

.industry-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-icon {
  font-size: 28px;
}

.industry-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.industry-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.industry-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.itag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--aress-light);
  color: var(--aress-accent);
  font-weight: 500;
}

/* ─── CASE STUDIES ─── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;


  @media (max-width: 767px) {
     grid-template-columns: 1fr;
  }
}

.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.case-card:hover {
  box-shadow: 0 8px 32px rgba(13, 27, 62, 0.1);
  transform: translateY(-3px);
}

.case-header {
  padding: 22px 22px 0;
}

.case-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.case-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.case-result {
  font-size: 14px;
  color: var(--text-secondary);
  border-left: 3px solid var(--aress-accent);
  padding-left: 12px;
  margin: 0 22px 18px;
  line-height: 1.55;
}

.case-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-cloud {
  font-size: 11px;
  font-weight: 600;
  color: var(--aress-accent);
  background: var(--aress-light);
  padding: 3px 9px;
  border-radius: 4px;
}

.case-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--aress-accent);
}

/* ─── WHY ARESS ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;


  @media (max-width: 767px) {
      grid-template-columns: 1fr;
  }

}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--aress-light);
  color: var(--aress-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-point p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.why-proof {
  background: #161f2d;
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  @media (max-width: 767px) {
      grid-template-columns: 1fr;
  }
}

.proof-item {
  text-align: center;
}

.proof-num {
  /* font-family: 'Sora', sans-serif; */
  font-size: 38px;
  font-weight: 700;
  color: white;
  display: block;
  letter-spacing: -1px;
}

.proof-label {
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
  margin-top: 4px;
}

.proof-highlight {
  color: #0d9eda;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--aress-navy) 0%, var(--sf-mid) 100%);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #161f2d;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 21px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--aress-navy);
  padding: 14px 32px;
  border-radius: 7px;
  font-weight: 600;
  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(--aress-navy);
}

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 20px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: var(--aress-accent);
  box-shadow: 0 16px 40px rgba(12, 40, 72, 0.08);
}

.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  padding-right: 28px;
  position: relative;
  outline: none;
}

.faq-q:focus-visible {
  outline: 3px solid rgba(2, 117, 216, 0.25);
  outline-offset: 4px;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -11px;
  color: var(--aress-accent);
  font-size: 25px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.faq-item.active {
  border-color: var(--aress-accent);
}

.faq-item.active .faq-q::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.2s ease;
  margin-top: 0;
}

.faq-item.active .faq-a {
  max-height: 420px;
  opacity: 1;
  margin-top: 18px;
}

/* ─── TEAM SECTION ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;

  @media (max-width: 768px) {
      grid-template-columns: 1fr;
  }

    @media (max-width: 768px) {
      grid-template-columns: repeat(1fr);
  }
}

.role-card {
  border-radius: 16px;
  padding: 30px 24px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 27, 62, 0.1);
}

/* .role-card.architect {
  background: linear-gradient(145deg, #0D1B3E 0%, #1a3060 100%);
  border-color: transparent;
}

.role-card.consultant {
  background: linear-gradient(145deg, #0A3E7A 0%, #1256a8 100%);
  border-color: transparent;
} */

/* .role-card.developer {
  background: white;
}

.role-card.admin {
  background: white;
} */

.role-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.role-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  /* font-family: 'Sora', sans-serif; */
}

/* .role-card.architect .role-title,
.role-card.consultant .role-title {
  color: white;
}

.role-card.developer .role-title,
.role-card.admin .role-title {
  color: var(--text-primary);
} */

.role-desc {
  font-size: 14px;
  line-height: 1.6;
}

  /* .role-card.architect .role-desc,
  .role-card.consultant .role-desc {
    color: rgba(255, 255, 255, 0.65);
  } */

/* .role-card.developer .role-desc,
.role-card.admin .role-desc {
  color: var(--text-secondary);
} */

.role-certs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cert-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

/* .role-card.architect .cert-tag {
  background: rgba(126, 200, 247, 0.15);
  color: #7EC8F7;
  border: 1px solid rgba(126, 200, 247, 0.25);
} */

/* .role-card.consultant .cert-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
} */

.role-card .cert-tag,
.role-card .cert-tag {
  background: var(--aress-light);
  color: var(--aress-accent);
  border: 1px solid #C5D9F0;
}

.arch-pyramid {
  background: var(--aress-navy);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.pyramid-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.pyramid-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 24px;
}

.pyramid-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pyr-level {
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pyr-level.l1 {
  background: rgba(126, 200, 247, 0.2);
  border: 1px solid rgba(126, 200, 247, 0.35);
}

.pyr-level.l2 {
  background: rgba(27, 127, 225, 0.2);
  border: 1px solid rgba(27, 127, 225, 0.35);
}

.pyr-level.l3 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pyr-level.l4 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pyr-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.l1 .pyr-badge {
  background: #7EC8F7;
  color: #0D1B3E;
}

.l2 .pyr-badge {
  background: var(--aress-accent);
  color: white;
}

.l3 .pyr-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.l4 .pyr-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.pyr-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.pyr-text strong {
  color: white;
  font-weight: 600;
}

.pyramid-right {
  text-align: center;
}

.pyramid-svg-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pyr-row {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 40px 28px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: gap;
  gap: 20px;
}

.footer-logo {
  /* font-family: 'Sora', sans-serif; */
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.footer-logo span {
  color: #7EC8F7;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.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;
}


/* .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
} */


/* */
.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-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  /* font-family: "Sora", sans-serif; */
}

.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-weight: 600;
  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;
}

@media (max-width: 768px) {
  .cert-tab-header {
    justify-content: center;
  }
}



          .logo-grid {
        display: grid;
        /* grid-template-columns: repeat(8, 1fr); */
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 14px;
      }
      .logo-tile {
        background: white;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px 10px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s,
          transform 0.15s;
        cursor: default;
        min-height: 90px;
      }
      .logo-tile:hover {
        border-color: #c5d9f0;
        box-shadow: 0 4px 16px rgba(27, 127, 225, 0.1);
        transform: translateY(-2px);
      }
      .logo-tile img {
        /* width: 36px;
        height: 36px; */
        object-fit: contain;
      }
      .logo-tile:hover img {
        filter: grayscale(0%) opacity(1);
      }
      .logo-tile .wordmark {
        /* font-family: "Sora", sans-serif; */
        font-size: 13px;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: -0.3px;
        transition: color 0.2s;
        text-align: center;
        line-height: 1.2;
      }
      .logo-tile:hover .wordmark {
        color: var(--text-primary);
      }
      .logo-tile .logo-name {
        font-size: 11px;
        font-weight: 500;
        color: var(--text-muted);
        text-align: center;
        line-height: 1.3;
        transition: color 0.2s;
        display: none;
      }
      .logo-tile:hover .logo-name {
        color: var(--text-secondary);
      }




      /* insights-section */

      .insights-section {

      }


      .insights-grid {
          display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;


            @media (max-width: 767px) {
               grid-template-columns: 1fr;
            }
      }

      

/* ── Lead Popup Overlay ── */
#lead-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#lead-popup-overlay.lp-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup Box ── */
#lead-popup {
  position: relative;
  width: 92%;
  max-width: 560px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.36, 1);
}

#lead-popup-overlay.lp-open #lead-popup {
  transform: none;
}

/* ── Accent bar at top ── */
#lead-popup-bar {
  height: 5px;
  background: linear-gradient(90deg,
      var(--va) 0%,
      var(--qa) 55%,
      var(--pz-red) 100%);
}

/* ── Inner padding ── */
.lp-inner {
  padding: 38px 44px 42px;
  max-height: calc(100vh - 50px);
  overflow: auto;

  @media (max-width: 767px) {
      padding: 25px;
  }
}

/* ── Close ── */
#lp-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--off);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink3);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 2;
}

#lp-close:hover {
  background: var(--border);
  color: var(--ink);
}

/* ── Header ── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--va-lt);
  color: var(--va);
  border: 1.5px solid rgba(18, 70, 246, 0.18);
  padding: 5px 14px;
  border-radius: 100px;
  /* font-family: "Sora", sans-serif; */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--va);
  animation: pulse 2s infinite;
}

.lp-title {
  /* font-family: "Sora", sans-serif; */
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 6px;
}

.lp-subtitle {
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ── Form ── */
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  @media (max-width: 767px) {
      grid-template-columns: 1fr;
  }
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp-field label {
  /* font-family: "Sora", sans-serif; */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
}

.lp-field input,
.lp-field select {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  /* font-family: "DM Sans", sans-serif; */
  font-size: 15px;
  color: var(--ink);
  background: white;
  outline: none;
  transition:
  border-color 0.2s,
  box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.lp-field input::placeholder {
  color: #aaa;
}

.lp-field input:focus,
.lp-field select:focus {
  border-color: var(--va);
  box-shadow: 0 0 0 3px rgba(18, 70, 246, 0.1);
}

.lp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.lp-field select option[value=""] {
  color: #aaa;
}

/* ── Platform checkboxes ── */
.lp-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.lp-platform-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  /* font-family: "Sora", sans-serif; */
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  transition: all 0.2s;
  user-select: none;
}

.lp-platform-opt input[type="checkbox"] {
  display: none;
}

.lp-platform-opt.opt-va:hover,
.lp-platform-opt.opt-va.checked {
  background: var(--va-lt);
  border-color: var(--va);
  color: var(--va);
}

.lp-platform-opt.opt-qa:hover,
.lp-platform-opt.opt-qa.checked {
  background: var(--qa-lt);
  border-color: var(--qa);
  color: var(--qa);
}

.lp-platform-opt.opt-pz:hover,
.lp-platform-opt.opt-pz.checked {
  background: var(--pz-red-lt);
  border-color: var(--pz-red);
  color: var(--pz-red);
}

.lp-check-icon {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.15s;
}

.lp-platform-opt.checked .lp-check-icon {
  opacity: 1;
}

/* ── Submit ── */
#lp-submit {
  margin-top: 4px;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  width: 100%;
  /* font-family: "Sora", sans-serif; */
  font-size: 15px;
  font-weight: 700;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
}

#lp-submit:hover {
  background: var(--va);
  box-shadow: 0 10px 32px rgba(18, 70, 246, 0.3);
  transform: translateY(-1px);
}

#lp-submit:active {
  transform: none;
}

/* ── Success state ── */
#lp-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 44px;
  gap: 16px;
}

#lp-success.visible {
  display: flex;
}

.lp-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--va), var(--qa));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  animation: successPop 0.5s cubic-bezier(0.22, 0.9, 0.36, 1) both;
}

@keyframes successPop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.lp-success h3 {
  /* font-family: "Sora", sans-serif; */
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.lp-success p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.6;
  max-width: 320px;
}

#lp-success-close {
  margin-top: 8px;
  padding: 12px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  /* font-family: "Sora", sans-serif; */
  font-size: 14px;
  font-weight: 700;
  background: var(--ink);
  color: white;
  transition: all 0.2s;
}

#lp-success-close:hover {
  background: var(--va);
}

/* ── Privacy note ── */
.lp-privacy {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: #bbb;
  line-height: 1.5;
}

.lp-privacy a {
  color: var(--ink3);
  text-decoration: underline;
}

/* ── Error state ── */
.lp-field input.lp-err,
.lp-field select.lp-err {
  border-color: #e8283a;
  box-shadow: 0 0 0 3px rgba(232, 40, 58, 0.1);
}

.lp-err-msg {
  font-size: 11px;
  color: #e8283a;
  margin-top: 2px;
  display: none;
}

.lp-err-msg.visible {
  display: block;
}


/* health-check-grid */
.health-check-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;


  @media (max-width: 767px) {
      grid-template-columns: 1fr;
  }

}

/* 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;
      }
    }



    /* =========================
       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-weight:600;
      padding:18px 20px;
    }

   #certifications  .accordion-button:not(.collapsed){
      background:#159bd3;
      color:#fff;
      box-shadow:none;
    }

   #certifications  .accordion-button:focus{
      box-shadow:none;
    }
/*
    #certifications .accordion-button::after{
      filter:brightness(0) invert(1);
    }
	*/

    #certifications .accordion-body{
      background:#fff;
      padding:20px;
    }

	/* #certifications .accordion-body p { */
		/* line-height: 22px !important; */
		/* margin: 0; */
	/* } */

    @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;
      }

    }
