/* ══════════════════════════════════════════════════════════
   Sectigo landing page
   Palette taken verbatim from sectigo.com's own design tokens
   (--forest-*, --spearmint-*, --coral-* custom properties visible
   in its shipped CSS) — a dark teal "forest" base with a neon-mint
   "spearmint" accent and a warm coral secondary, not a guess.

   Deliberately built with a different anatomy from the other vendor
   pages on this site (Entrust/Penguin/Opengear/Schneider/Thales all
   share: split hero + image, 3-4 card icon grid, dark "why" band, CTA).
   This page instead uses: a dashboard-tile hero (no hero photo), a
   full-bleed logo marquee, an oversized stat band, a connected
   numbered workflow rail, a staggered "assurance ladder" of product
   tiers, and a horizontal scroll-snap testimonial strip.
   ══════════════════════════════════════════════════════════ */

:root {
  --sec-forest-900: #00262b;   /* verified: --forest-900 */
  --sec-forest-800: #01333a;   /* verified: --forest-800 */
  --sec-forest-700: #014149;   /* verified: --forest-700 */
  --sec-forest-600: #015258;   /* verified: --forest-600 */
  --sec-forest-500: #1a8f95;   /* verified: --forest-500 */
  --sec-mint: #06dfc7;         /* verified: --spearmint-500 */
  --sec-mint-dk: #04a795;      /* computed: mint scaled x0.75 */
  --sec-mint-tint: #e6faf7;    /* verified: --spearmint-100 */
  --sec-coral: #ff7f5e;        /* verified: --coral-600 */
  --sec-coral-dk: #c66349;     /* computed: coral scaled x0.78 */
  --sec-coral-tint: #fff5f2;   /* verified: --coral-100 */
  --sec-navy-text: #041c2c;    /* verified: --cta-text-color */
  --sec-gray-1: #f8f7f2;       /* verified: warm off-white bg */
  --sec-gray-2: #d9d9d9;       /* verified: --content-block-horizontal-line */
  --sec-gray-3: #b2cbd2;       /* verified */
  --sec-muted: #757575;        /* verified */
  --sec-text: #041c2c;
  --sec-white: #ffffff;

  /* Cancels the Bootstrap 5 .container gutter this page is rendered inside,
     so full-bleed bands run edge to edge. Falls back to 1.5rem if absent. */
  --sec-bleed: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}

/* ── IMAGE FRAMES ──
   Kept for the one supporting product screenshot on this page; everything
   else here is built from type, icons and colour rather than photography.
   .sec-img-cover   → photos (crop to fill)
   .sec-img-contain → screenshots, diagrams (fit whole, no crop) */
.sec-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sec-gray-1);
}

@supports not (aspect-ratio: 16 / 9) {
  .sec-img-frame {
    height: 0;
    padding-bottom: 56.25%;
  }
}

.sec-img-frame > img,
.sec-img-frame > .sec-img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sec-img-cover {
  object-fit: cover;
  object-position: center;
}

.sec-img-contain {
  object-fit: contain;
  object-position: center;
  padding: 24px;
}

.sec-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(1, 65, 73, 0.05) 0px,
      rgba(1, 65, 73, 0.05) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--sec-gray-1);
  border: 2px dashed var(--sec-gray-3);
  border-radius: 14px;
  color: var(--sec-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 12px;
}

.sec-img-ph i {
  font-size: 26px;
  opacity: 0.55;
}

.sec-frame-console {
  max-width: 900px;
  margin: 56px auto 0;
}

/* ── SHARED SECTION FURNITURE ── */
.sec-section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.sec-section-head-left {
  text-align: left;
  margin: 0 0 36px;
  max-width: 640px;
}

.sec-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}

.sec-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 3px;
  background: var(--sec-mint-dk);
  transform: translateY(-50%);
}

.sec-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--sec-text);
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: clamp(14px, 1rem, 1.05rem);
  color: var(--sec-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── BUTTONS ── */
.sec-btn-primary {
  background: var(--sec-mint);
  color: var(--sec-forest-900) !important;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--sec-mint);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.sec-btn-primary:hover {
  background: var(--sec-mint-dk);
  border-color: var(--sec-mint-dk);
  color: var(--sec-white) !important;
  text-decoration: none;
  transform: translateY(-2px);
}

.sec-btn-ghost {
  background: transparent;
  color: var(--sec-white) !important;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
}

.sec-btn-ghost:hover {
  border-color: var(--sec-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--sec-white) !important;
  text-decoration: none;
}

.sec-btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
}

.sec-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sec-forest-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s, color 0.2s;
}

.sec-link:hover {
  color: var(--sec-mint-dk);
  text-decoration: none;
  gap: 11px;
}

