/* ==========================================================================
   Security Holdings page

   Loaded only by security-holdings.php. Everything is scoped under .sec-page
   so the dark treatment cannot leak onto any other page.

   The palette is the brand navy taken darker for depth, with the brand orange
   as the single accent — the same two colours as the logo.
   ========================================================================== */

.sec-page {
  --sp-deep:    #001434;   /* page ground */
  --sp-navy:    #00275F;   /* brand navy */
  --sp-panel:   rgba(255, 255, 255, .045);
  --sp-line:    rgba(255, 255, 255, .11);
  --sp-accent:  #FD5C02;
  --sp-text:    rgba(255, 255, 255, .76);
  --sp-faint:   rgba(255, 255, 255, .55);

  --sp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             Helvetica, Arial, sans-serif;

  background: var(--sp-deep);
  color: var(--sp-text);
}

/* ------------------------------------------------------------------ Hero */

.sec-page .sp-hero {
  position: relative;
  background-color: var(--sp-deep);
  background-position: center;
  background-size: cover;
  /* the site header is absolutely positioned over the top of the page, so the
     hero needs enough head room to clear it on every breakpoint */
  padding: 330px 0 96px;
  text-align: center;
}

/* Darken the artwork enough for the type to win, but not so much that the
   pattern disappears — it stays visible behind the outer thirds. */
.sec-page .sp-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 78% at 50% 52%, rgba(0,20,52,.95) 0%, rgba(0,20,52,.80) 55%, rgba(0,20,52,.42) 100%),
    linear-gradient(180deg, rgba(0,20,52,.72) 0%, rgba(0,20,52,.30) 40%, rgba(0,20,52,.92) 100%);
}

.sec-page .sp-hero > .auto-container { position: relative; z-index: 1; }

.sec-page .sp-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(253, 92, 2, .45);
  border-radius: 999px;
  background: rgba(253, 92, 2, .10);
  color: var(--sp-accent);
  font-family: var(--sp-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sec-page .sp-hero h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.015em;
}

.sec-page .sp-hero h1 span { color: var(--sp-accent); }

.sec-page .sp-lede {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--sp-font);
  font-size: 18px;
  line-height: 1.72;
  color: var(--sp-text);
}

.sec-page .sp-crumb {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--sp-font);
  font-size: 13px;
  color: var(--sp-faint);
}

.sec-page .sp-crumb li { display: inline; }
.sec-page .sp-crumb a { color: var(--sp-faint); }
.sec-page .sp-crumb a:hover { color: var(--sp-accent); }

/* -------------------------------------------------------- Section headings */

.sec-page .sp-head { margin-bottom: 46px; }
.sec-page .sp-head.is-centered { text-align: center; }

.sec-page .sp-head h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.015em;
}

.sec-page .sp-head h2 span { color: var(--sp-accent); }

.sec-page .sp-head p {
  max-width: 700px;
  margin: 0;
  font-family: var(--sp-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--sp-text);
}

.sec-page .sp-head.is-centered p { margin-left: auto; margin-right: auto; }

/* a short accent rule under centred headings */
.sec-page .sp-head.is-centered h2:after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: var(--sp-accent);
}

/* ----------------------------------------------------------------- Intro */

.sec-page .sp-intro { padding: 76px 0 84px; }

.sec-page .sp-intro .sp-copy { padding-right: 30px; }

.sec-page .sp-points { margin: 34px 0 0; padding: 0; list-style: none; }

.sec-page .sp-points li {
  position: relative;
  padding: 0 0 26px 62px;
  margin: 0 0 26px;
  border-bottom: 1px solid var(--sp-line);
}

.sec-page .sp-points li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.sec-page .sp-points li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 92, 2, .12);
  border: 1px solid rgba(253, 92, 2, .34);
}

.sec-page .sp-points li:after {
  content: '';
  position: absolute;
  left: 15px;
  top: 16px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--sp-accent);
  border-bottom: 2px solid var(--sp-accent);
  transform: rotate(-45deg);
}

.sec-page .sp-points strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: var(--sp-font);
  font-size: 17px;
  font-weight: 600;
}

