/*
 * ============================================================
 *  SECTIONS.CSS — Page Section Styles
 * ============================================================
 *  Each major section of the page has its own clearly labelled
 *  block below. Sections are:
 *
 *    1. Hero
 *    2. Trust Strip (framework badges)
 *    3. About
 *    4. What We Do (3-card grid)
 *    5. Stats Band
 *    6. Services
 *    7. Industries
 *    8. Academy
 *    9. Credentials
 *   10. CTA Band
 *   11. Contact
 *
 *  TO ADD A NEW SECTION:
 *  1. Add a clearly labelled block at the bottom of this file.
 *  2. Add the HTML in index.html in the correct order.
 *  3. Reference any shared utilities from base.css (.btn, .wrap, etc.).
 * ============================================================
 */


/* ============================================================
   1. HERO
   ============================================================
   Full-width image header with dark gradient overlay.
   Background image URL can be swapped in one place here.
   ============================================================ */

.hero {
  position:   relative;
  color:       #fff;
  /* Gradient overlay on top of the background photo */
  background: linear-gradient(100deg, rgba(8,26,46,.95) 0%, rgba(10,31,56,.88) 45%, rgba(14,42,74,.62) 100%),
              url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1800&q=80')
              center / cover no-repeat;
}

.hero-inner {
  max-width: var(--max);
  margin:    0 auto;
  padding:   120px 28px 130px;
}

.hero-content { max-width: 660px; }

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  font-size:     clamp(36px, 4.8vw, 58px);
  font-weight:   800;
  color:         #fff;
  margin-bottom: 24px;
}

/* Highlighted word(s) in the H1 */
.hero h1 span { color: var(--gold); }

.hero p {
  font-size:     19px;
  color:         #D5DEE9;
  margin-bottom: 38px;
  max-width:     580px;
}

/* CTA button row */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Bullet-point trust signals below the CTA */
.hero-ticks {
  margin-top: 46px;
  display:    flex;
  gap:        30px;
  flex-wrap:  wrap;
  font-size:  15px;
  color:      #C7D3E2;
}
.hero-ticks span {
  display:     flex;
  align-items: center;
  gap:         9px;
}
.hero-ticks svg { color: var(--gold); flex: none; }


/* ============================================================
   2. TRUST STRIP
   Framework / certification badges below the hero.
   TO ADD A BADGE: copy a <span class="t-badge"> in index.html.
   ============================================================ */

.trust {
  background:    var(--bg-grey);
  border-bottom: 1px solid var(--line);
  padding:       34px 0;
  text-align:    center;
}

.trust-label {
  font-family:    var(--font-head);
  font-size:      12.5px;
  font-weight:    700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--ink-mid);
  margin-bottom:  20px;
}

.trust-row {
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  gap:             12px;
}

.t-badge {
  font-family:  var(--font-head);
  font-weight:  700;
  font-size:    14px;
  color:        var(--navy);
  background:   #fff;
  border:       1px solid var(--line);
  border-radius: 6px;
  padding:      11px 22px;
  display:      inline-flex;
  align-items:  center;
  gap:          9px;
  box-shadow:   0 1px 3px rgba(14,42,74,.05);
}
.t-badge svg { color: var(--gold-dark); }


/* ============================================================
   3. ABOUT
   Two-column layout: image on left, copy on right.
   The .grey modifier (defined below) applies a grey background
   to alternating sections — just add class="grey" to <section>.
   ============================================================ */

.about { padding-bottom: 96px; }

.about p { color: var(--ink-mid); margin-bottom: 18px; }
.about p strong { color: var(--ink); }

.about-quote {
  border-left:  4px solid var(--gold);
  padding:      6px 0 6px 22px;
  margin:       26px 0 30px;
  font-size:    18px;
  font-style:   italic;
  color:        var(--navy);
  font-weight:  500;
}

/* Experience badge overlaid on the image */
.exp-tab {
  position:      absolute;
  bottom:       -26px;
  left:         -26px;
  background:   var(--navy);
  color:        #fff;
  border-radius: var(--radius);
  padding:      22px 28px;
  box-shadow:   var(--shadow);
  text-align:   center;
}
.exp-tab .n {
  font-family:  var(--font-head);
  font-weight:  800;
  font-size:    36px;
  line-height:  1;
  color:        var(--gold);
}
.exp-tab .l {
  font-size:      12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top:     6px;
  color:          #C7D3E2;
}


/* ── Grey section background ─────────────────────────────── */
/* Add class="grey" to any <section> for alternating BG */
.grey { background: var(--bg-grey); }


