/*
====================================================
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);
  z-index: 10000;  
}

.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;
  }

}

.nav-bar {
  position: relative;
  z-index: 9999;
}

.dropdown-menu {
  z-index: 10000;
}

/*
====================================================
Partner Hero Section
ID: #partner-hero
Version: 1.0.0
====================================================
*/

.partner_hero{
  position:relative;
  height:85vh;
  min-height:600px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#ffffff;
}

.partner_hero_bg{
  position:absolute;
  inset:0;
}

.partner_hero_bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.partner_hero_overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.partner_hero_inner{
  position:relative;
  z-index:2;
  max-width:820px;
}

.partner_hero h1{
  font-size:38px;
  font-weight:500;
  line-height:1.2;
  margin:0 0 18px 0;
}

.partner_hero_lead{
  font-size:16px;
  margin-bottom:20px;
  opacity:0.95;
}

.partner_hero_lines p{
  margin:6px 0;
  font-size:14px;
  opacity:0.9;
}

.partner_hero_cta{
  margin-top:26px;
}

/* Mobile */

@media (max-width:900px){

  .partner_hero{
    height:75vh;
    min-height:520px;
  }

  .partner_hero h1{
    font-size:26px;
  }

}

/*
====================================================
Partner Section – Operational Reality Advisors Recognise
ID: #partner-operational-reality
Version: 1.0.0
====================================================
*/

