/* ================================================================
   RUCK Compliance — Marketing Site
   style.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:         #0B1F45;
  --navy-mid:     #152D5C;
  --navy-light:   #1D3D75;
  --gold:         #B8882A;
  --gold-mid:     #C99736;
  --gold-light:   #DBA84C;
  --gold-pale:    #F5EDD8;
  --cream:        #F8F6F1;
  --off-white:    #F2EFE9;
  --white:        #FFFFFF;
  --text:         #1C2340;
  --text-mid:     #4B5563;
  --text-light:   #9CA3AF;
  --border:       #E5E2DA;
  --border-light: #EDEBE5;
  --success:      #166534;
  --success-bg:   #DCFCE7;
  --shadow-xs:    0 1px 4px rgba(11,31,69,.06);
  --shadow-sm:    0 2px 10px rgba(11,31,69,.08);
  --shadow-md:    0 8px 32px rgba(11,31,69,.12);
  --shadow-lg:    0 20px 60px rgba(11,31,69,.16);
  --shadow-xl:    0 30px 80px rgba(11,31,69,.22);
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 0; list-style: none; margin: 0; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-gold      { color: var(--gold) !important; }
.text-gold-light{ color: var(--gold-light) !important; }
.text-navy      { color: var(--navy) !important; }
.text-mid       { color: var(--text-mid) !important; }
.bg-navy        { background: var(--navy) !important; }
.bg-cream       { background: var(--cream) !important; }
.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.section-pad-lg { padding: 6.5rem 0; }

/* ── Section Labels ─────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
}

.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .2px;
  border-radius: var(--radius-sm);
  padding: .65rem 1.5rem;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}
.btn-gold:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,136,42,.35);
}

.btn-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,31,69,.25);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy) !important;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white) !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold) !important;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-lg { padding: .85rem 2.2rem; font-size: .95rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }

/* ── Reform Alert Bar ────────────────────────────────────────── */
.reform-alert-bar {
  background: var(--navy);
  color: var(--white);
  padding: .55rem 0;
  font-size: .8rem;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1001;
}

.reform-alert-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reform-alert-bar .code-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  padding: .1rem .55rem;
  border-radius: 3px;
  letter-spacing: .5px;
  margin: 0 .2rem;
  font-family: monospace;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.site-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s ease, background .3s;
}

.site-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Logo */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none !important;
  flex-shrink: 0;
}