/* ══════════ HERO ══════════ */
.sec-hero {
  background: var(--sec-forest-900);
  margin: 0 var(--sec-bleed);
  padding: 76px 30px 84px;
  position: relative;
  overflow: hidden;
}

.sec-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle at 50% 50%, rgba(6, 223, 199, 0.16), rgba(6, 223, 199, 0) 65%);
  pointer-events: none;
}

.sec-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sec-mint);
  margin-bottom: 18px;
}

.sec-hero-text h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: var(--sec-white);
  line-height: 1.1;
  letter-spacing: -1.1px;
  margin-bottom: 18px;
}

.sec-hero-text h1 .sec-accent {
  color: var(--sec-mint);
}

.sec-hero-text > p {
  font-size: clamp(15px, 1.05rem, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 30px;
}

.sec-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sec-hero-visual {
  min-width: 0;
}

/* The source PNG is a transparent isometric illustration (2600x2080, ~5:4),
   so it's floated with contain/no card chrome rather than boxed like a
   screenshot — a background or border here would show up as a hard edge
   around the transparency instead of blending into the dark hero. */
.sec-frame-hero {
  aspect-ratio: 5 / 4;
  background: transparent;
}

.sec-frame-hero .sec-img-contain {
  padding: 0;
}

@supports not (aspect-ratio: 5 / 4) {
  .sec-frame-hero {
    height: 0;
    padding-bottom: 80%;
  }
}

@media (max-width: 900px) {
  .sec-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sec-hero-text > p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .sec-hero {
    padding: 56px 22px 62px;
  }
}

/* ══════════ LOGO MARQUEE BANDS ══════════ */
.sec-marquee-band {
  background: var(--sec-white);
  border-bottom: 1px solid var(--sec-gray-2);
  margin: 0 var(--sec-bleed);
  padding: 26px 30px;
  text-align: center;
}

.sec-marquee-band-alt {
  background: var(--sec-gray-1);
}

.sec-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sec-forest-700);
  margin-bottom: 18px;
}

.sec-marquee-label i {
  color: var(--sec-mint-dk);
}

.sec-marquee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.sec-marquee-ph,
.sec-marquee-img {
  width: 130px;
  height: 44px;
  flex: 0 0 auto;
}

.sec-marquee-img {
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.2s, filter 0.2s;
}

.sec-marquee-img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.sec-marquee-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--sec-gray-3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sec-muted);
}

@media (max-width: 640px) {
  .sec-marquee-band {
    padding: 22px 20px;
  }
}

/* ══════════ THREE CALLOUTS ══════════ */
.sec-callouts {
  background: var(--sec-white);
  padding: 80px 30px 60px;
}

.sec-callout-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sec-callout {
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.sec-callout-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}

.sec-callout h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.sec-callout p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.sec-callout-badge {
  background: var(--sec-mint-tint);
  border: 1px solid rgba(6, 223, 199, 0.35);
}

.sec-callout-badge .sec-callout-icon {
  background: var(--sec-white);
  color: var(--sec-mint-dk);
}

.sec-callout-badge h3,
.sec-callout-badge p {
  color: var(--sec-forest-800);
}

.sec-callout-warn {
  background: var(--sec-coral-tint);
  border: 1px solid rgba(255, 127, 94, 0.3);
}

.sec-callout-warn .sec-callout-icon {
  background: var(--sec-white);
  color: var(--sec-coral-dk);
}

.sec-callout-warn h3,
.sec-callout-warn p {
  color: var(--sec-navy-text);
}

.sec-callout-stat {
  background: var(--sec-forest-900);
  border: 1px solid var(--sec-forest-700);
}

.sec-callout-figure {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sec-mint);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 14px;
}

.sec-callout-figure span {
  font-size: 1.6rem;
}

.sec-callout-stat h3 {
  color: var(--sec-white);
}

.sec-callout-stat p {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .sec-callout-grid {
    grid-template-columns: 1fr;
  }
  .sec-callouts {
    padding: 52px 20px 40px;
  }
}

/* ══════════ STAT BAND ══════════ */
.sec-stat-band {
  background: var(--sec-forest-700);
  margin: 0 var(--sec-bleed);
  padding: 0;
}

.sec-stat-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.sec-stat {
  text-align: center;
  padding: 44px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sec-stat:last-child {
  border-right: none;
}

.sec-stat-num {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--sec-mint);
  letter-spacing: -1px;
}

.sec-plus {
  color: var(--sec-coral);
}

.sec-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .sec-stat-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-stat:nth-child(2n) {
    border-right: none;
  }
  .sec-stat:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .sec-stat-band-inner {
    grid-template-columns: 1fr;
  }
  .sec-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sec-stat:last-child {
    border-bottom: none;
  }
}