.partner_section{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_section_content h2{
  font-size:24px;
  font-weight:500;
  margin:0 0 18px 0;
}

.partner_section_content p{
  font-size:15px;
  margin:14px 0;
  line-height:1.7;
}

.partner_section_lines{
  margin:18px 0 18px 0;
  padding-left:14px;
  border-left:1px solid rgba(0,0,0,0.10);
}

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

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

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

/* Mobile */
@media (max-width:900px){
  .partner_section{ padding:80px 0; }

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

/*
====================================================
Partner – Trust Framework
ID: #partner-trust-framework
Version: 1.1.0
====================================================
*/

.partner_trust{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_trust_media{
  display:flex;
  justify-content:center;
}

.partner_trust_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.partner_trust_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.partner_trust_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Mobile */

@media (max-width:900px){

  .partner_trust{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Governance Architecture
ID: #governance-architecture
Version: 1.0.0
====================================================
*/

.partner_governance_architecture{
  padding:120px 0;
  background:#f7f7f6;
}

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

.governance_arch_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.governance_arch_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

.governance_list{
  margin:10px 0 20px 0;
}

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

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

.governance_note{
  margin-top:12px;
  font-size:13px;
  opacity:0.75;
}

.governance_arch_media{
  display:flex;
  justify-content:center;
}

.governance_arch_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_governance_architecture{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Hybrid MSP Clarification
ID: #hybrid-msp-clarification
Version: 1.0.0
====================================================
*/

.partner_hybrid_msp{
  padding:120px 0;
  background:#ffffff;
}

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

.hybrid_msp_media{
  display:flex;
  justify-content:center;
}

.hybrid_msp_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.hybrid_msp_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.hybrid_msp_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

.hybrid_msp_list{
  margin:12px 0 20px 0;
}

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

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

/* Mobile */

@media (max-width:900px){

  .partner_hybrid_msp{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Professional Referral Model
ID: #professional-referral-model
Version: 1.1.0 (Top Text Layout)
====================================================
*/

.partner_referral_model{
  padding:120px 0;
  background:#f7f7f6;
}

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

.referral_model_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.referral_model_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Image grid */

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

.referral_model_media img{
  width:100%;
  border-radius:6px;
  box-shadow:0 16px 40px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_referral_model{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Private Commercial Alignment
ID: #partner-private-alignment
Standard Layout Version
====================================================
*/

.partner_private_alignment{
  padding:140px 0;
  background:#ffffff;
}

.private_alignment_wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT TEXT */

.private_alignment_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:20px;
}

.private_alignment_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.alignment_list{
  margin:15px 0 20px 0;
}

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

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

/* RIGHT IMAGE */

.private_alignment_media{
  display:flex;
  justify-content:center;
}

.private_alignment_media img{
  width:100%;
  max-width:520px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* MOBILE */

@media (max-width:900px){

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

  .private_alignment_media img{
    max-width:100%;
  }

}

/*
====================================================
Partner – Request Private Discussion
ID: #request-private-discussion
Version: 2.0.0 (Footer Safe Version)
====================================================
*/

.partner_request_discussion{
  padding:140px 0 160px 0;   /* 底部增加空間，避免貼 footer */
  background:#f7f7f6;
  text-align:center;
}

.request_discussion_content{
  margin-bottom:60px;
}

.request_discussion_content h2{
  font-size:26px;
  font-weight:500;
  margin-bottom:20px;
}

.request_discussion_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.request_discussion_media{
  display:flex;
  justify-content:center;
  margin-bottom:50px;
}

.request_discussion_media img{
  width:100%;
  max-width:640px;      /* 放大少少，但仍然受控 */
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* CTA */

.request_discussion_cta{
  margin-top:20px;
}

.request_discussion_cta .btn{
  padding:14px 28px;
  font-size:14px;
  letter-spacing:0.5px;
}

/* Mobile */

@media (max-width:900px){

  .partner_request_discussion{
    padding:100px 0 120px 0;
  }

  .request_discussion_media img{
    max-width:90%;
  }

}

/*
====================================================
Request Demo Page (Website Layer)
Version: 1.0.0
Last Updated: 2026-02-22
Additive CSS only (no overrides to locked header/nav)
====================================================
*/

.demo_hero{
  padding: 110px 0 60px 0;
  background: #ffffff;
}

.demo_hero h1{
  margin: 0 0 14px 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.demo_lead{
  margin: 0;
  font-size: 15px;
  color: rgba(26,26,26,0.78);
  line-height: 1.7;
}

.demo_form_section{
  padding: 40px 0 120px 0;
  background: #ffffff;
}

.demo_form{
  margin-top: 10px;
}

.demo_form h2{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.section_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.section_hint.subtle{
  margin-top: 8px;
}

.demo_form hr{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 28px 0;
}

.form_group{
  margin: 14px 0;
}

.form_group label{
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(26,26,26,0.90);
}

.form_group input[type="text"],
.form_group input[type="email"],
.form_group textarea,
.form_group select{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 4px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
}

.form_group textarea{
  resize: vertical;
}

.form_group small{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

.radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding: 6px 0;
}

.radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.4;
}

.radio_group input{
  margin-top: 2px;
}

.checkbox_group label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
}

.form_submit{
  margin-top: 18px;
}

.form_footer_note{
  margin: 16px 0 0 0;
  font-size: 12px;
  color: rgba(26,26,26,0.62);
  line-height: 1.6;
}

/* Optional: constrain form width if you want tighter than .narrow */
.container.narrow{
  max-width: 820px;
}

/* Mobile */
@media (max-width: 900px){
  .demo_hero{
    padding: 90px 0 45px 0;
  }

  .demo_hero h1{
    font-size: 24px;
  }

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

/*
====================================================
Request Demo – Hero Banner
Version: 1.0.0
====================================================
*/

.demo_hero_banner{
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.demo_hero_bg{
  position: absolute;
  inset: 0;
}

.demo_hero_bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo_hero_overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

.demo_hero_inner{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.demo_hero_inner h1{
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.demo_hero_inner p{
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0;
  opacity: 0.95;
}

.hero_sub{
  font-size: 16px;
  margin-bottom: 18px;
}

.hero_closure{
  margin-top: 16px;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px){

  .demo_hero_banner{
    height: 60vh;
    min-height: 460px;
  }

  .demo_hero_inner h1{
    font-size: 24px;
  }

}

/*
====================================================
Cookie Consent Banner
Website Layer Only
====================================================
*/

.cookie_banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #ffffff;
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}

.cookie_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie_inner p{
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.cookie_inner a{
  color: #ffffff;
  text-decoration: underline;
}

.cookie_inner .btn.small{
  padding: 8px 18px;
  font-size: 12px;
  background: #ffffff;
  color: #000;
  border: none;
  cursor: pointer;
}

@media (max-width:900px){
  .cookie_inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

.form_legal_note{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(26,26,26,0.65);
  line-height: 1.6;
}

.form_legal_note a{
  text-decoration: underline;
}


/* =========================================
   NAV DROPDOWN STABILITY PATCH
   Version: 1.0.0
   Last Updated: 2026-02-23
   Scope: header dropdown only (additive)
========================================= */

.site-header,
.nav-bar,
.header-inner {
  overflow: visible;
}

.dropdown-menu {
  top: calc(100% + 10px);
}

.nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
}

/*
====================================================
Operational Focus – Website Layer
Version: 1.0.0
Additive only – matches Request Demo styling
====================================================
*/

.operational_focus{
  margin: 26px 0;
}

.operational_focus h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.operational_focus_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.operational_focus .radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.operational_focus .radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.5;
}

.operational_focus .radio_group input{
  margin-top: 3px;
}

.operational_focus small{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

/* Mobile */

@media (max-width: 900px){

  .operational_focus .radio_group{
    grid-template-columns: 1fr;
  }

}

/*
====================================================
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);
  z-index: 10000;  
}

.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;
  }

}

.nav-bar {
  position: relative;
  z-index: 9999;
}

.dropdown-menu {
  z-index: 10000;
}

/*
====================================================
Partner Hero Section
ID: #partner-hero
Version: 1.0.0
====================================================
*/

.partner_hero{
  position:relative;
  height:85vh;
  min-height:600px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#ffffff;
}

.partner_hero_bg{
  position:absolute;
  inset:0;
}

.partner_hero_bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.partner_hero_overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.partner_hero_inner{
  position:relative;
  z-index:2;
  max-width:820px;
}

.partner_hero h1{
  font-size:38px;
  font-weight:500;
  line-height:1.2;
  margin:0 0 18px 0;
}

.partner_hero_lead{
  font-size:16px;
  margin-bottom:20px;
  opacity:0.95;
}

.partner_hero_lines p{
  margin:6px 0;
  font-size:14px;
  opacity:0.9;
}

.partner_hero_cta{
  margin-top:26px;
}

/* Mobile */

@media (max-width:900px){

  .partner_hero{
    height:75vh;
    min-height:520px;
  }

  .partner_hero h1{
    font-size:26px;
  }

}

/*
====================================================
Partner Section – Operational Reality Advisors Recognise
ID: #partner-operational-reality
Version: 1.0.0
====================================================
*/

.partner_section{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_section_content h2{
  font-size:24px;
  font-weight:500;
  margin:0 0 18px 0;
}

.partner_section_content p{
  font-size:15px;
  margin:14px 0;
  line-height:1.7;
}

.partner_section_lines{
  margin:18px 0 18px 0;
  padding-left:14px;
  border-left:1px solid rgba(0,0,0,0.10);
}

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

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

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

/* Mobile */
@media (max-width:900px){
  .partner_section{ padding:80px 0; }

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

/*
====================================================
Partner – Trust Framework
ID: #partner-trust-framework
Version: 1.1.0
====================================================
*/

.partner_trust{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_trust_media{
  display:flex;
  justify-content:center;
}

.partner_trust_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.partner_trust_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.partner_trust_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Mobile */

@media (max-width:900px){

  .partner_trust{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Governance Architecture
ID: #governance-architecture
Version: 1.0.0
====================================================
*/

.partner_governance_architecture{
  padding:120px 0;
  background:#f7f7f6;
}

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

.governance_arch_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.governance_arch_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

.governance_list{
  margin:10px 0 20px 0;
}

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

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

.governance_note{
  margin-top:12px;
  font-size:13px;
  opacity:0.75;
}

.governance_arch_media{
  display:flex;
  justify-content:center;
}

.governance_arch_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_governance_architecture{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Hybrid MSP Clarification
ID: #hybrid-msp-clarification
Version: 1.0.0
====================================================
*/

.partner_hybrid_msp{
  padding:120px 0;
  background:#ffffff;
}

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

.hybrid_msp_media{
  display:flex;
  justify-content:center;
}

.hybrid_msp_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.hybrid_msp_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.hybrid_msp_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

.hybrid_msp_list{
  margin:12px 0 20px 0;
}

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

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

/* Mobile */

@media (max-width:900px){

  .partner_hybrid_msp{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Professional Referral Model
ID: #professional-referral-model
Version: 1.1.0 (Top Text Layout)
====================================================
*/

.partner_referral_model{
  padding:120px 0;
  background:#f7f7f6;
}

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

.referral_model_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.referral_model_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Image grid */

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

.referral_model_media img{
  width:100%;
  border-radius:6px;
  box-shadow:0 16px 40px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_referral_model{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Private Commercial Alignment
ID: #partner-private-alignment
Standard Layout Version
====================================================
*/

.partner_private_alignment{
  padding:140px 0;
  background:#ffffff;
}

.private_alignment_wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT TEXT */

.private_alignment_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:20px;
}

.private_alignment_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.alignment_list{
  margin:15px 0 20px 0;
}

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

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

/* RIGHT IMAGE */

.private_alignment_media{
  display:flex;
  justify-content:center;
}

.private_alignment_media img{
  width:100%;
  max-width:520px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* MOBILE */

@media (max-width:900px){

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

  .private_alignment_media img{
    max-width:100%;
  }

}

/*
====================================================
Partner – Request Private Discussion
ID: #request-private-discussion
Version: 2.0.0 (Footer Safe Version)
====================================================
*/

.partner_request_discussion{
  padding:140px 0 160px 0;   /* 底部增加空間，避免貼 footer */
  background:#f7f7f6;
  text-align:center;
}

.request_discussion_content{
  margin-bottom:60px;
}

.request_discussion_content h2{
  font-size:26px;
  font-weight:500;
  margin-bottom:20px;
}

.request_discussion_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.request_discussion_media{
  display:flex;
  justify-content:center;
  margin-bottom:50px;
}

.request_discussion_media img{
  width:100%;
  max-width:640px;      /* 放大少少，但仍然受控 */
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* CTA */

.request_discussion_cta{
  margin-top:20px;
}

.request_discussion_cta .btn{
  padding:14px 28px;
  font-size:14px;
  letter-spacing:0.5px;
}

/* Mobile */

@media (max-width:900px){

  .partner_request_discussion{
    padding:100px 0 120px 0;
  }

  .request_discussion_media img{
    max-width:90%;
  }

}

/*
====================================================
Request Demo Page (Website Layer)
Version: 1.0.0
Last Updated: 2026-02-22
Additive CSS only (no overrides to locked header/nav)
====================================================
*/

.demo_hero{
  padding: 110px 0 60px 0;
  background: #ffffff;
}

.demo_hero h1{
  margin: 0 0 14px 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.demo_lead{
  margin: 0;
  font-size: 15px;
  color: rgba(26,26,26,0.78);
  line-height: 1.7;
}

.demo_form_section{
  padding: 40px 0 120px 0;
  background: #ffffff;
}

.demo_form{
  margin-top: 10px;
}

.demo_form h2{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.section_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.section_hint.subtle{
  margin-top: 8px;
}

.demo_form hr{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 28px 0;
}

.form_group{
  margin: 14px 0;
}

.form_group label{
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(26,26,26,0.90);
}

.form_group input[type="text"],
.form_group input[type="email"],
.form_group textarea,
.form_group select{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 4px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
}

.form_group textarea{
  resize: vertical;
}

.form_group small{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

.radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding: 6px 0;
}

.radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.4;
}

.radio_group input{
  margin-top: 2px;
}

.checkbox_group label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
}

.form_submit{
  margin-top: 18px;
}

.form_footer_note{
  margin: 16px 0 0 0;
  font-size: 12px;
  color: rgba(26,26,26,0.62);
  line-height: 1.6;
}

/* Optional: constrain form width if you want tighter than .narrow */
.container.narrow{
  max-width: 820px;
}

/* Mobile */
@media (max-width: 900px){
  .demo_hero{
    padding: 90px 0 45px 0;
  }

  .demo_hero h1{
    font-size: 24px;
  }

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

/*
====================================================
Request Demo – Hero Banner
Version: 1.0.0
====================================================
*/

.demo_hero_banner{
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.demo_hero_bg{
  position: absolute;
  inset: 0;
}

.demo_hero_bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo_hero_overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

.demo_hero_inner{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.demo_hero_inner h1{
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.demo_hero_inner p{
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0;
  opacity: 0.95;
}

.hero_sub{
  font-size: 16px;
  margin-bottom: 18px;
}

.hero_closure{
  margin-top: 16px;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px){

  .demo_hero_banner{
    height: 60vh;
    min-height: 460px;
  }

  .demo_hero_inner h1{
    font-size: 24px;
  }

}

/*
====================================================
Cookie Consent Banner
Website Layer Only
====================================================
*/

.cookie_banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #ffffff;
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}

.cookie_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie_inner p{
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.cookie_inner a{
  color: #ffffff;
  text-decoration: underline;
}

.cookie_inner .btn.small{
  padding: 8px 18px;
  font-size: 12px;
  background: #ffffff;
  color: #000;
  border: none;
  cursor: pointer;
}

@media (max-width:900px){
  .cookie_inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

.form_legal_note{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(26,26,26,0.65);
  line-height: 1.6;
}

.form_legal_note a{
  text-decoration: underline;
}


/* =========================================
   NAV DROPDOWN STABILITY PATCH
   Version: 1.0.0
   Last Updated: 2026-02-23
   Scope: header dropdown only (additive)
========================================= */

.site-header,
.nav-bar,
.header-inner {
  overflow: visible;
}

.dropdown-menu {
  top: calc(100% + 10px);
}

.nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
}

/*
====================================================
Operational Focus – Website Layer
Version: 1.0.0
Additive only – matches Request Demo styling
====================================================
*/

.operational_focus{
  margin: 26px 0;
}

.operational_focus h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.operational_focus_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.operational_focus .radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.operational_focus .radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.5;
}

.operational_focus .radio_group input{
  margin-top: 3px;
}

.operational_focus small{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

/* Mobile */

@media (max-width: 900px){

  .operational_focus .radio_group{
    grid-template-columns: 1fr;
  }

}
/*
====================================================
Thank You Page – Request Demo
Version: 1.0.0
Last Updated: 2026-02-23
Additive only
====================================================
*/

.thankyou_section {
  padding: 140px 0 160px 0;
  background: #ffffff;
}

.thankyou_inner {
  text-align: center;
  max-width: 620px;
}

.thankyou_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: #1a1a1a;
  opacity: 0.55;
}

.thankyou_inner h1 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.thankyou_sub {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.thankyou_inner p {
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0;
  color: rgba(26,26,26,0.80);
}

.thankyou_partner_note {
  margin: 20px auto 0 !important;
  max-width: 560px;
  padding: 16px 22px;
  background: #f5f5f3;
  border-left: 3px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  font-size: 14px !important;
  line-height: 1.85;
  text-align: left;
  color: rgba(26,26,26,0.88) !important;
}

.thankyou_partner_note .note-line {
  display: block;
}

.thankyou_partner_note .note-line + .note-line {
  margin-top: 4px;
}

.thankyou_response_note {
  margin-top: 24px !important;
  font-size: 14px !important;
}

.thankyou_actions {
  margin-top: 36px;
}

.thankyou_actions .btn.secondary {
  border: 1px solid rgba(0,0,0,0.20);
  color: #1a1a1a;
  padding: 11px 24px;
  font-size: 13px;
  border-radius: 3px;
}

.thankyou_actions .btn.secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

@media (max-width: 900px) {
  .thankyou_section {
    padding: 100px 0 120px 0;
  }

  .thankyou_inner h1 {
    font-size: 24px;
  }
}

/*
====================================================
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);
  z-index: 10000;  
}

.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;
  }

}

.nav-bar {
  position: relative;
  z-index: 9999;
}

.dropdown-menu {
  z-index: 10000;
}

/*
====================================================
Partner Hero Section
ID: #partner-hero
Version: 1.0.0
====================================================
*/

.partner_hero{
  position:relative;
  height:85vh;
  min-height:600px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#ffffff;
}

.partner_hero_bg{
  position:absolute;
  inset:0;
}

.partner_hero_bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.partner_hero_overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.partner_hero_inner{
  position:relative;
  z-index:2;
  max-width:820px;
}

.partner_hero h1{
  font-size:38px;
  font-weight:500;
  line-height:1.2;
  margin:0 0 18px 0;
}

.partner_hero_lead{
  font-size:16px;
  margin-bottom:20px;
  opacity:0.95;
}

.partner_hero_lines p{
  margin:6px 0;
  font-size:14px;
  opacity:0.9;
}

.partner_hero_cta{
  margin-top:26px;
}

/* Mobile */

@media (max-width:900px){

  .partner_hero{
    height:75vh;
    min-height:520px;
  }

  .partner_hero h1{
    font-size:26px;
  }

}

/*
====================================================
Partner Section – Operational Reality Advisors Recognise
ID: #partner-operational-reality
Version: 1.0.0
====================================================
*/

.partner_section{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_section_content h2{
  font-size:24px;
  font-weight:500;
  margin:0 0 18px 0;
}

.partner_section_content p{
  font-size:15px;
  margin:14px 0;
  line-height:1.7;
}

.partner_section_lines{
  margin:18px 0 18px 0;
  padding-left:14px;
  border-left:1px solid rgba(0,0,0,0.10);
}

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

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

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

/* Mobile */
@media (max-width:900px){
  .partner_section{ padding:80px 0; }

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

/*
====================================================
Partner – Trust Framework
ID: #partner-trust-framework
Version: 1.1.0
====================================================
*/

.partner_trust{
  padding:120px 0;
  background:#ffffff;
}

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

.partner_trust_media{
  display:flex;
  justify-content:center;
}

.partner_trust_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.partner_trust_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.partner_trust_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Mobile */

@media (max-width:900px){

  .partner_trust{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Governance Architecture
ID: #governance-architecture
Version: 1.0.0
====================================================
*/

.partner_governance_architecture{
  padding:120px 0;
  background:#f7f7f6;
}

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

.governance_arch_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.governance_arch_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

.governance_list{
  margin:10px 0 20px 0;
}

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

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

.governance_note{
  margin-top:12px;
  font-size:13px;
  opacity:0.75;
}

.governance_arch_media{
  display:flex;
  justify-content:center;
}

.governance_arch_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_governance_architecture{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Hybrid MSP Clarification
ID: #hybrid-msp-clarification
Version: 1.0.0
====================================================
*/

.partner_hybrid_msp{
  padding:120px 0;
  background:#ffffff;
}

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

.hybrid_msp_media{
  display:flex;
  justify-content:center;
}

.hybrid_msp_media img{
  width:100%;
  max-width:520px;
  border-radius:6px;
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
  display:block;
}

.hybrid_msp_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.hybrid_msp_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

.hybrid_msp_list{
  margin:12px 0 20px 0;
}

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

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

/* Mobile */

@media (max-width:900px){

  .partner_hybrid_msp{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Professional Referral Model
ID: #professional-referral-model
Version: 1.1.0 (Top Text Layout)
====================================================
*/

.partner_referral_model{
  padding:120px 0;
  background:#f7f7f6;
}

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

.referral_model_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:18px;
}

.referral_model_content p{
  font-size:15px;
  line-height:1.7;
  margin:14px 0;
}

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

/* Image grid */

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

.referral_model_media img{
  width:100%;
  border-radius:6px;
  box-shadow:0 16px 40px rgba(0,0,0,0.15);
  display:block;
}

/* Mobile */

@media (max-width:900px){

  .partner_referral_model{
    padding:80px 0;
  }

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

}

/*
====================================================
Partner – Private Commercial Alignment
ID: #partner-private-alignment
Standard Layout Version
====================================================
*/

.partner_private_alignment{
  padding:140px 0;
  background:#ffffff;
}

.private_alignment_wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT TEXT */

.private_alignment_content h2{
  font-size:24px;
  font-weight:500;
  margin-bottom:20px;
}

.private_alignment_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.alignment_list{
  margin:15px 0 20px 0;
}

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

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

/* RIGHT IMAGE */

.private_alignment_media{
  display:flex;
  justify-content:center;
}

.private_alignment_media img{
  width:100%;
  max-width:520px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* MOBILE */

@media (max-width:900px){

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

  .private_alignment_media img{
    max-width:100%;
  }

}

/*
====================================================
Partner – Request Private Discussion
ID: #request-private-discussion
Version: 2.0.0 (Footer Safe Version)
====================================================
*/

.partner_request_discussion{
  padding:140px 0 160px 0;   /* 底部增加空間，避免貼 footer */
  background:#f7f7f6;
  text-align:center;
}

.request_discussion_content{
  margin-bottom:60px;
}

.request_discussion_content h2{
  font-size:26px;
  font-weight:500;
  margin-bottom:20px;
}

.request_discussion_content p{
  font-size:15px;
  line-height:1.75;
  margin:14px 0;
}

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

.request_discussion_media{
  display:flex;
  justify-content:center;
  margin-bottom:50px;
}

.request_discussion_media img{
  width:100%;
  max-width:640px;      /* 放大少少，但仍然受控 */
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  display:block;
}

/* CTA */

.request_discussion_cta{
  margin-top:20px;
}

.request_discussion_cta .btn{
  padding:14px 28px;
  font-size:14px;
  letter-spacing:0.5px;
}

/* Mobile */

@media (max-width:900px){

  .partner_request_discussion{
    padding:100px 0 120px 0;
  }

  .request_discussion_media img{
    max-width:90%;
  }

}

/*
====================================================
Request Demo Page (Website Layer)
Version: 1.0.0
Last Updated: 2026-02-22
Additive CSS only (no overrides to locked header/nav)
====================================================
*/

.demo_hero{
  padding: 110px 0 60px 0;
  background: #ffffff;
}

.demo_hero h1{
  margin: 0 0 14px 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.demo_lead{
  margin: 0;
  font-size: 15px;
  color: rgba(26,26,26,0.78);
  line-height: 1.7;
}

.demo_form_section{
  padding: 40px 0 120px 0;
  background: #ffffff;
}

.demo_form{
  margin-top: 10px;
}

.demo_form h2{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.section_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.section_hint.subtle{
  margin-top: 8px;
}

.demo_form hr{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 28px 0;
}

.form_group{
  margin: 14px 0;
}

.form_group label{
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(26,26,26,0.90);
}

.form_group input[type="text"],
.form_group input[type="email"],
.form_group textarea,
.form_group select{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 4px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
}

.form_group textarea{
  resize: vertical;
}

.form_group small{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

.radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding: 6px 0;
}

.radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.4;
}

.radio_group input{
  margin-top: 2px;
}

.checkbox_group label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
}

.form_submit{
  margin-top: 18px;
}

.form_footer_note{
  margin: 16px 0 0 0;
  font-size: 12px;
  color: rgba(26,26,26,0.62);
  line-height: 1.6;
}

/* Optional: constrain form width if you want tighter than .narrow */
.container.narrow{
  max-width: 820px;
}

/* Mobile */
@media (max-width: 900px){
  .demo_hero{
    padding: 90px 0 45px 0;
  }

  .demo_hero h1{
    font-size: 24px;
  }

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

/*
====================================================
Request Demo – Hero Banner
Version: 1.0.0
====================================================
*/

.demo_hero_banner{
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.demo_hero_bg{
  position: absolute;
  inset: 0;
}

.demo_hero_bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo_hero_overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

.demo_hero_inner{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.demo_hero_inner h1{
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.demo_hero_inner p{
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0;
  opacity: 0.95;
}

.hero_sub{
  font-size: 16px;
  margin-bottom: 18px;
}

.hero_closure{
  margin-top: 16px;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px){

  .demo_hero_banner{
    height: 60vh;
    min-height: 460px;
  }

  .demo_hero_inner h1{
    font-size: 24px;
  }

}

/*
====================================================
Cookie Consent Banner
Website Layer Only
====================================================
*/

.cookie_banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #ffffff;
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}

.cookie_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie_inner p{
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.cookie_inner a{
  color: #ffffff;
  text-decoration: underline;
}

.cookie_inner .btn.small{
  padding: 8px 18px;
  font-size: 12px;
  background: #ffffff;
  color: #000;
  border: none;
  cursor: pointer;
}

@media (max-width:900px){
  .cookie_inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

.form_legal_note{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(26,26,26,0.65);
  line-height: 1.6;
}

.form_legal_note a{
  text-decoration: underline;
}


/* =========================================
   NAV DROPDOWN STABILITY PATCH
   Version: 1.0.0
   Last Updated: 2026-02-23
   Scope: header dropdown only (additive)
========================================= */

.site-header,
.nav-bar,
.header-inner {
  overflow: visible;
}

.dropdown-menu {
  top: calc(100% + 10px);
}

.nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
}

/*
====================================================
Operational Focus – Website Layer
Version: 1.0.0
Additive only – matches Request Demo styling
====================================================
*/

.operational_focus{
  margin: 26px 0;
}

.operational_focus h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.operational_focus_hint{
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(26,26,26,0.70);
  line-height: 1.6;
}

.operational_focus .radio_group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.operational_focus .radio_group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,26,0.88);
  line-height: 1.5;
}

.operational_focus .radio_group input{
  margin-top: 3px;
}

.operational_focus small{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(26,26,26,0.60);
}

/* Mobile */

@media (max-width: 900px){

  .operational_focus .radio_group{
    grid-template-columns: 1fr;
  }

}
/*
====================================================
Thank You Page – Request Demo
Version: 1.0.0
Last Updated: 2026-02-23
Additive only
====================================================
*/

.thankyou_section {
  padding: 140px 0 160px 0;
  background: #ffffff;
}

.thankyou_inner {
  text-align: center;
  max-width: 620px;
}

.thankyou_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: #1a1a1a;
  opacity: 0.55;
}

.thankyou_inner h1 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.thankyou_sub {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.thankyou_inner p {
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0;
  color: rgba(26,26,26,0.80);
}

.thankyou_partner_note {
  margin: 20px auto 0 !important;
  max-width: 560px;
  padding: 16px 22px;
  background: #f5f5f3;
  border-left: 3px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  font-size: 14px !important;
  line-height: 1.85;
  text-align: left;
  color: rgba(26,26,26,0.88) !important;
}

.thankyou_partner_note .note-line {
  display: block;
}

.thankyou_partner_note .note-line + .note-line {
  margin-top: 4px;
}

.thankyou_response_note {
  margin-top: 24px !important;
  font-size: 14px !important;
}

.thankyou_actions {
  margin-top: 36px;
}

.thankyou_actions .btn.secondary {
  border: 1px solid rgba(0,0,0,0.20);
  color: #1a1a1a;
  padding: 11px 24px;
  font-size: 13px;
  border-radius: 3px;
}

.thankyou_actions .btn.secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

@media (max-width: 900px) {
  .thankyou_section {
    padding: 100px 0 120px 0;
  }

  .thankyou_inner h1 {
    font-size: 24px;
  }
}

/*
====================================================
Header Enterprise Animation Patch
Version: 4.0.0
Last Updated: 2026-02-23
Additive only — no overrides to existing locked styles
====================================================
*/

/* ── Accent line at very top ── */

.header-accent-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180,160,120,0.5) 20%,
    rgba(200,185,150,0.9) 50%,
    rgba(180,160,120,0.5) 80%,
    transparent 100%
  );
  z-index: 1000;
  animation: accent-shimmer 4s ease-in-out infinite;
}

@keyframes accent-shimmer {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ── Header base adjustment for accent line ── */

.site-header {
  top: 2px;
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease, background 0.3s ease;
}

/* ── Scrolled state ── */

.header-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10) !important;
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Logo entrance animation ── */

.logo-animate {
  animation: logo-fadein 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-fadein {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Nav entrance animation (staggered) ── */

.nav-animate {
  animation: nav-fadein 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes nav-fadein {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Nav link hover underline slide ── */

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(26,26,26,0.5);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after {
  width: 100%;
}

/* ── Drop button hover ── */

.drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.drop-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(26,26,26,0.5);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.drop-btn:hover::after {
  width: 100%;
}

/* ── Chevron rotation ── */

.drop-chevron {
  display: flex;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.5;
}

.chevron-open {
  transform: rotate(180deg);
}

/* ── Dropdown menu animation ── */

.dropdown-menu {
  display: block !important;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06) !important;
  padding: 8px 0 10px 0 !important;
  overflow: hidden;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Dropdown accent bar (left) ── */

.dropdown-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(180,160,120,0.8) 0%,
    rgba(180,160,120,0.2) 100%
  );
  border-radius: 0 1px 1px 0;
}

.dropdown-menu {
  position: relative;
}

/* ── Dropdown items ── */

.dropdown-menu a {
  position: relative;
  padding: 9px 18px 9px 22px !important;
  font-size: 13px !important;
  color: rgba(26,26,26,0.85) !important;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
  display: block;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(180,160,120,0.08);
  transition: width 0.2s ease;
}

.dropdown-menu a:hover {
  color: rgba(26,26,26,1) !important;
  padding-left: 26px !important;
  background: rgba(0,0,0,0.025) !important;
}

/* ── CTA button shimmer effect ── */

.nav-cta-animate {
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.nav-cta-animate:hover {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #1a1a1a !important;
}

.cta-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: cta-shimmer-move 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shimmer-move {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* ── Mobile ── */

@media (max-width: 900px) {
  .header-accent-line {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .drop-chevron {
    display: none;
  }
}

/* Header Animation Fix v2 */
.dropdown-menu {
  display: none !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  transition: none !important;
}

.dropdown.active .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Dropdown position fix */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 10000 !important;
}
/* ====================================================
   Mobile Header Menu Toggle (Additive)
   Version: 1.0.0
   Last Updated: 2026-02-25
==================================================== */
.nav-toggle{
  display:none;
  width:40px;
  height:40px;
  border:1px solid #d9e1e8;
  background:#fff;
  border-radius:8px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  padding:0;
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  border-radius:2px;
}

@media (max-width: 900px) {
  .header-inner{
    position:relative;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .site-header .nav{
    display:none !important;
    position:absolute;
    top:70px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:10px;
    box-shadow:0 12px 24px rgba(0,0,0,0.12);
    padding:10px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    z-index:1002;
  }

  .site-header.nav-open .nav{
    display:flex !important;
  }

  .site-header .nav-link,
  .site-header .drop-btn{
    display:block;
    width:100%;
    text-align:left;
    padding:10px 12px;
    border-radius:8px;
  }

  .site-header .dropdown{
    width:100%;
  }

  .site-header .dropdown-menu{
    position:static;
    min-width:0;
    border:1px solid #e6e6e6;
    border-radius:8px;
    box-shadow:none;
    margin-top:6px;
    padding:6px 0;
  }
}