/* ============================================================
   4. WHAT WE DO — 3-Card Overview Grid
   TO ADD A CARD: copy an <article class="w-card"> in index.html.
   TO CHANGE COLUMNS: edit grid-template-columns on .cards3.
   ============================================================ */

.cards3 {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   26px;
}

.w-card {
  background:   #fff;
  border:       1px solid var(--line);
  border-radius: var(--radius);
  padding:      38px 32px;
  box-shadow:   0 1px 3px rgba(14,42,74,.04);
  transition:   box-shadow .25s, transform .25s, border-color .25s;
  display:      flex;
  flex-direction: column;
}
.w-card:hover {
  box-shadow:   var(--shadow);
  transform:    translateY(-4px);
  border-color: #CBD7E4;
}

/* Square icon tile at the top of each card */
.w-icon {
  width:         58px;
  height:        58px;
  border-radius: 10px;
  background:    var(--navy);
  color:         var(--gold);
  display:       grid;
  place-items:   center;
  margin-bottom: 24px;
}

.w-card h3  { font-size: 21px; margin-bottom: 13px; }
.w-card p   { font-size: 15.5px; color: var(--ink-mid); flex: 1; margin-bottom: 20px; }

/* Framework/includes metadata row at the bottom of the card */
.w-frame {
  font-size:    13px;
  color:        var(--ink-mid);
  border-top:   1px dashed var(--line);
  padding-top:  16px;
  margin-bottom: 20px;
  line-height:  1.7;
}
.w-frame b {
  color:          var(--navy);
  font-family:    var(--font-head);
  font-size:      12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display:        block;
  margin-bottom:  5px;
}

/* "Learn More →" link at the bottom of each card */
.w-link {
  font-family:  var(--font-head);
  font-weight:  700;
  font-size:    14.5px;
  color:        var(--gold-dark);
  display:      inline-flex;
  align-items:  center;
  gap:          8px;
}
.w-link:hover { color: var(--navy); }


/* ============================================================
   5. STATS BAND
   Dark full-width parallax band with animated counters.
   Background image URL is set here — swap as needed.
   ============================================================ */