/* ══════════ WORKFLOW RAIL ══════════ */
.sec-workflow {
  background: var(--sec-gray-1);
  padding: 84px 30px;
}

.sec-workflow-track {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* The connecting rail: one line behind all five steps */
.sec-workflow-track::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--sec-gray-3) 0px,
    var(--sec-gray-3) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.sec-workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.sec-workflow-num {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--sec-forest-700);
  color: var(--sec-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.sec-workflow-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--sec-white);
  border: 2px solid var(--sec-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sec-forest-700);
}

.sec-workflow-step h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--sec-text);
  margin-bottom: 8px;
}

.sec-workflow-step p {
  font-size: 12.5px;
  color: var(--sec-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .sec-workflow-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sec-workflow-track::before {
    display: none;
  }
  .sec-workflow-step {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .sec-workflow {
    padding: 52px 20px;
  }
}

/* ══════════ ASSURANCE LADDER ══════════ */
.sec-ladder {
  background: var(--sec-white);
  padding: 84px 30px;
}

.sec-ladder-grid {
  max-width: 980px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}

.sec-ladder-card {
  border: 1px solid var(--sec-gray-2);
  border-radius: 14px;
  padding: 26px 22px;
  background: var(--sec-gray-1);
}

/* Staggered heights read as an ascending "assurance ladder" —
   DV is quick and basic, EV sits at the top of the stack. */
.sec-ladder-1 {
  transform: translateY(24px);
}

.sec-ladder-2 {
  transform: translateY(0);
  box-shadow: 0 14px 34px rgba(1, 65, 73, 0.08);
}

.sec-ladder-3 {
  transform: translateY(-24px);
  background: var(--sec-forest-900);
  border-color: var(--sec-forest-700);
}

.sec-ladder-tier {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--sec-mint-dk);
  margin-bottom: 12px;
}

.sec-ladder-3 .sec-ladder-tier {
  color: var(--sec-mint);
}

.sec-ladder-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--sec-text);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.sec-ladder-3 h3 {
  color: var(--sec-white);
}

.sec-ladder-card p {
  font-size: 13px;
  color: var(--sec-muted);
  line-height: 1.6;
  margin: 0;
}

.sec-ladder-3 p {
  color: rgba(255, 255, 255, 0.65);
}

.sec-ladder-extra {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--sec-gray-2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sec-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sec-forest-700);
  background: var(--sec-mint-tint);
  border-radius: 50px;
  padding: 8px 16px;
}

.sec-ladder-extra .sec-link {
  margin-left: auto;
}

@media (max-width: 820px) {
  .sec-ladder-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .sec-ladder-1,
  .sec-ladder-2,
  .sec-ladder-3 {
    transform: none;
  }
  .sec-ladder-extra .sec-link {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .sec-ladder {
    padding: 52px 20px;
  }
}

/* ══════════ TESTIMONIALS (SCROLL-SNAP) ══════════ */
.sec-testimonials {
  background: var(--sec-gray-1);
  padding: 84px 0;
}

.sec-testimonials .sec-section-head-left {
  padding: 0 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sec-testimonial-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 30px 20px;
  max-width: 1180px;
  margin: 0 auto;
  scrollbar-width: thin;
}

.sec-testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--sec-white);
  border: 1px solid var(--sec-gray-2);
  border-radius: 14px;
  padding: 26px 24px;
  margin: 0;
}

.sec-testimonial-card i {
  font-size: 26px;
  color: var(--sec-mint-dk);
  opacity: 0.6;
}

.sec-testimonial-card blockquote {
  font-size: 14px;
  color: var(--sec-text);
  line-height: 1.62;
  margin: 12px 0 18px;
}

.sec-testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sec-testimonial-card strong {
  font-size: 13px;
  color: var(--sec-text);
}

.sec-testimonial-card span {
  font-size: 12px;
  color: var(--sec-muted);
}

@media (max-width: 640px) {
  .sec-testimonials {
    padding: 52px 0;
  }
  .sec-testimonial-scroll {
    padding: 4px 20px 20px;
  }
  .sec-testimonial-card {
    flex-basis: 270px;
  }
}

/* ══════════ CTA ══════════ */
.sec-cta {
  background: linear-gradient(120deg, var(--sec-forest-900) 0%, var(--sec-forest-700) 60%, var(--sec-mint-dk) 140%);
  margin: 0 var(--sec-bleed);
  padding: 84px 30px;
  text-align: center;
}

.sec-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sec-cta-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sec-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sec-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
}

.sec-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--sec-white);
  line-height: 1.18;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

.sec-cta p {
  font-size: clamp(14px, 1rem, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 auto 30px;
}

.sec-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .sec-cta {
    padding: 52px 20px;
  }
}
