/*
====================================================
Servadra CSS
Version: 4.0.0 (LOCKED STABLE BUILD)
Last Updated: 2026-02-20T00:40:00Z
Status: PRODUCTION LOCK
====================================================
*/

/* ======================
   RESET
====================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  padding-top: 70px; /* header height only */
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ======================
   HEADER (LOCKED)
====================== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a,
.drop-btn {
  font-size: 14px;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  min-width: 240px;
  display: none;
  padding: 12px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #222;
}

.dropdown.active .dropdown-menu {
  display: block;
}

/* ======================
   HERO
====================== */

.hero-full {
  height: 100vh;
  background: url("../images/makedecision1.png") center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-full h1 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.hero-sub {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn {
  padding: 10px 22px;
  font-size: 12px;
  border-radius: 3px;
  transition: 0.2s ease;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.secondary {
  border: 1px solid white;
  color: white;
}

.btn.secondary:hover {
  background: white;
  color: black;
}

/* ======================
   OPERATIONAL PROBLEM
====================== */

.op-problem {
  padding: 120px 0;
  background: #ffffff;
}

.op-problem-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.op-problem-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.op-problem h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* ======================
   CONTROLLED SOLUTION
====================== */

.controlled-solution {
  padding: 120px 0;
  background: #f5f5f3;
}

.cs-header {
  text-align: center;
  margin-bottom: 60px;
}

.cs-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cs-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ======================
   GOVERNANCE
====================== */

.governance-assurance {
  padding: 120px 0;
  background: #1a1a1a;
  color: #ffffff;
}

.ga-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ga-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ======================
   ADVISORS
====================== */

.advisors-consultants {
  padding: 120px 0;
  background: #f7f7f6;
}

.ac-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ac-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* ======================
   CTA
====================== */

.primary-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: #ffffff;
  background: url("../images/servadra_cta.png") center center / cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 12px;
  border-radius: 3px;
  background: #ffffff;
  color: #000000;
}

/* ======================
   FOOTER
====================== */

.site-footer {
  padding: 60px 0;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-grid h4 {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-grid a {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.7;
}

/* ======================
   MOBILE
====================== */

@media (max-width: 900px) {

  .container { padding: 0 20px; }

  .nav { display: none; }

  .op-problem-wrap,
  .ga-wrap,
  .ac-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-roles {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-full h1 { font-size: 22px; }

}

/*
====================================================
Patch: Controlled Solution Layout Fix
Version: 4.0.1
Last Updated: 2026-02-20T00:55:00Z
====================================================
*/

/* Ensure section starts clean after previous grid sections */
.controlled-solution {
  clear: both;
}

/* Header block */
.cs-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.cs-header h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 500;
}

.cs-header p {
  margin: 0;
  font-size: 15px;
  color: rgba(26,26,26,0.75);
}

/* Visual image block (optional, but you have it in HTML) */
.cs-visual {
  max-width: 980px;
  margin: 0 auto 55px auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.cs-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.04) saturate(0.92);
}

/* Cards grid */
.cs-roles {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.cs-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cs-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.cs-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(26,26,26,0.9);
}

/* Mobile */
@media (max-width: 900px) {
  .cs-header { margin-bottom: 35px; }
  .cs-visual { margin-bottom: 35px; }
  .cs-roles { grid-template-columns: 1fr; gap: 22px; }
}

/*
====================================================
Structure Hero
Version: 1.0.0
Last Updated: 2026-02-20T01:45:00Z
====================================================
*/

.structure-hero {
  height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;

  background: url("../images/servadra_structure_hero.png")
              center center / cover no-repeat;
}

.structure-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.structure-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.structure-hero h1 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.structure-hero-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.85;
}

.structure-hero-text p {
  margin: 6px 0;
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .structure-hero {
    height: 65vh;
  }

  .structure-hero h1 {
    font-size: 26px;
  }

  .structure-hero-text p {
    font-size: 14px;
  }
}

/*
====================================================
Structure – Meridian Section
Version: 1.0.0
Last Updated: 2026-02-20T02:20:00Z
====================================================
*/

.structure-meridian {
  padding: 120px 0;
  background: #ffffff;
}

.meridian-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.meridian-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.meridian-content h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.meridian-tagline {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
}

.meridian-content p {
  font-size: 15px;
  margin: 10px 0;
}

.meridian-list {
  margin: 18px 0 18px 18px;
  padding: 0;
}

.meridian-list li {
  margin: 6px 0;
  font-size: 14px;
}

.meridian-closure {
  margin-top: 20px;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px) {

  .meridian-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Structure – Value Scout Section
Version: 1.0.0
Last Updated: 2026-02-20T03:05:00Z
====================================================
*/

.structure-value-scout {
  padding: 120px 0;
  background: #f7f7f6; /* Slight contrast from Meridian */
}

.value-scout-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.value-scout-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.value-scout-content h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.value-scout-tagline {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
}

.value-scout-content p {
  font-size: 15px;
  margin: 10px 0;
}

.value-scout-list {
  margin: 18px 0 18px 18px;
  padding: 0;
}

.value-scout-list li {
  margin: 6px 0;
  font-size: 14px;
}

.value-scout-closure {
  margin-top: 20px;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px) {

  .value-scout-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Structure – Steward Section
Version: 1.0.0
Last Updated: 2026-02-20T03:25:00Z
====================================================
*/

.structure-steward {
  padding: 120px 0;
  background: #ffffff;
}

.steward-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.steward-content h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.steward-tagline {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
}

.steward-content p {
  font-size: 15px;
  margin: 10px 0;
}

.steward-list {
  margin: 18px 0 18px 18px;
  padding: 0;
}

.steward-list li {
  margin: 6px 0;
  font-size: 14px;
}

.steward-closure {
  margin-top: 20px;
  font-weight: 500;
}

.steward-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* Mobile */

@media (max-width: 900px) {

  .steward-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/* ====================================
   FLOW FADE ANIMATION FIX
   Version: 4.0.2
   Safe additive patch
==================================== */

@keyframes sdFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================
   4) FROM ENQUIRY TO AFTER-SALES
   Clean Stacked Layout
   Version: 1.1.0
====================== */

.flow-section{
  padding: 120px 0;
  background: #ffffff;
}

.flow-wrap{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* TEXT BLOCK */
.flow-content{
  max-width: 780px;
}

.flow-content h2{
  margin: 0 0 14px 0;
  font-size: 24px;
  font-weight: 500;
}

.flow-lead{
  margin: 0 0 18px 0;
  font-size: 15px;
  color: rgba(26,26,26,0.78);
}

.flow-lines{
  margin-top: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(0,0,0,0.10);
}

.flow-lines p{
  margin: 10px 0;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
}

.flow-guard{
  margin-top: 22px;
}

.flow-guard p{
  margin: 6px 0;
  font-size: 14px;
  color: rgba(26,26,26,0.92);
}

/* IMAGE ROW */
.flow-media{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.flow-shot{
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
  position: relative;
}

.flow-shot img{
  width: 100%;
  display: block;
  height: auto;
  filter: contrast(1.04) saturate(0.92);
}

/* Mobile */
@media (max-width: 900px){

  .flow-section{
    padding: 80px 0;
  }

  .flow-media{
    grid-template-columns: 1fr;
  }

  .flow-content h2{
    font-size: 20px;
  }

}

/*
====================================================
Structure – Control, Boundaries & Escalation
Version: 1.1.0
Safe additive layout
====================================================
*/

.structure-control{
  padding: 120px 0;
  background: #f7f7f6;
}

.control-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.control-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

.control-content h2{
  margin: 0 0 14px 0;
  font-size: 24px;
  font-weight: 500;
}

.control-content p{
  font-size: 15px;
  margin: 10px 0;
}

.control-list{
  margin: 18px 0 18px 18px;
  padding: 0;
}

.control-list li{
  margin: 6px 0;
  font-size: 14px;
}

.control-archon{
  margin-top: 18px;
  font-weight: 500;
}

.control-closure{
  margin-top: 14px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px){

  .control-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Structure – Operational Stability
Version: 1.0.0
Safe additive layout
====================================================
*/

.structure-stability{
  padding: 120px 0;
  background: #ffffff;
}

.stability-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.stability-content h2{
  margin: 0 0 14px 0;
  font-size: 24px;
  font-weight: 500;
}

.stability-content p{
  font-size: 15px;
  margin: 10px 0;
}

.stability-list{
  margin: 18px 0 0 18px;
  padding: 0;
}

.stability-list li{
  margin: 6px 0;
  font-size: 14px;
}

.stability-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

/* Mobile */
@media (max-width: 900px){

  .stability-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Structure – Why This Structure Matters
Version: 1.0.0
Safe additive layout
====================================================
*/

.structure-why{
  padding: 120px 0;
  background: #f7f7f6;
}

.why-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

.why-content h2{
  margin: 0 0 14px 0;
  font-size: 24px;
  font-weight: 500;
}

.why-content p{
  font-size: 15px;
  margin: 10px 0;
}

.why-list{
  margin: 18px 0 18px 18px;
  padding: 0;
}

.why-list li{
  margin: 6px 0;
  font-size: 14px;
}

.why-conclusion{
  margin-top: 20px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px){

  .why-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Structure – Further Information (No Image)
Version: 1.0.0
Last Updated: 2026-02-20T04:10:00Z
====================================================
*/

.structure-further{
  padding: 110px 0;
  background: #ffffff;
}

.structure-further h2{
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 18px 0;
  letter-spacing: -0.2px;
  text-align: center;
}

.structure-further-copy{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.structure-further-copy p{
  margin: 10px 0;
  font-size: 15px;
  color: rgba(26,26,26,0.88);
}

.structure-further-link{
  margin-top: 18px;
  color: rgba(26,26,26,0.78);
}

.structure-further-link a{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.95;
}

.structure-further-link a:hover{
  opacity: 1;
}

@media (max-width: 900px){
  .structure-further{
    padding: 80px 0;
  }

  .structure-further h2{
    font-size: 20px;
  }

  .structure-further-copy p{
    font-size: 14px;
  }
}

/*
====================================================
Commercials Hero
Version: 1.0.0
====================================================
*/

.commercials-hero{
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;

  background: url("../images/servadra_commercials_hero.png")
              center center / cover no-repeat;
}

.commercials-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.commercials-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.commercials-hero h1{
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 12px 0;
}

.commercials-tagline{
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.commercials-hero-copy p{
  margin: 8px 0;
  font-size: 15px;
  opacity: 0.92;
}

.commercials-emphasis{
  margin-top: 22px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px){

  .commercials-hero{
    height: 65vh;
  }

  .commercials-hero h1{
    font-size: 24px;
  }

  .commercials-tagline{
    font-size: 14px;
  }

  .commercials-hero-copy p{
    font-size: 14px;
  }

}

/*
====================================================
Commercial – Structured Service Delivery
Version: 1.0.0
====================================================
*/

.commercial-structured{
  padding: 120px 0 0 0;
  background: #ffffff;
}

.structured-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.structured-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

.structured-content h2{
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 500;
}

.structured-tagline{
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.structured-content p{
  font-size: 15px;
  margin: 10px 0;
}

.structured-list{
  margin: 18px 0 18px 18px;
}

.structured-list li{
  margin: 6px 0;
  font-size: 14px;
}

.structured-closure{
  margin-top: 18px;
  font-weight: 500;
}

/* Separator before pricing */
.structured-separator{
  margin-top: 110px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
}

/* Mobile */
@media (max-width: 900px){

  .structured-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .structured-separator{
    margin-top: 80px;
  }

}

/*
====================================================
Commercial – Monitoring & Behaviour Control
Version: 1.0.0
====================================================
*/

.commercial-monitoring{
  padding: 120px 0;
  background: #f7f7f6;
}

.monitoring-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.monitoring-content h2{
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 500;
}

.monitoring-tagline{
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.monitoring-content p{
  font-size: 15px;
  margin: 10px 0;
}

.monitoring-list{
  margin: 18px 0 18px 18px;
}

.monitoring-list li{
  margin: 6px 0;
  font-size: 14px;
}

.monitoring-closure{
  margin-top: 18px;
  font-weight: 500;
}

.monitoring-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

/* Mobile */
@media (max-width: 900px){

  .monitoring-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Commercial – Reliable Escalation
Version: 1.0.0
====================================================
*/

.commercial-escalation{
  padding: 120px 0;
  background: #ffffff;
}

.escalation-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.escalation-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

.escalation-content h2{
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 500;
}

.escalation-tagline{
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.escalation-content p{
  font-size: 15px;
  margin: 10px 0;
}

.escalation-list{
  margin: 18px 0 18px 18px;
}

.escalation-list li{
  margin: 6px 0;
  font-size: 14px;
}

.escalation-archon{
  margin-top: 18px;
  font-weight: 500;
}

.escalation-closure{
  margin-top: 18px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px){

  .escalation-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Commercial – Packages (Vertical Stack)
Version: 1.0.0
====================================================
*/

.commercial-packages{
  padding: 120px 0;
  background: #f7f7f6;
}

.packages-intro{
  text-align: center;
  margin-bottom: 60px;
}

.packages-intro h2{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.packages-tagline{
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* STACK */

.package-stack{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.package-block{
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.package-header{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.package-header h3{
  margin: 0;
  font-size: 18px;
}

.package-price{
  font-size: 15px;
  font-weight: 600;
}

.package-context{
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 12px;
}

.package-block p{
  font-size: 14px;
  margin: 8px 0;
}

.package-note{
  margin-top: 12px;
  font-weight: 500;
}

.package-footnote{
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

.package-footnote{
  max-width: 680px;
  margin: 90px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.12);
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

/* Mobile */

@media (max-width: 900px){

  .package-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}

/*
====================================================
Commercial – Deployment & Onboarding
Version: 2.0.0 (Banner Layout)
====================================================
*/

.commercial-deployment{
  background:#ffffff;
}

/* Banner */

.deployment-banner img{
  width:100%;
  display:block;
  height:420px;
  object-fit:cover;
}

/* Middle Content */

.deployment-content{
  padding:100px 0 80px 0;
  text-align:center;
}

.deployment-content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:12px;
}

.deployment-tagline{
  font-size:15px;
  opacity:0.8;
  margin-bottom:30px;
}

.deployment-content p{
  font-size:15px;
  margin:12px 0;
  line-height:1.7;
}

.deployment-list{
  margin:30px auto;
  max-width:680px;
  text-align:left;
}

.deployment-list p{
  margin:8px 0;
  font-size:14px;
}

.deployment-closure{
  margin-top:30px;
  font-weight:600;
}

/* Pricing Block */

.deployment-pricing{
  padding:90px 0 120px 0;
  background:#f7f7f6;
  text-align:center;
}

.deployment-pricing h3{
  font-size:18px;
  margin-bottom:40px;
}

.deployment-price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  margin-bottom:40px;
}

.deployment-tier{
  background:#ffffff;
  padding:28px;
  border-radius:4px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.deployment-tier h4{
  margin:0 0 8px 0;
  font-size:15px;
  font-weight:600;
}

.deployment-tier .price{
  font-weight:600;
  margin-bottom:10px;
}

.deployment-tier p{
  font-size:13px;
  margin:0;
}

.deployment-footnote{
  max-width:760px;
  margin:0 auto;
  font-size:13px;
  opacity:0.8;
}

/* Mobile */

@media (max-width:900px){

  .deployment-banner img{
    height:260px;
  }

  .deployment-price-grid{
    grid-template-columns:1fr;
  }

}

/*
====================================================
Commercial – The First 30 Days (Timeline)
Version: 1.0.0
====================================================
*/

.commercial-first30{
  padding: 120px 0;
  background: #ffffff;
}

.first30-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.first30-content h2{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.first30-tagline{
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.85;
}

.first30-week{
  margin-bottom: 26px;
}

.first30-week h3{
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
}

.first30-week p{
  margin: 4px 0;
  font-size: 14px;
}

.first30-closure{
  margin-top: 30px;
  font-weight: 600;
  font-size: 15px;
}

.first30-media img{
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  filter: contrast(1.04) saturate(0.92);
}

/* Mobile */

@media (max-width: 900px){

  .first30-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/*
====================================================
Commercial – Risk Perspective
Version: 1.0.0
====================================================
*/

.commercial-risk{
  padding:120px 0;
  background:#ffffff;
}

.risk-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.risk-media img{
  width:100%;
  border-radius:6px;
  box-shadow:0 20px 55px rgba(0,0,0,0.18);
  filter:contrast(1.04) saturate(0.92);
}

.risk-content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:10px;
}

.risk-tagline{
  font-size:15px;
  margin-bottom:20px;
  opacity:0.85;
}

.risk-content p{
  font-size:15px;
  margin:10px 0;
  line-height:1.7;
}

.risk-list{
  margin:20px 0 20px 0;
}

.risk-list p{
  margin:6px 0;
  font-size:14px;
}

.risk-closure{
  margin-top:20px;
  font-weight:600;
}

/* Mobile */

@media (max-width:900px){

  .risk-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

}

/*
====================================================
Commercial – Procurement Perspective
Version: 1.0.0
====================================================
*/

.commercial-procurement{
  padding:120px 0;
  background:#f7f7f6;
}

.procurement-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.procurement-content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:10px;
}

.procurement-tagline{
  font-size:15px;
  margin-bottom:20px;
  opacity:0.85;
}

.procurement-content p{
  font-size:15px;
  margin:10px 0;
  line-height:1.7;
}

.procurement-list{
  margin:20px 0;
}

.procurement-list p{
  margin:6px 0;
  font-size:14px;
}

.procurement-closure{
  margin-top:20px;
  font-weight:600;
}

.procurement-media img{
  width:100%;
  border-radius:6px;
  box-shadow:0 20px 55px rgba(0,0,0,0.18);
  filter:contrast(1.04) saturate(0.92);
}

/* Mobile */

@media (max-width:900px){

  .procurement-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

}