.sec-page .sp-points span {
  display: block;
  font-family: var(--sp-font);
  font-size: 15px;
  line-height: 1.72;
  color: var(--sp-text);
}

.sec-page .sp-figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sp-line);
  background: rgba(255, 255, 255, .03);
}

.sec-page .sp-figure img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------- Card grid */

.sec-page .sp-cards {
  padding: 84px 0;
  background: linear-gradient(180deg, #001434 0%, #002049 50%, #001434 100%);
}

.sec-page .sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.sec-page .sp-card {
  padding: 34px 30px;
  border-radius: 14px;
  background: var(--sp-panel);
  border: 1px solid var(--sp-line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.sec-page .sp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 92, 2, .45);
  background: rgba(255, 255, 255, .06);
}

.sec-page .sp-card .sp-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(253, 92, 2, .12);
  border: 1px solid rgba(253, 92, 2, .3);
  color: var(--sp-accent);
  font-size: 26px;
}

.sec-page .sp-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--sp-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.sec-page .sp-card p {
  margin: 0;
  font-family: var(--sp-font);
  font-size: 15px;
  line-height: 1.72;
  color: var(--sp-text);
}

/* ------------------------------------------------------------------ Steps */

.sec-page .sp-steps { padding: 84px 0; }

.sec-page .sp-step {
  position: relative;
  padding: 32px 26px;
  border-radius: 14px;
  background: var(--sp-panel);
  border: 1px solid var(--sp-line);
  height: 100%;
}

.sec-page .sp-step .sp-num {
  display: block;
  margin-bottom: 14px;
  color: var(--sp-accent);
  font-family: var(--sp-font);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}

.sec-page .sp-step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--sp-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.sec-page .sp-step p {
  margin: 0;
  font-family: var(--sp-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--sp-text);
}

/* ---------------------------------------------------------- Assurance band */

.sec-page .sp-band {
  position: relative;
  padding: 62px 0;
  background: rgba(255, 255, 255, .035);
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  text-align: center;
}

.sec-page .sp-band > .auto-container { position: relative; z-index: 1; }

.sec-page .sp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 20px;
}

.sec-page .sp-stat strong {
  display: block;
  color: #ffffff;
  font-family: var(--sp-font);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.sec-page .sp-stat strong em {
  font-style: normal;
  color: var(--sp-accent);
}

.sec-page .sp-stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--sp-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--sp-faint);
}

/* ------------------------------------------------------------------- CTA */

.sec-page .sp-cta {
  padding: 84px 0 92px;
  text-align: center;
  background: linear-gradient(180deg, #001434 0%, #00275F 100%);
}

.sec-page .sp-cta h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.sec-page .sp-cta p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-family: var(--sp-font);
  font-size: 16px;
  line-height: 1.72;
  color: var(--sp-text);
}

.sec-page .sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.sec-page .sp-btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 8px;
  font-family: var(--sp-font);
  font-size: 15px;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.sec-page .sp-btn-primary {
  background: var(--sp-accent);
  border: 1px solid var(--sp-accent);
  color: #ffffff;
}

.sec-page .sp-btn-primary:hover { background: #D94E00; border-color: #D94E00; color: #ffffff; }

.sec-page .sp-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .30);
  color: #ffffff;
}

.sec-page .sp-btn-ghost:hover { border-color: #ffffff; background: rgba(255, 255, 255, .08); color: #ffffff; }

/* ------------------------------------------------------------ Breakpoints */

@media only screen and (min-width: 768px) {
  .sec-page .sp-grid  { grid-template-columns: 1fr 1fr; }
  .sec-page .sp-stats { grid-template-columns: repeat(4, 1fr); }
}

@media only screen and (min-width: 992px) {
  .sec-page .sp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media only screen and (max-width: 991px) {
  .sec-page .sp-hero { padding: 270px 0 72px; }
  .sec-page .sp-hero h1 { font-size: 36px; }
  .sec-page .sp-intro .sp-copy { padding-right: 0; margin-bottom: 44px; }
  .sec-page .sp-intro,
  .sec-page .sp-cards,
  .sec-page .sp-steps { padding: 70px 0; }
  .sec-page .sp-head h2 { font-size: 28px; }
}