.stats-band {
  background: linear-gradient(rgba(10,31,56,.94), rgba(10,31,56,.94)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=80')
              center / cover fixed no-repeat;
  color:   #fff;
  padding: 84px 0;
}

.stats-band .head-block  { margin-bottom: 50px; }
.stats-band .sec-title   { color: #fff; }
.stats-band .sec-lead    { color: #C7D3E2; margin: 0 auto; }

.stats-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   26px;
  text-align:            center;
}

.s-item {
  padding:    30px 18px;
  border:     1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

/* The large animated number */
.s-item .num {
  font-family:  var(--font-head);
  font-weight:  800;
  font-size:    52px;
  line-height:  1;
  color:        var(--gold);
}
.s-item .num sub { font-size: .5em; vertical-align: baseline; }

.s-item .lbl {
  margin-top: 12px;
  font-size:  15px;
  color:      #C7D3E2;
  line-height: 1.45;
}


/* ============================================================
   6. SERVICES — 2-Column Service Cards
   Each service is an <article class="svc">.
   TO ADD A SERVICE: copy an article block in index.html.
   TO CHANGE LAYOUT: edit grid-template-columns on .svc-grid.
   ============================================================ */

.svc-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   26px;
}

.svc {
  background:   #fff;
  border:       1px solid var(--line);
  border-radius: var(--radius);
  padding:      36px;
  box-shadow:   0 1px 3px rgba(14,42,74,.04);
  transition:   box-shadow .25s, border-color .25s;
  display:      flex;
  flex-direction: column;
}
.svc:hover { box-shadow: var(--shadow); border-color: #CBD7E4; }

/* Number badge + heading row */
.svc-top {
  display:     flex;
  align-items: flex-start;
  gap:         18px;
  margin-bottom: 16px;
}

.svc-no {
  font-family:  var(--font-head);
  font-weight:  800;
  font-size:    15px;
  color:        var(--gold-dark);
  background:   #FBF3E1;
  border:       1px solid #EFDCAE;
  border-radius: 6px;
  padding:      8px 12px;
  flex:         none;
}

.svc h3 { font-size: 20px; line-height: 1.3; padding-top: 6px; }

.svc > p { font-size: 15.5px; color: var(--ink-mid); margin-bottom: 20px; }

.svc ul  { list-style: none; display: grid; gap: 10px; margin-bottom: 6px; }
.svc li  { display: flex; gap: 11px; font-size: 15px; color: var(--ink); align-items: flex-start; }
.svc li svg { color: var(--gold-dark); flex: none; margin-top: 4px; }

/* Result / outcome callout at the bottom of the card */
.svc-result {
  margin-top:   auto;
  padding-top:  18px;
  border-top:   1px dashed var(--line);
  font-size:    14px;
  color:        var(--teal);
  font-weight:  600;
  display:      flex;
  gap:          9px;
  align-items:  flex-start;
}
.svc-result svg { flex: none; margin-top: 3px; }

/* Discovery call CTA box below the service grid */
.discovery {
  margin-top:   60px;
  background:   var(--navy);
  border-radius: var(--radius);
  color:        #fff;
  padding:      48px 52px;
  display:      grid;
  grid-template-columns: 1fr auto;
  gap:          36px;
  align-items:  center;
  box-shadow:   var(--shadow);
}
.discovery h3         { color: #fff; font-size: 26px; margin-bottom: 10px; }
.discovery h3 span    { color: var(--gold); }
.discovery p          { color: #C7D3E2; font-size: 16px; max-width: 560px; }


/* ============================================================
   7. INDUSTRIES — 3-Column Icon + Label Grid
   TO ADD AN INDUSTRY: copy a <div class="ind"> in index.html.
   ============================================================ */

.ind-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   20px;
}

.ind {
  background:   #fff;
  border:       1px solid var(--line);
  border-radius: var(--radius);
  padding:      26px;
  display:      flex;
  align-items:  center;
  gap:          18px;
  font-family:  var(--font-head);
  font-weight:  600;
  font-size:    16px;
  color:        var(--navy);
  box-shadow:   0 1px 3px rgba(14,42,74,.04);
  transition:   box-shadow .25s, border-color .25s;
}
.ind:hover { box-shadow: var(--shadow); border-color: #CBD7E4; }

.ind-ic {
  width:         48px;
  height:        48px;
  border-radius: 8px;
  background:    var(--bg-grey);
  color:         var(--gold-dark);
  display:       grid;
  place-items:   center;
  flex:          none;
}


/* ============================================================
   8. ACADEMY
   Uses teal branding instead of navy to visually separate
   this section as a distinct product/offering.
   ============================================================ */

.academy {
  background:    var(--teal-bg);
  border-top:    1px solid #D8E8E4;
  border-bottom: 1px solid #D8E8E4;
}

/* Override eyebrow and heading colours for teal theme */
.academy .eyebrow   { color: var(--teal); }
.academy .sec-title { color: var(--teal); }

/* Intro: text on left, image on right */
.acad-intro {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   70px;
  align-items:           center;
  margin-bottom:         72px;
}
.acad-intro .img-frame img   { height: 400px; }
.acad-intro .img-frame::after { border-color: var(--teal); } /* teal decorative border */

.acad-intro p { color: var(--ink-mid); margin-bottom: 16px; }

/* Stage cards: 3-column grid */
.stage-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   26px;
  margin-bottom:         72px;
}

.stage {
  background:    #fff;
  border:        1px solid #D8E8E4;
  border-top:    4px solid var(--teal); /* teal top accent bar */
  border-radius: var(--radius);
  padding:       34px 30px;
  box-shadow:    0 1px 3px rgba(15,76,73,.05);
}

.stage .st-no {
  font-family:    var(--font-head);
  font-weight:    800;
  font-size:      13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          var(--teal);
  display:        block;
  margin-bottom:  12px;
}

.stage h3        { font-size: 20px; color: var(--teal); margin-bottom: 6px; }
.stage .st-sub   { font-size: 14px; color: var(--ink-mid); font-style: italic; display: block; margin-bottom: 18px; }
.stage ul        { list-style: none; display: grid; gap: 10px; }
.stage li        { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); align-items: flex-start; }
.stage li svg    { color: var(--gold-dark); flex: none; margin-top: 4px; }

/* Audience cards: who the academy is for */
.aud-row {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   26px;
  margin-bottom:         64px;
}

.aud {
  background:    #fff;
  border:        1px solid #D8E8E4;
  border-radius: var(--radius);
  padding:       32px 28px;
  text-align:    center;
  box-shadow:    0 1px 3px rgba(15,76,73,.05);
}

.aud .aud-ic {
  width:         62px;
  height:        62px;
  border-radius: 50%;
  background:    var(--teal-bg);
  color:         var(--teal);
  display:       grid;
  place-items:   center;
  margin:        0 auto 20px;
  border:        1px solid #D8E8E4;
}

.aud h3 { font-size: 18.5px; color: var(--teal); margin-bottom: 10px; }
.aud p  { font-size: 14.5px; color: var(--ink-mid); }

/* Academy CTA box at the bottom of the section */
.acad-cta {
  background:    var(--teal);
  border-radius: var(--radius);
  color:         #fff;
  padding:       48px 52px;
  display:       grid;
  grid-template-columns: 1fr auto;
  gap:           36px;
  align-items:   center;
  box-shadow:    0 4px 24px rgba(15,76,73,.18);
}
.acad-cta h3         { color: #fff; font-size: 25px; margin-bottom: 10px; }
.acad-cta p          { color: #CDE5E0; font-size: 16px; max-width: 560px; }
.acad-cta .btn-gold  { box-shadow: none; }


/* ============================================================
   9. CREDENTIALS — Certification Badges Row
   ============================================================ */

.creds-row {
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  gap:             14px;
  margin-top:      44px;
}

.cred {
  background:    #fff;
  border:        1px solid var(--line);
  border-radius: 6px;
  padding:       13px 22px;
  font-family:   var(--font-head);
  font-weight:   600;
  font-size:     14px;
  color:         var(--navy);
  display:       inline-flex;
  align-items:   center;
  gap:           10px;
  box-shadow:    0 1px 3px rgba(14,42,74,.05);
}
.cred svg { color: var(--gold-dark); flex: none; }


/* ============================================================
  10. CTA BAND — Full-Width Dark Call to Action
   Background image URL is set here — swap as needed.
   ============================================================ */

.cta-band {
  background: linear-gradient(rgba(10,31,56,.93), rgba(10,31,56,.93)),
              url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80')
              center / cover no-repeat;
  color:      #fff;
  text-align: center;
  padding:    92px 0;
}

.cta-band h2 {
  color:     #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 760px;
  margin:    0 auto 16px;
}
.cta-band h2 span { color: var(--gold); }

.cta-band p {
  color:     #C7D3E2;
  font-size: 18px;
  max-width: 600px;
  margin:    0 auto 38px;
}

.cta-band .hero-cta { justify-content: center; }


/* ============================================================
  11. CONTACT — Form + Contact Details Side-by-Side
   ============================================================ */

.contact-grid {
  display:               grid;
  grid-template-columns: 1.05fr .95fr;
  gap:                   64px;
  align-items:           start;
}

/* Form card */
.form-card {
  background:    #fff;
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       42px;
  box-shadow:    var(--shadow);
}

.form-card h3   { font-size: 22px; margin-bottom: 8px; }
.form-card .fc-sub { font-size: 15px; color: var(--ink-mid); margin-bottom: 28px; }

/* Two fields side by side */
.f-row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
  margin-bottom:         16px;
}

.f-field               { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.f-row .f-field        { margin-bottom: 0; }  /* row handles the gap */

.f-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size:   13.5px;
  color:       var(--navy);
}

.f-field input,
.f-field select,
.f-field textarea {
  font-family:  var(--font-body);
  font-size:    15.5px;
  color:        var(--ink);
  border:       1px solid var(--line);
  border-radius: 6px;
  padding:      13px 15px;
  background:   #fff;
  transition:   border-color .2s, box-shadow .2s;
  width:        100%;
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline:    none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,42,74,.1);
}

.f-field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 13px; color: var(--ink-mid); margin-top: 14px; }

/* Right column: contact details */
.c-details h3 { font-size: 22px; margin-bottom: 22px; }

.c-list { display: grid; gap: 14px; margin-bottom: 36px; }

.c-item {
  display:     flex;
  gap:         14px;
  align-items: flex-start;
  font-size:   15.5px;
  color:       var(--ink);
}
.c-item svg  { color: var(--gold-dark); flex: none; margin-top: 3px; }
.c-item b    { font-family: var(--font-head); color: var(--navy); display: block; font-size: 14px; }
.c-item span { color: var(--ink-mid); }

/* "Why contact us" reasons box */
.c-reasons {
  background:    var(--bg-grey);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       28px;
}
.c-reasons h4 {
  font-size:      15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom:  16px;
  color:          var(--navy);
}
.c-reasons ul { list-style: none; display: grid; gap: 11px; }
.c-reasons li {
  display:     flex;
  gap:         10px;
  font-size:   15px;
  color:       var(--ink-mid);
  align-items: flex-start;
}
.c-reasons li svg { color: var(--gold-dark); flex: none; margin-top: 4px; }