.logo-shield {
  width: 40px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-ruck {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: -.4px;
  line-height: 1;
}

.logo-compliance {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Dollar superscript in stats */
.stat-dollar {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  margin-right: 1px;
}

.nav-link-site {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  padding: .4rem .9rem !important;
  border-radius: var(--radius-xs);
  transition: color .2s, background .2s;
}
.nav-link-site:hover { color: var(--navy) !important; background: var(--cream); }
.nav-link-site.active { color: var(--navy) !important; font-weight: 600; }

.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: .4rem .6rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3570 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold glow top-right */
.hero-section::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 50%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(184,136,42,.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(184,136,42,.18);
  border: 1px solid rgba(184,136,42,.38);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.hero-promo-strip {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .65rem 1.1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  max-width: 430px;
}

.hero-promo-strip .promo-code {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  padding: .15rem .55rem;
  border-radius: 4px;
  font-family: 'DM Mono', 'Courier New', monospace;
  letter-spacing: .5px;
  white-space: nowrap;
}

/* Portal Preview Mockup */
.hero-mockup {
  position: relative;
  z-index: 1;
}

.portal-mockup-wrap {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.portal-mockup-wrap:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mock-titlebar {
  background: #EDEDEC;
  padding: .55rem .9rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 1px solid #DDDBD5;
}
.mock-titlebar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-titlebar .dot:nth-child(1) { background: #FF5F57; }
.mock-titlebar .dot:nth-child(2) { background: #FEBC2E; }
.mock-titlebar .dot:nth-child(3) { background: #28C840; }
.mock-url-bar {
  flex: 1;
  background: var(--white);
  border-radius: 4px;
  margin-left: .5rem;
  padding: .2rem .6rem;
  font-size: .65rem;
  color: #888;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.mock-url-bar i { font-size: .7rem; color: #16a34a; }

.mock-navbar {
  background: var(--navy);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-navbar .brand {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.mock-navbar .brand i { color: var(--gold-light); }
.mock-navbar .nav-right { display: flex; gap: .4rem; }
.mock-navbar .nav-chip {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: .15rem .5rem;
  font-size: .6rem;
  color: rgba(255,255,255,.7);
  font-family: 'DM Sans', sans-serif;
}

.mock-entity-bar {
  background: #F0EEE9;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.mock-entity-bar .entity-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: .15rem;
}
.mock-entity-bar .entity-meta {
  display: flex;
  gap: .8rem;
  font-size: .6rem;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
}
.mock-entity-bar .entity-meta span { display: flex; align-items: center; gap: .2rem; }

.mock-body {
  padding: .9rem;
  background: #F8F6F1;
}

.mock-section-head {
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: .5rem;
}

.mock-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: .6rem .75rem;
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.mock-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}
.icon-navy { background: rgba(11,31,69,.1); color: var(--navy); }
.icon-gold { background: rgba(184,136,42,.15); color: var(--gold); }
.icon-green { background: rgba(22,101,52,.1); color: #166534; }
.icon-amber { background: rgba(217,119,6,.1); color: #b45309; }

.mock-card-text { flex: 1; }
.mock-card-label {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
}
.mock-card-sub {
  font-size: .57rem;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
}

.mock-badge {
  font-size: .55rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.badge-done    { background: #DCFCE7; color: #166534; }
.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-new     { background: #DBEAFE; color: #1E40AF; }
.badge-due     { background: #FEE2E2; color: #991B1B; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stat-item { text-align: center; padding: .5rem 1rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-num .accent { color: var(--navy); }
.stat-label { font-size: .8rem; color: var(--text-mid); font-weight: 500; }

/* ── REFORM SECTION ──────────────────────────────────────────── */
.reform-section { background: var(--white); }

.reform-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.reform-card:hover { transform: translateY(-3px); }

.reform-card::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 110px;
  height: 110px;
  background: rgba(184,136,42,.12);
  border-radius: 50%;
  pointer-events: none;
}

.reform-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(184,136,42,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.reform-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: .6rem; }
.reform-card p  { color: rgba(255,255,255,.7); font-size: .875rem; line-height: 1.7; margin: 0; }

/* ── COMPLEXITY SECTION ──────────────────────────────────────── */
.complexity-section { background: var(--cream); }

.ob-group { margin-bottom: 2.25rem; }

.ob-group-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ob-group-label i { color: var(--gold); font-size: .85rem; }

.obligation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .65rem;
}

.ob-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
  opacity: 0;
  transform: translateY(12px);
}

.ob-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease, border-color .2s, box-shadow .2s;
}

.ob-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-xs);
  transform: translateY(-1px);
}

.ob-icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

.complexity-verdict {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.complexity-verdict::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184,136,42,.2) 0%, transparent 70%);
}
.complexity-verdict h3 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: .75rem; }
.complexity-verdict p  { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; }

/* ── PORTAL FEATURES ─────────────────────────────────────────── */
.features-section { background: var(--white); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(11,31,69,.06), rgba(11,31,69,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.feature-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
}
.feature-card p {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.75;
}

/* ── SERVICES OVERVIEW ───────────────────────────────────────── */
.services-overview { background: var(--cream); }

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: all .3s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.svc-card-head {
  background: var(--navy);
  padding: 1.85rem;
  position: relative;
  overflow: hidden;
}
.svc-card-head::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(184,136,42,.14);
  border-radius: 50%;
}

.svc-icon {
  width: 46px; height: 46px;
  background: rgba(184,136,42,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: .9rem;
}

.svc-card-head h4 { color: var(--white); font-size: 1.1rem; margin-bottom: .2rem; }
.svc-card-head .svc-type {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.svc-card-body { padding: 1.75rem; }
.svc-card-body p { font-size: .875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }

.svc-list { margin: 0 0 1.5rem; }
.svc-list li {
  font-size: .83rem;
  color: var(--text-mid);
  padding: .38rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PORTAL PRICING HIGHLIGHT ────────────────────────────────── */
.portal-pricing-highlight {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.portal-pricing-highlight::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(184,136,42,.2) 0%, transparent 70%);
}
.portal-pricing-highlight::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(29,61,117,.6) 0%, transparent 70%);
}

.pph-inner { position: relative; z-index: 1; }

.pph-free-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,136,42,.22);
  border: 1px solid rgba(184,136,42,.42);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .95rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .5px;
}

.pph-title { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: .6rem; }
.pph-desc  { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }

.pph-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .3rem;
}
.pph-price sup { font-size: 1.3rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.pph-price-note { color: rgba(255,255,255,.5); font-size: .78rem; margin-bottom: 1.5rem; }

.pph-promo-wrap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .85rem 1.25rem;
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.pph-promo-wrap .promo-pill {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .77rem;
  padding: .18rem .6rem;
  border-radius: 4px;
  font-family: monospace;
  letter-spacing: .5px;
}

/* ── PRICING CARDS ───────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all .3s;
  position: relative;
}
.pricing-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(11,31,69,.06), rgba(11,31,69,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.pricing-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.pricing-from { font-size: .73rem; color: var(--text-light); font-weight: 500; margin-bottom: .4rem; }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .15rem;
}
.pricing-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .35rem; display: inline-block; }

.pricing-hr { height: 1px; background: var(--border); border: none; margin: 1.25rem 0; }

.pricing-feats { margin: 0 0 1.5rem; }
.pricing-feats li {
  font-size: .83rem;
  color: var(--text-mid);
  padding: .38rem 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  border-bottom: 1px solid var(--border-light);
}
.pricing-feats li:last-child { border-bottom: none; }
.pricing-feats li i { color: var(--gold); flex-shrink: 0; margin-top: 3px; font-size: .85rem; }

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-section { background: var(--cream); }

.about-pillar {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.about-pillar-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.about-pillar h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.about-pillar p { font-size: .875rem; color: var(--text-mid); margin: 0; line-height: 1.75; }

/* Values */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.value-card:hover { box-shadow: var(--shadow-md); }

.value-card .value-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.value-card blockquote {
  font-size: .83rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  margin: 0 0 .6rem;
  padding: 0;
  border: none;
}

.value-card cite {
  font-size: .75rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 600;
  display: block;
}

/* ── CDD PARTNER ─────────────────────────────────────────────── */
.cdd-section { background: var(--navy); }

.cdd-section .eyebrow { color: var(--gold-light); }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(184,136,42,.18);
  border: 1px solid rgba(184,136,42,.35);
  border-radius: var(--radius-sm);
  padding: .55rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.cdd-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cdd-feature i { color: var(--gold-light); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.cdd-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: background .25s;
}
.cdd-card:hover { background: rgba(255,255,255,.09); }

.cdd-card .cdd-card-icon {
  width: 44px; height: 44px;
  background: rgba(184,136,42,.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.cdd-card h5 { color: var(--white); font-size: .95rem; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: .4rem; }
.cdd-card p  { color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.7; margin: 0; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -30px;
  width: 250px; height: 250px;
  background: rgba(11,31,69,.08);
  border-radius: 50%;
}
.final-cta h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; position: relative; z-index: 1; }
.final-cta p  { color: rgba(11,31,69,.72); font-size: 1rem; max-width: 540px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.final-cta .cta-btns { position: relative; z-index: 1; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-section { background: var(--cream); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-side {
  background: var(--navy);
  padding: 3rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-side::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(184,136,42,.2) 0%, transparent 70%);
}
.contact-side h4 { color: var(--white); margin-bottom: .65rem; }
.contact-side > p { color: rgba(255,255,255,.7); font-size: .875rem; line-height: 1.75; margin-bottom: 2rem; }

.contact-info-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .875rem;
  color: rgba(255,255,255,.78);
  position: relative; z-index: 1;
}
.contact-info-row i { color: var(--gold-light); font-size: 1rem; }

.contact-form-side { padding: 2.75rem; }

.form-group-custom { margin-bottom: 1.25rem; }

.form-label-custom {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-control-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem .95rem;
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-control-custom::placeholder { color: var(--text-light); }
.form-control-custom:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,69,.07);
}
textarea.form-control-custom { resize: vertical; min-height: 110px; }

.form-select-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.form-alert {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-alert.success { background: var(--success-bg); color: var(--success); display: flex; align-items: center; gap: .5rem; }
.form-alert.error   { background: #FEE2E2; color: #991B1B; display: flex; align-items: center; gap: .5rem; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 40%; height: 140%;
  background: radial-gradient(ellipse, rgba(184,136,42,.12) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; position: relative; z-index: 1; }
.page-hero .lead { color: rgba(255,255,255,.72); font-size: .95rem; max-width: 580px; position: relative; z-index: 1; }
.page-hero nav[aria-label="breadcrumb"] { position: relative; z-index: 1; }
.page-hero .breadcrumb { background: none; padding: 0; margin-bottom: .85rem; }
.page-hero .breadcrumb-item a { color: var(--gold-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.28); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #111826;
  color: rgba(255,255,255,.62);
  padding: 3.5rem 0 2rem;
  font-size: .85rem;
}

.footer-logo .logo-ruck { color: var(--white); }
.footer-logo .logo-compliance { color: var(--gold); }

.footer-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  margin-top: .75rem;
  line-height: 1.75;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-nav { margin: 0; }
.footer-nav li { margin-bottom: .55rem; }
.footer-nav a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 1.75rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
}

.footer-disclaimer {
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  line-height: 1.7;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1rem;
}

/* ── ACCORDION (FAQ) ─────────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .65rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  padding: 1rem 1.25rem;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--navy); background: var(--cream); }
.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(13%) sepia(57%) saturate(700%) hue-rotate(200deg);
}
.faq-accordion .accordion-body {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--cream);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: .05s; }
.stagger-children > *:nth-child(2) { transition-delay: .12s; }
.stagger-children > *:nth-child(3) { transition-delay: .19s; }
.stagger-children > *:nth-child(4) { transition-delay: .26s; }
.stagger-children > *:nth-child(5) { transition-delay: .33s; }
.stagger-children > *:nth-child(6) { transition-delay: .40s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { padding: 4rem 0 3.5rem; }
  .portal-pricing-highlight { padding: 2.25rem; }
  .contact-side { padding: 2.25rem; }
  .contact-form-side { padding: 2rem; }
  .complexity-verdict { padding: 2.25rem; }
  .hero-mockup { margin-top: 3rem; }
}

@media (max-width: 767.98px) {
  .section-pad    { padding: 3.5rem 0; }
  .section-pad-lg { padding: 4.5rem 0; }
  .hero-title     { font-size: 2.1rem; }
  .obligation-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group  { flex-direction: column; align-items: flex-start; }
  .pph-price       { font-size: 2.6rem; }
  .stats-bar .stat-item { padding: .35rem .5rem; }
}

@media (max-width: 575.98px) {
  .obligation-grid { grid-template-columns: 1fr; }
  .hero-promo-strip { flex-wrap: wrap; }
  .contact-form-side { padding: 1.5rem; }
  .contact-side { padding: 1.75rem; }
}

/* ================================================================
   VIDEO EXPLAINER SECTION (index.php + services.php)
   ================================================================ */

/* ── Section background (index.php full section) ─────────────── */
.video-explainer-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal grid texture */
.video-explainer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Gold accent glow behind video */
.video-explainer-section::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(184,136,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Key points list ─────────────────────────────────────────── */
.video-key-points {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.vkp-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
}

.vkp-item .bi-check-circle-fill {
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Video player wrap ───────────────────────────────────────── */
.video-player-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(184, 136, 42, .25),
    0 24px 64px rgba(0, 0, 0, .45),
    0 0 60px rgba(184, 136, 42, .08);
  background: #000;
  z-index: 1;
}

.video-player-wrap--compact {
  border-radius: var(--radius-lg);
}

.portal-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy);
}

/* Caption bar below video */
.video-caption {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(11, 31, 69, .92);
  border-top: 1px solid rgba(184, 136, 42, .18);
  padding: .65rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .4px;
}

.video-caption .bi-play-circle-fill {
  color: var(--gold-light);
  font-size: .95rem;
}

/* ── Services page inline video block ────────────────────────── */
.services-video-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(184, 136, 42, .2);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.services-video-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  border-radius: inherit;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .video-explainer-section::after { display: none; }
  .services-video-block { padding: 1.75rem; }
}

@media (max-width: 767.98px) {
  .services-video-block { padding: 1.35rem; }
}